i’m using imageFx javascript library and it’s really wonderful i’m just wondering is their any way to send the processed image back to the server after being processed for saving ? i’m using asp.net c#
http://www.nihilogic.dk/labs/imagefx/
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.
It looks like this uses a 2D canvas to process the image you should be able to find the canvas in the DOM using Javascript and then send the canvas data as an image to the server.
Using something like (assuming jQuery is present):
This will send it as base64 encoded image data, you can then decode that and store the resulting image on the server.
That process is discussed here:
Uploading 'canvas' image data to the server