php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11813 ImageGammaCorrect no longer works
Submitted: 2001-06-30 19:20 UTC Modified: 2002-02-03 07:10 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:
11 + 33 = ?
Subscribe to this entry?

 
 [2001-06-30 19:20 UTC] steve at stevegodwin dot com
A script that worked in PHP 4.0.4 no longer works in PHP 4.0.6 (with the php_gd.dll bundled with the Win32 binaries). 

Here's a snippet:
$srcImgName = "SWD2.jpg";
$dstImgName = "gam_" . $srcImgName;
$srcImage = ImageCreateFromJPEG( $srcImgName );
ImageGammaCorrect( $srcImage, 1.8, 2.2 );
ImageJPEG( $srcImage, $dstImgName );

No errors are produced, and the new image is created but it is identical to the original -- no gamma correction has occurred.


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-21 20:47 UTC] andy@php.net
Try setting the error_reporting level so that the script
shows EVERYTHING.  This may or may not help.
 [2001-10-02 18:22 UTC] sniper@php.net
This is because the binaries use GD 2.0.1..which is still
in beta state. We have to have extension which uses GD 1.8.x
in next release.

--Jani

 [2001-10-16 01:42 UTC] ssb@php.net
Closing.  Next Windows binaries will have to use GD 1.8.x.
 [2001-10-16 10:22 UTC] sniper@php.net
Let's keep this open (critical) until it really is solved.
And I think there should be two modules in the win32 release, for both 1.8.x and 2.0.x versions of GD.

--Jani

 [2002-02-03 07:07 UTC] imajes@php.net
has this been resolved with 4.1.1 ?

--james
 [2002-02-03 07:10 UTC] derick@php.net
Yes, PHP 4.1.1 shipped with a module for both GD 1.8 and 2

Derick
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 08:01:27 2024 UTC