7 lines
162 B
PHP
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);
|
|
?>
|