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/Tuesday.jpg.php
2022-04-25 23:40:54 +02:00

16 lines
351 B
PHP

<?php
require_once "Schedule.php";
require_once "config.php";
//echo "<pre>";
$sched = new Schedule(Schedule::EveryWeekday("Tuesday", 2), $stations_berlin, $optional, $wanted, $darkmode);
$image = $sched->createImage();
header("Content-Type: image/jpg");
imagejpeg($image);
//imagejpeg($image, "test23.jpg");
//echo "\n\n<img src='test23.jpg'>";