php缩小png图片不损失透明色的解决方法

Agnes ·
更新时间:2024-11-13
· 884 次阅读

主要是利用gd库的两个方法:
代码如下:
imagecolorallocatealpha //分配颜色 + alpha

imagesavealpha //设置在保存 png 图像时保存完整的 alpha 通道信息

代码示例:

代码如下:
//获取源图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');

您可能感兴趣的文章:功能强大的PHP图片处理类(水印、透明度、旋转)PHP实现对png图像进行缩放的方法(支持透明背景)php实现给图片加灰色半透明效果的方法php缩放gif和png图透明背景变成黑色的解决方法PHP实现生成透明背景的PNG缩略图函数分享php加水印的代码(支持半透明透明打水印,支持png透明背景)php imagecreatetruecolor 创建高清和透明图片代码小结php 处理png图片白色背景色改为透明色的实例代码



png图片 方法 损失 png PHP

需要 登录 后方可回复, 如果你还没有账号请 注册新账号