有没有办法在我们使用header("Content-Type: image/png")
?
<?php
$path = "image.png";
$image = imagecreatefrompng($path);
header("Content-Type: image/png");
imagepng($image);
imagedestroy($image);
?>
编辑 输出 - &gt;
答案 0 :(得分:1)
我认为它应该会自动生效,但似乎您必须使用imagealphablending()
和imagesavealpha()
:
$path = "image.png";
$image = imagecreatefrompng($path);
imagealphablending($image, true);
imagesavealpha($image, true);
header("Content-Type: image/png");
imagepng($image);
imagedestroy($image);