|
Posted by cman on 03/03/06 01:09
i'm only running the following code in a file name 'test.php':
<?php
//random_number.php
$img_number = imagecreate(100,50);
$white = imagecolorallocate($img_number,255,255,255);
$black = imagecolorallocate($img_number,0,0,0);
$grey_shade = imagecolorallocate($img_number,204,204,204);
imagefill($img_number,0,0,$grey_shade);
ImageRectangle($img_number,5,5,94,44,$black);
ImageRectangle($img_number,0,0,99,49,$black);
header("Content-type: image/jpeg");
imagejpeg($img_number);
?>
[Back to original message]
|