In my project, I need to merge two pictures.
The first (img.png):
And (for example) second (photo.png):
img http://uoops.ru/1/photo.png
This is PHP code:
$photoImage = ImageCreateFromPNG("img.png");
ImageAlphaBlending($photoImage, true);
$logoImage = ImageCreateFromPNG("photo.png");
$logoW = ImageSX($logoImage);
$logoH = ImageSY($logoImage);
ImageCopy($photoImage, $logoImage, 1, 1, 0, 0, $logoW, $logoH);
ImagePNG($photoImage, "mrkr.png", 0);
As result I want to have this:
But I have this:
How can I fix this?
this is not really optimized but should work