תראה את שאר הקוד.
עריכה:
ניסיתי משהו בשביל לבדוק והרקע הוא לבן...
PHP קוד:
<?php
header("content-type:image/png");
$im = imagecreate(100,30);
$RandSec = strtoupper(substr(md5(rand(1,9999)),0,6));
$bg = imagecolorallocate($im,255,255,255); // white
$textcolor = imagecolorallocate($im,0,0,0); // black
imagestring($im, 5,0,0, $RandSec,$textcolor);
imagepng($im);
?>