ID: 39366
User updated by: ciakana at gmail dot com
Reported By: ciakana at gmail dot com
Status: Open
Bug Type: GD related
Operating System: Windows XP
PHP Version: 5.2.0
New Comment:
Description:
------------
If I run the allegated script, where shade.png is a png image with a
transparent background (full alpha channel), all works if the degrees
are less then 45. If I set the degrees to 300, for example, the
background become black.
Reproduce code:
---------------
<?php
$filename="shade.png";
$degrees =300;
header('Content-type: image/png');
$source = imagecreatefrompng($filename);
$rotate = imagerotate($source, $degrees, -1);
imagealphablending($rotate, true);
imagesavealpha($rotate, true);
imagepng($rotate);
?>
Expected result:
----------------
A rotated copy of the original image with the alpha channel preserved
Actual result:
--------------
An image with a black bakground
Previous Comments:
------------------------------------------------------------------------
[2006-11-03 22:16:43] ciakana at gmail dot com
Description:
------------
If I run the allegated script, where shade.png is a png image with a
transparent background (full alpha channel), all works if the degrees
are less then 45. If I set the degrees to 300, for example, the
background become black.
Reproduce code:
---------------
<?php
$filename="shade.png";
$degrees =300;
header('Content-type: image/png');
$source = imagecreatefrompng($filename);
$rotate = imagerotate($source, $degrees, -1);
imagealphablending($rotate, true);
imagesavealpha($rotate, true);
imagepng($rotate);
?>
Expected result:
----------------
An image with a black bakground
Actual result:
--------------
A rotated copy of the original image with the alpha channel preserved
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39366&edit=1