Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 0.9.5

Bug #6770 Invalid filename ''
Submitted: 2006-02-13 15:59 UTC
From: linuxrocks at gmail dot com Assigned:
Status: No Feedback Package: Image_Transform (version 0.9.0)
PHP Version: 4.4.0 OS: Windows
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


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 : 6 + 28 = ?

 
 [2006-02-13 15:59 UTC] linuxrocks at gmail dot com
Description: ------------ Using the GD Driver on WinXP, PHP 4.4, GD gives the following error when display() is called: Warning: imagepng(): Invalid filename '' in E:\htdocs\libs\pear\Image\Transform\Driver\GD.php on line 464 If the second argument from line 464 is removed so: $result = $functionName($this->imageHandle, $filename); becomes: $result = $functionName($this->imageHandle); The error will disappear and the script will function as expected. However, I suspect that this patch may break saving. Test script: --------------- <?php require_once ("Image/Transform.php"); $b =& Image_Transform::factory('gd'); $b->load ("logo.png"); $b->display(); ?> Expected result: ---------------- Image displays. Actual result: -------------- Warning: imagepng(): Invalid filename ''

Comments

 [2006-02-16 03:03 UTC] rhutchison at quadspeedi dot net
This is also the case on freebsd
 [2006-03-01 17:29 UTC] jausions
Thank you for taking the time to report a problem with the package. This problem may have been already fixed by a previous change that is in the CVS of the package. Please log into CVS with: cvs -d :pserver:cvsread@cvs.php.net:/repository login and check out the CVS repository of this package and upgrade cvs -d :pserver:cvsread@cvs.php.net:/repository co pear/Image_Transform pear upgrade pear/Image_Transform/package2.xml or pear upgrade pear/Image_Transform/package.xml If you are able to reproduce the bug with the latest CVS, please change the status back to "Open". Again, thank you for your continued support of PEAR.