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/
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/
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):
$.post('/upload',
{
uid : uid,
img : canvas.toDataURL('image/jpeg')
},
function(data) {});
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