tags:

views:

47

answers:

2

Hi, I have an HTML5 site. I want to do following thing:

  1. Walk through files in a folder
  2. Find all images
  3. Get exif file from images
  4. Analyze an exifs (on server)
  5. Correct bad exifs

This is a best scenario, that it can be. I am conscious that 1st and 2second step is possibly done only by selecting this files by user. And 5th step is possible only when the analysis will be done at user's machine. So what is the best way to do it (to get closer as much to the optimal scenario)? What should I use without need to force a user to install anything?

A: 

You would need to create an application that runs on the computer of the user. You can't create an HTML5 site that does this.

ZippyV
A: 

You should use ExifTool. It is available as a Perl library here: http://www.sno.phy.queensu.ca/~phil/exiftool/ExifTool.html And also as a command-line tool which can be ran by the server (same site).

Hila's Master