Hi, this is an e-mail I received for this problem. I hope it's usefull for you.
Good luck
Sergio
"
I had the same probleme, and I try different solution only one works :
use the the php_gd.dll from download.swwwing.com with the core php software from the same site (under /php4/core download php4ts.dll and phpts.exe or php4isapi.dll)
phpts.exe replace php.exe (for cgi interface)
php4isapi.dll replace php4isapi.dll (for isapi interface)
php4ts.dll replace php4ts.dll
the ts in phpts.exe is for Tread Safe compilation who is requiered by the gd_lib.dll
I dont try the isapi module but the cgi one work perfectly with the php_gd.dll
after installation (and reboot) try this simple php script who generate a simple green box.
<?php
Header("Content-type: image/jpeg");
$im= ImageCreate(220,210);
$vert = ImageColorAllocate($im, 0, 255, 00);
ImageJpeg($im);
ImageDestroy($im);
?>
I hop this help you in your project
Vinc.
"