I'm doing a simple load of an image using imagecreatefrompng.
The background of the image is #E5DDBB. Using the code below, it renders the image but the background is now #DED6AD.
http://www.letslogic.com/test.php contains the following:
<img src="images/skins/yoshi/0.png">
<img src="dyn_image.php">
dyn_image.php contains:
<?php
$im = imagecreatefrompng('images/skins/yoshi/0.png');
header("Content-Type: image/png");
imagepng($im);
?>
If you look at the two images that test.php shows, the images are different colours...