当前位置:Gxlcms > PHP教程 > php缩放png图片时保持透明度的代码

php缩放png图片时保持透明度的代码

时间:2021-07-01 10:21:17 帮助过:16人阅读

做站点时,通常要将图片缩小成合适的尺寸,jpg图片缩小比较容易,png图片如果带了透明色的话,按照jpg的方式来缩小的话,就会造成透明色损失。那么如何处理,才能保存透明色呢?

主要是利用gd库的两个方法:

imagecolorallocatealpha 分配颜色 + alpha
imagesavealpha 设置在保存 png 图像时保存完整的 alpha 通道信息
  1. //获取源图gd图像标识符
  2. $srcImg = imagecreatefrompng('./src.png');
  3. $srcWidth = imagesx($srcImg);
  4. $srcHeight = imagesy($srcImg);
  5. //创建新图
  6. $newWidth = round($srcWidth / 2);
  7. $newHeight = round($srcHeight / 2);
  8. $newImg = imagecreatetruecolor($newWidth, $newHeight);
  9. //分配颜色 + alpha,将颜色填充到新图上
  10. $alpha = imagecolorallocatealpha($newImg, 0, 0, 0, 127);
  11. imagefill($newImg, 0, 0, $alpha);
  12. //将源图拷贝到新图上,并设置在保存 PNG 图像时保存完整的 alpha 通道信息
  13. imagecopyresampled($newImg, $srcImg, 0, 0, 0, 0, $newWidth, $newHeight, $srcWidth, $srcHeight);
  14. imagesavealpha($newImg, true);
  15. imagepng($newImg, './dst.png');

php, png

人气教程排行