时间:2021-07-01 10:21:17 帮助过:3人阅读
经鉴定可用,代码如下:
<?php /* *$sourePic:原图路径 * $smallFileName:小图名称 * $width:小图宽 * $heigh:小图高 */ 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;//返回小图路径 } pngthumb("001.png", "test2.png", 300, 300);//调用 echo '<p style="background-color: red;"><img src="test2.png"></p>'; ?>
相关推荐:
PHP实现支持透明的png图像缩放
php 检测png图片是否完整的实例代码
png图片 php 生成文字png图片的代码
以上就是PHP创建透明PNG图的方法的详细内容,更多请关注Gxl网其它相关文章!