Is it possible to download an image with a specified URL to a folder within the space of the web app, say in /images
, to be accessed locally?
I say this because I'm writing a mobile web app wrapped with TriggerIO but the native saving functionality is super slow and freezes up the phone in the process, so any touch interactions have a 5+ second delay.
Are there any known javascript options to get around this?
Thanks!
http://savetodisk.com/?get=http://urlofthepic.jpg and download it on serverside and send it as binary data to user
– E L Apr 4 at 1:11forge.file.saveURL(url, function(file) { debug("Saved " + url, file);
– Garrett Apr 5 at 6:15