This commit is contained in:
2021-09-28 13:27:39 +02:00
коміт 298f6e6759
10 змінених файлів з 585 додано та 0 видалено

10
Woche.jpg.php Normal file

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