-
How to merge two images in PHP
over 9 years ago
-
almost 9 years ago
Can you please forward your both images, so that I can track the issue
-
-
almost 9 years ago
Not Working for me :(
-
over 9 years ago
If you want to overlay one image over another image. You can use the below example.
- function mergeImage(){
- $src = imagecreatefromjpeg('usaflag.jpg');
- $dst = imagecreatefromjpeg('vivek.jpg');
- imagecopymerge($dst, $src, 0, 0, 0, 0, 540, 960, 30);
- header('Content-type: image/jpeg');
- imagejpeg($dst);
- imagedestroy($src);
- imagedestroy($dst);
- }
- mergeImage();
function mergeImage(){ $src = imagecreatefromjpeg('usaflag.jpg'); $dst = imagecreatefromjpeg('vivek.jpg'); imagecopymerge($dst, $src, 0, 0, 0, 0, 540, 960, 30); header('Content-type: image/jpeg'); imagejpeg($dst); imagedestroy($src); imagedestroy($dst); } mergeImage();
almost 9 years ago
Can you please forward your both images, so that I can track the issue
almost 9 years ago
Not Working for me :(
2 Comment(s)