VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php缩小png图片不损失透明色的解决方法

png图片如果带了透明色按照jpg的方式来缩小,就会造成透明色损失。那么如何处理才能保存透明色呢?下面的代码就可以解决这个问题.

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

  1. imagecolorallocatealpha //分配颜色 + alpha 
  2.  
  3. imagesavealpha //设置在保存 png 图像时保存完整的 alpha 通道信息 

代码示例:

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

原文链接:http://www.phpfensi.com/php/20200817/13134.html


相关教程