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'm looking for a way to upload multiple images with description. Users will be uploading 1-10 images of quite a large size from cameras so it's better if the images get resized before upload.

Requirements:

  • browser compatible (including mobile browsers and IE), can rely on JavaScript (jQuery)
  • multiple files either as selection of multiple files in native file manager or at least having to click on some button to bring an input for another file
  • add a description to each file
  • resize files before upload (doesn't need to be browser compatible)
  • uploads on submit
  • keeps EXIF info or at least extracts GPS coordinates (could do it with some libraries I found)

Bonuses:

  • can auto-rotate image before upload (using EXIF info)
  • shows thumbnail of selected image
  • drag & drop feature
  • progress bar

I use PHP on backend.

I guess HTML5 canvas might be suitable here. Or some jQuery plugin like blueimp's Jquery-File-Upload. But I don't have experience with more than simple <input type="file">s so I'm asking for your suggestions.

Thanks!

share|improve this question
There's a more fundamental question in it: can I easily select multiple files (withnout need to click "add another file" button) and add a description to each of the files? – koubic May 21 '12 at 22:52
I would have thought that using HTML5 canvas to resize would lose EXIF information, unfortunately. – Neil May 21 '12 at 23:00
What is your actual question? Have you tried implementing any of the examples from jQuery File Upload? Yes, most of what you want to do is possible, but we can't the code for you. Try and build a demo from the examples, then if you have issues, come back and ask specific questions. – Christian Varga May 22 '12 at 3:20
I'm looking for a direction to go. I could start coding right now but I don't want to reinvent wheel. I tried blueimp's jQuery File Upload but the demo doesn't work in my Android 2.3. So I'd appreciate suggestions from somebody who has experience with similar problem. – koubic May 22 '12 at 8:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.