|
Posted by jshanman on 03/03/06 03:04
cman wrote:
> 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);
> ?>
Did you try the
while (@ob_end_clean());
as the first call in your document?
- JS
http://www.endeavorpub.com
Navigation:
[Reply to this message]
|