Hi Ed I have a similar probelm with resizing and cannot work it out. My phpinfo (ver 4.3) says jpeg support enabled and put php_gd.dll in the same directories as you.
My code is: $imagesrc = ImageCreateFromJpeg($image); $imagedst = ImageCreate($im_width,$im_height); ImageCopyResized($imagedst, $imagesrc, 0, 0, 0, 0, $im_width,$im_height,$width,$height); header("Content-type: image/jpeg"); ImageJpeg($imagedst, '', -1); ImageDestroy($imagesrc); ImageDestroy($imagedst); Any help on appreciated.. Pat "Ed" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I'm running PHP 4.3 and W2k with IIS 5.0. I have enabled php_gd and it does > show up when I do a phpinfo. The php_gd.dll is in the winnt/system32 > directory and it's in the extensions directory (I've also tried it in almost > every other directory too) and I get > this error message: > > Fatal error: Call to undefined function: imagecreate() in > C:\Inetpub\wwwroot\template\index.php on line 4 > > Here's the code: > <?php > > header("Content-type: image/png"); > $im = imagecreate(100, 20); > > $red = imagecolorallocate($im, 255, 0, 0); > $white = imagecolorallocate($im, 255, 255, 255); > > $ImageString($im, 3, 3, 3, "Home", $white); > imagepng($im); > > ImagegDestroy($im); > > ?> > Any help would be appreciated. > > > > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php