zoukankan      html  css  js  c++  java
  • PHP实现生成透明背景的PNG缩略图函数

    /*
     *$sourePic:原图路径
     * $smallFileName:小图名称
     * $小图宽
     * $heigh:小图高
     * 转载注明 www.chhua.com*/
    function pngthumb($sourePic,$smallFileName,$width,$heigh){
        $image=imagecreatefrompng($sourePic);//PNG
                imagesavealpha($image,true);//这里很重要 意思是不要丢了$sourePic图像的透明色;
                $BigWidth=imagesx($image);//大图宽度
                $BigHeigh=imagesy($image);//大图高度
                $thumb = imagecreatetruecolor($width,$heigh);
                imagealphablending($thumb,false);//这里很重要,意思是不合并颜色,直接用$img图像颜色替换,包括透明色;
                imagesavealpha($thumb,true);//这里很重要,意思是不要丢了$thumb图像的透明色;
                if(imagecopyresampled($thumb,$image,0,0,0,0,$width,$heigh,$BigWidth,$BigHeigh)){
                imagepng($thumb,$smallFileName);}
                return $smallFileName;//返回小图路径 转载注明 www.chhua.com
    }
      
    pngthumb("a.png", "c.png", 300, 300);//调用
    

      

  • 相关阅读:
    Unity性能优化-遮挡剔除
    unity AssetBundle
    unity中Animation与Animator的区别
    VS 项目没有“添加引用”选项
    VS 右键属性闪一下啥也打不开问题
    协程
    协程
    Python 线程和进程(2)
    线程锁
    ssh传文件加MD5
  • 原文地址:https://www.cnblogs.com/godehi/p/13087097.html
Copyright © 2011-2022 走看看