Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
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

2 Answers

up vote 158 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.

share|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
2  
thanks...not working in IE 8 any Solution?? – abhijit Apr 30 '11 at 12:35
2  
on Chrome 23 I need this workaround: var files = input.files ? input.files : input.currentTarget.files; – fra_casula Nov 21 '12 at 8:44
show 9 more comments

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

share|improve this answer
3  
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 '12 at 17:51
Just tested on IE 7, 8, 9: works GREAT! This is magic, u a my hero :) Thx! Dont know why, but styling filter attribute to div directly (style="filter:...") make it works! – FSou1 Mar 15 at 13:31

protected by Community Feb 11 at 14:44

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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