I want to know if there is any way to make a script using Javascript/jQuery to download(open a download dialog) a image so the browser won't just show it.
feedback
|
|
You need to use server-side scripting for this. Search on stackoverflow. Alternately, your server might allow you to alter headers dynamically via configuration. Edit: Apache solution with mod_headersPlace your downloadable images in a directory. Inside this directory, create a
Test Request:
Test Response:
| ||||
|
feedback
|
|
I have come up with pure JavaScript way to force download of image, with the following restrictions:
The above restrictions (especially the third) more or less renders this useless but still, the "core" idea is working and hopefully at some point in the future it will be possible to determine file name then it will become much more useful. Here is the code:
As you can see, the trick is drawing the image into Usage sample follows as well. HTML:
JavaScript:
This allows to "attach" download button to every existing image by assigning the Due to the same origin policy can't post live example at jsFiddle - they're using "sandbox" domain to execute the scripts. | |||
|
feedback
|
|
Just to do the download job, use
After that kind of line, the browser will get the image (if available) and store a | |||
feedback
|
|
This is totally possible. Just encode the image as Base64 then do a | |||
|
feedback
|
|
I'm guessing you mean something like this: Go to url in browser, URL is: http://example.com/image.png and instead of displaying, the browser prompts you to save the image? I'm fairly certain that you cannot force this with javascript and will need a server-side language to control headers. And even at that point you cannot FORCE the browser to download it, each useragent will react differently to whatever headers you may send. EDIT: I seem to remember the header being | ||||
|
feedback
|