dualCore
dualCore

Reputation: 629

html5 Image upload

I'm trying to make a VERY simple image uploader in html5.

<input type="file" multiple=""/>

All I would like to do is display what is uploaded without using PhP or anything. Could I use code similar to this?

<img src="WHATEVER WAS UPLOADED"/>

Thanks!

Upvotes: 8

Views: 31980

Answers (2)

k1dbl4ck
k1dbl4ck

Reputation: 186

i found

http://www.html5rocks.com/en/tutorials/file/dndfiles/

rather helpful.

if you dont want to push the image to some server ( i assume this from your question ), you can just update the image locally :

<style>
  .thumb {
    height: 75px;
    border: 1px solid #000;
    margin: 10px 5px 0 0;
    }
 </style>

<input type="file" id="files" name="files[]" multiple />
<output id="list"></output>

<script>
  function handleFileSelect(evt) {
    var files = evt.target.files; // FileList object

   // Loop through the FileList and render image files as thumbnails.
   for (var i = 0, f; f = files[i]; i++) {

     // Only process image files.
     if (!f.type.match('image.*')) {
       continue;
     }

     var reader = new FileReader();

     // Closure to capture the file information.
     reader.onload = (function(theFile) {
       return function(e) {
          // Render thumbnail.
          var span = document.createElement('span');
          span.innerHTML = ['<img class="thumb" src="', e.target.result,
                        '" title="', escape(theFile.name), '"/>'].join('');
          document.getElementById('list').insertBefore(span, null);
    };
      })(f);

      // Read in the image file as a data URL.
      reader.readAsDataURL(f);
    }
  }

  document.getElementById('files').addEventListener('change', handleFileSelect, false);

 </script>

or somesuch.

Upvotes: 4

rasmusx
rasmusx

Reputation: 905

You could archive this with HTML5 File Api.

Following tutorial should get you started: Reading local files in JavaScript

Upvotes: 0

Related Questions