victorwesterlund.com/public/assets/img/pattern.php

8 lines
No EOL
127 B
PHP

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