Minase Posted August 3, 2008 Share Posted August 3, 2008 Hy i do have an JPG image and an PNG one. I did try with diverse functions but it doesnt work. <?php header("Content-type: image/png"); $im = imagecreatefrompng("2_1.png"); $im2 = imagecreatefromjpeg("1_1.jpg"); // merge the same image onto itself imagecopymerge($im2, $im, 150, 150, 10, 10, 40, 40); imagepng($im); imagedestroy($im); ?> that is my code,but the background (from jpg image is black ,its like it cant find the image location) thanks Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/ Share on other sites More sharing options...
Minase Posted August 4, 2008 Author Share Posted August 4, 2008 *bump* anyone please? Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607321 Share on other sites More sharing options...
Minase Posted August 4, 2008 Author Share Posted August 4, 2008 anyone? please really need this code till tonight. i did use google first,but nothing good returned Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607383 Share on other sites More sharing options...
JasonLewis Posted August 4, 2008 Share Posted August 4, 2008 Well I am no pro with the GD library, but, (correct me if I'm wrong) can you have the content type set to image/png then try and load a jpg? Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607387 Share on other sites More sharing options...
Minase Posted August 4, 2008 Author Share Posted August 4, 2008 at GD i can say i am more newbie than you (did not use it much till now) thats why i asked for help thanks Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607402 Share on other sites More sharing options...
JasonLewis Posted August 4, 2008 Share Posted August 4, 2008 Well I would recommend changing it from a JPG to a PNG or changing the PNG to a JPG, see what happens. Oh and I rarely use GD. Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607406 Share on other sites More sharing options...
Minase Posted August 4, 2008 Author Share Posted August 4, 2008 did try still problems Link to comment https://forums.phpfreaks.com/topic/117951-merging-2-images/#findComment-607415 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.