php使用GD库缩小png图片时保持透明的方法


最近只做了一个discuz的水印程序,用于给缩略图打水印,使用GD打png的水印时发现,将水印尺寸压缩后就不能正常显示png的透明效果,本来透明的地方变黑了,很难看,最后终于找到这个解决办法

//获取源图gd图像标识符
$srcImg = imagecreatefrompng('./src.png');
$srcWidth = imagesx($srcImg);
$srcHeight = imagesy($srcImg);

//创建新图
$newWidth = round($srcWidth / 2);
$newHeight = round($srcHeight / 2);
$newImg = imagecreatetruecolor($newWidth, $newHeight);
//分配颜色 + alpha,将颜色填充到新图上
$alpha = imagecolorallocatealpha($newImg, 0, 0, 0, 127);
imagefill($newImg, 0, 0, $alpha);

//将源图拷贝到新图上,并设置在保存 PNG 图像时保存完整的 alpha 通道信息
imagecopyresampled($newImg, $srcImg, 0, 0, 0, 0, $newWidth, $newHeight, $srcWidth, $srcHeight);
imagesavealpha($newImg, true);
imagepng($newImg, './dst.png');

下面附上我实际使用的代码:

$wm_dst_w=100;
$wm_dst_h = 50;
$target = imagecreatetruecolor($wm_dst_w, $wm_dst_h);
imagefill($target, 0, 0, imagecolorallocatealpha($target, 0, 0, 0, 127));
imagecopyresampled($target,$watermark_logo,0,0,0,0,$wm_dst_w,$wm_dst_h,$logo_w,$logo_h);
imagesavealpha($target, true);

因为程序中接着就要使用所以我没有存储图片到文件中。

Archives