I have two gif images, one with a gray gradient background, and one image with a logo. So for example, in the images below, the green box is the logo.
My problem is that when I merge the two gif files using the PHP GD library, the green some how becomes orange/brown and won't return the original colour. Please can someone point out what I'm doing wrong?
$base_image = 'img_in.gif';
$logo_image = 'logo.gif';
// Create images from files
$source = imagecreatefromgif($base_image);
$logo = imagecreatefromgif($logo_image);
//---------------------Logo-----------------------------------\\
imagecolortransparent($logo, imagecolorallocate($logo, 0, 0, 0));
imagecopymerge($source, $logo, 152, 33, 0, 0, 153, 26, 100);
// -------------------------------Output--------------------------\\
imagegif($source,$image_out);
imagedestroy($source);
The green one is how it should look
The orange one is how it ends up looking
The above is how it should look The above is how it ends up looking
Thanks for the replies guys. I realised that I was saving the gif with only 63 colours and not 256! Doh! Thanks anyway