olidev
olidev

Reputation: 20674

how to merge two images into one with asp.net

I am working on an asp.net project. I am searching for a solution such that after a background image of a div is chosen. The user selects another image and coordinate. Then, this image will be merged on the background image with the defined coordinate.

Thanks in advance.

Upvotes: 1

Views: 2129

Answers (2)

Myra
Myra

Reputation: 3656

If you wish to combine two images,firstly you must upload them into server via ajax requests.
Read this article : combining images

After you combine them,let the user download the new one. Also if you're looking for an editor to do so,I suggest to place them on html5 canvas.

Best Regards

Upvotes: 1

Russ
Russ

Reputation: 51

Your post is quite general, but look in to System.Drawing and using an AJAX call to post both images (as well as the coordinates chosen) and then return the combined image which can then be displayed.

Without more specifics that's really all I can offer.

Upvotes: 0

Related Questions