Possible Duplicate:
How to merge two images into a single Jpeg
I have 2 images,
Image.FromFile("images/1.png");
Image.FromFile("images/2.png");
i want to overlap these images and construct a new image how do i do it?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is the simplest way, if you don’t want to scale or translate either image. The result will be stored in image1. You can also create a new image to do this, offset the images, scale them, change transparency, etc..