|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-08-15 16:38 UTC] tollerson at alliancetechnologies dot net
[2001-08-15 17:19 UTC] sniper@php.net
[2001-08-15 17:26 UTC] tollerson at alliancetechnologies dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 10:00:02 2025 UTC |
(using IIS 5.0) I upgraded php 4.0.4 to 4.0.6. I had these lines in my code to resize images: $im2 = ImageCreate($twidth,$theight) or die("couldn't create image"); ImageCopyResized($im2,$im,0,0,0,0,$twidth,$theight,$width,$height); ImageJpeg($im2, $dir_root.$files[$i]); with the old 1.6 version of the gd dll, the resize worked fine, but the new version is saving these pictures in shades of blue and black and sometimes grey and black. Is this maybe an Indian issue? To test, I didn't touch the php version but simply replaced the new 2.0 gd dll with the old 1.6 gd dll and the pictures went back to full color when being resized. Please let me know when this dll is fixed so I can implement it, for now I'm leaving the old gd dll in my extensions folder.