This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql12d/bildgenerieren1.php
T

7 lines
162 B
PHP

<?php
$image = imagecreate(300, 150);
$bgc = imagecolorallocate($image, 243, 3, 43);
imagefill ($image,0,0,$bgc);
imagegif($image);
imagedestroy($image);
?>