I am currently using http://paperjs.org to create an HTML5 canvas drawing app. I want to let users upload images into the canvas. I know I need to make a login and signup but is there an easier way? I have seen the HTML5 drag and drop upload.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I assume you mean, to load an image into the canvas and not uploading the image from the canvas. It'd probably be a good idea to read through all the canvas articles they have over here https://developer.mozilla.org/en/Canvas_tutorial/Using_images But basically what you want to do is create an image in javascript, and set the image.src = to whatever the file location is. In the case of loading images from the user on their end, you're going to want to use the File System API. Threw together a brief example here: http://jsfiddle.net/influenztial/qy7h5/
|
|||||
|
|
Check Demo |
|||
|
|