PNG格式图片读取时显示为黑色之解决
程序员文章站
2022-03-19 18:01:01
...
[PHP]代码
<?php $fileurl = '1.png'; header("Content-type: image/png"); $img = imagecreatefrompng($fileurl); imagealphablending($img,false); //(取消)注释此段代码验证输出 imagesavealpha($img,true); //(取消)注释此段代码验证输出 imagepng($img); imagedestroy($img); /*End of php*/