dropoutuser
Programmer
Recently I've been trying to do some work with imaging on my php page. The problem I'm getting is my code displys gibberish in firefox and nothing at all in IE. Setup is
Windows XP SP 2
Apache 2 Triad
PHP 5
Any help you could give or suggestions for using something other than php gd would be appreciated.
Windows XP SP 2
Apache 2 Triad
PHP 5
Any help you could give or suggestions for using something other than php gd would be appreciated.
Code:
<?php
header ("Content-type: image/png");
$img_handle = ImageCreate (230, 20) or die ("Cannot Create image");
$back_color = ImageColorAllocate ($img_handle, 0, 10, 10);
$txt_color = ImageColorAllocate ($img_handle, 233, 114, 191);
ImageString ($img_handle, 31, 5, 5, "My first Program with GD", $txt_color);
ImagePng ($img_handle);
?>