php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11814 ImageCreate not backward compatible
Submitted: 2001-06-30 19:45 UTC Modified: 2001-07-01 06:53 UTC
From: steve at stevegodwin dot com Assigned:
Status: Closed Package: GD related
PHP Version: 4.0.6 OS: Win NT 4.0
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
1 + 2 = ?
Subscribe to this entry?

 
 [2001-06-30 19:45 UTC] steve at stevegodwin dot com
This script worked fine in 4.0.4, but produces a bad color-shift in 4.0.6:

$srcImage = ImageCreateFromJPEG( $srcImgName );
$dstImage = ImageCreate( $dstWidth, $dstHeight );
ImageCopyResized($dstImage, $srcImage, 0, 0, 0, 0,
   $dstWidth, $dstHeight, $srcWidth, $srcHeight);
ImageJPEG( $dstImage, $dstImgName );

Using the new 4.0.6 function ImageCreateTrueColor() instead of ImageCreate() on line 2 fixes the problem. 

I wanted to let you know about it in case the underlying changes in GD that caused this problem might cause other similar problems. 

It might be useful to return ImageCreate to its previous functionality and add an ImageCreatePalette to go with ImageCreateTrueColor. Just a thought. 

Thanks.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-01 06:52 UTC] wez@php.net
This might actually be a bug in GD 2.0; there are a number of bugs in palette based images that will be fixed in the next release.

--Wez.
 [2001-07-01 06:53 UTC] wez@php.net
And I meant to say that the PHP code has not changed; so it is definitely not a PHP bug.
(Remember that GD 2.0 is still beta)
--Wez.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 18:01:28 2024 UTC