php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #36697 Transparency is lost when using imagecreatetruecolor
Submitted: 2006-03-11 15:14 UTC Modified: 2006-03-13 22:56 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:0 (0.0%)
From: kraus at phoenixwebsolutions dot de Assigned: pajoye (profile)
Status: Closed Package: GD related
PHP Version: 5.1.2 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: kraus at phoenixwebsolutions dot de
New email:
PHP Version: OS:

 

 [2006-03-11 15:14 UTC] kraus at phoenixwebsolutions dot de
Description:
------------
If the function imagecreatetruecolor function is used instead of imagecreate the transparent color seems to get lost when scaling down the color palette if the image is exported as gif.

Reproduce code:
---------------
<?php
header ("Content-type: image/png");
$im = @imagecreatetruecolor(50, 100)
      or die ("Kann keinen neuen GD-Bild-Stream erzeugen");
#$im = @imagecreate(50, 100)
#      or die ("Kann keinen neuen GD-Bild-Stream erzeugen");
$background_color = ImageColorAllocate ($im, 100, 100, 100);
$rect_color = ImageColorAllocate ($im, 200, 0, 0);
ImageFilledRectangle($im,0,0,50,100,$backgroundcolor);
ImageFilledRectangle($im,0,0,50,50,$rect_color);
$text_color = ImageColorAllocate ($im, 233, 14, 91);

ImageString ($im, 1, 5, 5, "Ein Test-String", $text_color);
$res = imagecolortransparent($im, $background_color);
#var_dump($res);var_dump($background_color);
ImageGIF($im);

?>



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-03-13 19:53 UTC] tony2001@php.net
Assigned to the maintainer.
 [2006-03-13 22:56 UTC] pajoye@php.net
This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC