Running Apache 1.3.27 with PHP 4.3.3 on Mac OS X
10.2.8...
The following worked fine:
<?php
header ("Content-type: image/jpeg");
$im = imagecreate (50, 100);
$background_color = imagecolorallocate ($im, 255, 255,
255);
$text_color = imagecolorallocate ($im, 233, 14, 91);
imagestring ($im, 1, 5, 5, "A Simple Text String",
$text_color);
imagejpeg ($im );
imagedestroy ($im);
?>
Saved as .php
__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
_______________________________________________
web-development mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/web-development
Do not post admin requests to the list. They will be ignored.