I want to be able to preview a file (image) before it is uploaded. The preview action should be executed all in the browser without using Ajax to upload the image.

How can I do this?

link|improve this question

60% accept rate
What have you tried so far? – Alberto Zaccagni Dec 16 '10 at 9:53
Note that unless you use Gears or another plugin you cannot manipulate the image inside the browser: code.google.com/p/chromium/issues/detail?id=32276 – Steve-o Dec 16 '10 at 9:58
feedback

2 Answers

up vote 28 down vote accepted

Please take a look at the sample JS code below:

<script type="text/javascript">
        function readURL(input) {
            if (input.files && input.files[0]) {
                var reader = new FileReader();

                reader.onload = function (e) {
                    $('#blah').attr('src', e.target.result);
                }

                reader.readAsDataURL(input.files[0]);
            }
        }
    </script>

and the associated HTML:

<body>
    <form id="form1" runat="server">
        <input type='file' onchange="readURL(this);" />
        <img id="blah" src="#" alt="your image" />
    </form>
</body>

Also, you can try this sample here.

link|improve this answer
the above works in Fx 3.6 and Chrome on my XP. – mplungjan Dec 16 '10 at 10:08
Thank you Ivan. It works for me perfect, exact that I want. Thank you. – Simbian Dec 16 '10 at 10:10
Thanks... you're a life saver :D Your solution is the only one that worked and believe me when I say I searched a lot on the Internet for this trick. On gmail (compose mail -> insert image) they show you a preview but the image is uploaded on their servers first and then is showed in your browser. – Igor Popov Jan 22 '11 at 18:31
thanks...not working in IE 8 any Solution?? – abhi Apr 30 '11 at 12:35
Can this solution be combined with stackoverflow.com/questions/4094012/… to produce a cross-bowser solution? – Gavin Dec 3 '11 at 15:24
feedback

The answer of LeassTaTT works well in "standard" browsers like FF and Chrome. The solution for IE exists, but looks different. Here description of cross-browser solution:

In HTML we need two preview elements, img for standard browsers and div for IE

HTML:

        <img id="preview" 
             src="" 
             alt="" 
             style="display:none; max-width: 160px; max-height: 120px; border: none;"/>

        <div id="preview_ie">
        </div>

In CSS we specify the following IE specific thing:

CSS:

  #preview_ie {
    FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale)
  }  

In HTML we include the standard and the IE-specific Javascripts:

<script type="text/javascript">
  {% include "pic_preview.js" %}
</script>  
<!--[if gte IE 7]> 
<script type="text/javascript">
  {% include "pic_preview_ie.js" %}
</script>

The pic_preview.js is the Javascript from the LeassTaTT's answer. Replace the $('#blah') whith the $('#preview') and add the $('#preview').show()

Now the IE specific Javascript (pic_preview_ie.js):

function readURL(imgFile)
{    
    var newPreview = document.getElementById("preview_ie");
    newPreview.filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = imgFile.value;
    newPreview.style.width = "160px";
    newPreview.style.height = "120px";
}    

That's is. Works in IE7, IE8, FF and Chrome. Please test in IE9 and report. The idea of IE preview was found here: http://forums.asp.net/t/1320559.aspx

http://msdn.microsoft.com/en-us/library/ms532969(v=vs.85).aspx

link|improve this answer
Doesn't work in IE8+ because the path returned via the "imgFile.value" in your javascript isn't real. Starting in IE8, MS added a security feature where the real path on the file system isn't accessible. (only way around that is to have the site added to the trusted sites) – jlbruno Apr 19 at 17:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.