mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
8 lines
No EOL
127 B
PHP
8 lines
No EOL
127 B
PHP
<?php
|
|
|
|
$gif = imagecreatefromgif("./pattern.gif");
|
|
|
|
header("Content-Type: image/gif");
|
|
|
|
imagegif($gif);
|
|
imagedestroy($gif); |