我正在使用 imagecreatefrompng 进行简单的图像加载。
图像的背景是#E5DDBB。使用下面的代码,它渲染图像,但背景现在是#DED6AD。
http://www.letslogic.com/test.php包含以下内容:
<img src="images/skins/yoshi/0.png">
<img src="dyn_image.php">
dyn_image.php 包含:
<?php
$im = imagecreatefrompng('images/skins/yoshi/0.png');
header("Content-Type: image/png");
imagepng($im);
?>
如果您查看 test.php 显示的两个图像,图像是不同的颜色......