php缩放gif和png图透明背景变成黑色的解决方法
程序员文章站
2022-04-26 12:11:16
工作中需要缩放一些gif图然后在去imagecopymerge,可是发现使用了imagecreatetruecolor和imagecopyresampled后发现背景图不对...
工作中需要缩放一些gif图然后在去imagecopymerge,可是发现使用了imagecreatetruecolor和imagecopyresampled后发现背景图不对,本来透明的背景图变成了黑色,后来发现做一些修改才可以:
$img = imagecreatetruecolor(200, 200); //2.上色 $color=imagecolorallocate($img,255,255,255); //3.设置透明 imagecolortransparent($img,$color); imagefill($img,0,0,$color);
然后再进行imagecopyresampled和imagecopymerge就没有问题了
上一篇: 9段PHP实用功能的代码推荐
下一篇: PHP生成网站桌面快捷方式代码分享