Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to merge two images in PHP

    • 0
    • 0
    • 0
    • 0
    • 2
    • 0
    • 0
    • 0
    • 6.72k
    Comment on it

    If you want to overlay one image over another image. You can use the below example.

    1. function mergeImage(){
    2. $src = imagecreatefromjpeg('usaflag.jpg');
    3. $dst = imagecreatefromjpeg('vivek.jpg');
    4. imagecopymerge($dst, $src, 0, 0, 0, 0, 540, 960, 30);
    5. header('Content-type: image/jpeg');
    6. imagejpeg($dst);
    7. imagedestroy($src);
    8. imagedestroy($dst);
    9. }
    10. mergeImage();

 2 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: