时间:2021-07-01 10:21:17 帮助过:14人阅读
工作中需要缩放一些gif图然后在去Imagecopymerge,可是发现使用了imagecreatetruecolor和imagecopyresampled后发现背景图不对,本来透明的背景图变成了黑色,后来发现做一些修改才可以:
1 2 3 4 5 6 |
$img = imagecreatetruecolor(200, 200); //2.上色 $color=imagecolorallocate($img,255,255,255); //3.设置透明 imagecolortransparent($img,$color); imagefill($img,0,0,$color); |
然后再进行imagecopyresampled和Imagecopymerge就没有问题了
http://www.bkjia.com/PHPjc/894052.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/894052.htmlTechArticlephp缩放gif和png图透明背景变成黑色的解决方法 工作中需要缩放一些gif图然后在去Imagecopymerge,可是发现使用了imagecreatetruecolor和imagecopyresa...