ID:               40069
 User updated by:  alex at gateway-productions dot com
 Reported By:      alex at gateway-productions dot com
 Status:           Open
 Bug Type:         GD related
 Operating System: Linux
 PHP Version:      latest cvs
 New Comment:

after closer inspection of the png i noticed that it is possibly
transfering correctly,. As you can see what appears to be a bit of the
picture on the bottom left, but it is not resizing the png at all. 

rather overlaying without resizing the overlayed image.


Previous Comments:
------------------------------------------------------------------------

[2007-01-10 09:33:48] alex at gateway-productions dot com

this is the output png code example

http://gateway-productions.com/v6/media/gallery/test.png

------------------------------------------------------------------------

[2007-01-10 09:31:19] alex at gateway-productions dot com

upgraded to latest cvs version, and i have the latest gd

and still does not produced desired outcome unless my code is wrong? it
is still not transfering the overlayed none alpha data.

heres a link to the orginal watermark

http://gateway-productions.com/v6/media/gallery/watermark.png

------------------------------------------------------------------------

[2007-01-09 01:47:19] [EMAIL PROTECTED]

If it does not work with the snapshots, please provide a source image
(a link to).

------------------------------------------------------------------------

[2007-01-09 00:59:50] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.2-win32-latest.zip



------------------------------------------------------------------------

[2007-01-09 00:57:19] alex at gateway-productions dot com

Description:
------------
imagecopyresampled() returns a blank resized image with alpha not the
source resized with alpha


Reproduce code:
---------------
       $im = ImageCreateFromPNG($sourcefile);
       $im_dest = imagecreatetruecolor ($sourcefile_new_width,
$sourcefile_new_height);
       imagealphablending($im_dest, false);
       imagecopyresampled($im_dest, $im, 0, 0, 0, 0, $sourcefile_width,
$sourcefile_height, $sourcefile_new_width, $sourcefile_new_height);
       imagesavealpha($im_dest, true);
       imagepng($im_dest, $destfile);
       imagedestroy($im_dest);

Expected result:
----------------
resizing actuall source png while keeping transparency and saving file

Actual result:
--------------
returns a blank resized image with alpha not the source resized with
alpha



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=40069&edit=1

Reply via email to