Now since the amazon has enabled CORS
I was wondering if this is possible.
Can the html canvas
data (on client browser) be converted to a something
and uploaded to s3 directly ?
I am sure I can make a PUT
request to amazon but that requires a File
.
I can get base64
encoded image data or even a Blob
but is there a way to save this as an image to S3
from the client browser ?
Is there a way to convert canvas
to File
so that I can make a PUT
request or a way that amazon understands Blob
and saves it as an image ?
This is what worked for me :
AND
There is an old post method to upload data from browser to s3
http://s3.amazonaws.com/doc/s3-example-code/post/post_sample.html
then I have used this idea Convert Data URI to File then append to FormData
and instead of normal
POST
there can be an xhr request with the formdata to amazon and you are doneThe easiest way to save canvas is to convert it to base64:
or you can set image type via argument:
Also watch this lib: http://www.nihilogic.dk/labs/canvas2image/