var img = new Image(); img.src = '/images/backdrop.jpg'; ctx.drawImage(img,0,0); I wanted to load an image from local disk on to canvas using dialog box mechanism rather than the path directly specified as in above eg. I tried different sorts using javascript but in vain,even tried using the input type as file. what else can i try?
|
Take a look here: It's important to have
Also, note that you probably want to use As far as loading from a dialog box, you can replace the last line from the above with something like this:
This way, the user would be able to enter the name of the image file to load it. Of course, you need to have that file in your Hope this helps. |
|||
|
|
|
You can always ask for a file, upload it to a temporary folder in the server and then load it back to canvas... The page could provide a progress bar while the process is taking place. (i think this is the best way because of sandbox security) |
|||
|
|