欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

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*/
相关标签: php