This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
phpvsched/Woche2.jpg.php
2021-09-28 13:27:39 +02:00

10 lines
247 B
PHP

<?php
require_once "Schedule.php";
require_once "config.php";
$sched = new Schedule(Schedule::WholeWeek("+1 week"), $stations, $optional, $wanted, $darkmode);
$image = $sched->createImage();
header("Content-Type: image/jpg");
imagejpeg($image);