Hey. I need to make image which will be dynamically changing, for example there will be url image.php?image1=one.gif&image2=second.gif&image3=third.gif and it gives me output from these given images, it means something like and with another parameters or so on thx for any help. EDIT: got this did it with imagecopymerge(); but I do not know why there is that dark green
I am working my own game but I need something like this, something like hero, but i don't know how to remove that black color... http://gamingcreation.com is making http://riseofkings.net
it's 5 minutes work http://phpcode.eu/upload/download.php?file=54810_img.rar <?php $my_img = imagecreatefrompng("image/face0.png"); $g = imagecreatefromgif("php.gif"); $d = imagecreatefromgif("image/mouth3.gif"); // Copy and merge imagecopymerge($my_img, $d, 0,0, 0, 0, 591, 550, 100); imagecopymerge($my_img, $g, 0, 0, 0, 0, 120, 65, 100); header( "Content-type: image/png" ); imagepng( $my_img ); ?> PHP: if you want to change mouth, just comment this imagecopymerge($my_img, $d, 0,0, 0, 0, 591, 550, 100); line WARNING: All images are intellectual property of Travian Games !!! I am just trying to merge images to another, it's just testing, I won't use them anymore!