victorwesterlund.com/docs/assets/img/pattern.php
Victor Westerlund 52b8945086 Renamed public/ to docs/
Renamed the folder `public/` to make it usable with GH Pages only non-root directory.
2021-08-06 13:42:42 +02:00

8 lines
No EOL
127 B
PHP

<?php
$gif = imagecreatefromgif("./pattern.gif");
header("Content-Type: image/gif");
imagegif($gif);
imagedestroy($gif);