|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-30 15:42 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 03:00:01 2025 UTC |
Description: ------------ Function "imagecolortransparent" is not working on png images in Version 4.3.3 RC1. The posted code was working fine in PHP 4.2.3 Reproduce code: --------------- ... $pic = imagecreate( $this->width, $this->height ); $trans = imagecolorallocate( $pic, 255, 255, 255 ); $trans = imagecolortransparent( $pic, $trans ); ...