<snip>
Enable FULL error reporting.
I tried this with error_reporting(E_ALL); and ran the script in multiple browsers no errors reported.
Also ran phpinfo(); (as suggested by Jay Blanchard) which worked without problem. The settings under GD were all enabled for the common image types.
Anybody see any glaring errors in the following?
Here's the html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body bgcolor="#ffffff"> <img src="dynamic_tabs.php"> </body> </html>
And here's the php:
<?php header("Content-type: image/png"); $im = imagecreate(100, 50) or die("Cannot Initialize new GD image stream"); $back_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 233, 14, 91); imagestring($im, 1, 5, 5, "A Simple Text String", $text_color); imagepng($im); imagedestroy($im); ?>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php