vcglib/wrap/Exif
Paolo Cignoni 653866c814 - just changed one comment in wrap/Exif/exif.pri 2012-01-15 18:00:15 +00:00
..
include/Exif added bundler importer (and small library for Exif reader) 2011-12-28 13:47:08 +00:00
src added bundler importer (and small library for Exif reader) 2011-12-28 13:47:08 +00:00
Readme.txt Modified the Readme.txt (old comments were there before) 2012-01-09 17:25:45 +00:00
exif.pri - just changed one comment in wrap/Exif/exif.pri 2012-01-15 18:00:15 +00:00

Readme.txt

How to read exif metadata from a jpg file.
 = = = = = = = = = = = = = = = = = = = = =

1- In your .pro file, define the EXIF_DIR variable which locates the Exif directory in your system, and include the exif.pri file
e.g.
  EXIF_DIR = ./yourSandboxPath/Exif
  include($$EXIF_DIR/exif.pri)

2- In your source file (where you need the exif reader), add:
  #include "jhead.h"
Then, invoke:
  ::ProcessFile(filename);
and get the available exif information from the "ImageInfo" global variable of type ImageInfo_t, defined in jhead.h.