summaryrefslogtreecommitdiff
path: root/src/exif_cfg.h
diff options
context:
space:
mode:
authorDennis Real <github@tildepipe.org>2012-03-16 22:20:58 +0100
committerDennis Real <github@tildepipe.org>2012-03-16 22:20:58 +0100
commit9e1bbf874500e99506baffec3c6b54ed04e60a2f (patch)
treef8d384ded578b95dce53cc58c5c0cc0315d730d0 /src/exif_cfg.h
parent8e96382805eb77a82209df9d71dbf9c0dd1c4cdb (diff)
- exif handling changed
- gps info added if available
Diffstat (limited to 'src/exif_cfg.h')
-rw-r--r--src/exif_cfg.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/exif_cfg.h b/src/exif_cfg.h
new file mode 100644
index 0000000..c828f43
--- /dev/null
+++ b/src/exif_cfg.h
@@ -0,0 +1,61 @@
+/* exif_cfg.h
+
+Copyright (C) 2012 Dennis Real.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies of the Software and its documentation and acknowledgment shall be
+given in the documentation and software packages that this Software was
+used.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+*/
+
+#ifndef EXIF_CFG_H
+#define EXIF_CFG_H
+
+#include <libexif/exif-data.h>
+
+typedef struct
+{
+ ExifIfd ifd; /* section */
+ ExifTag tag; /* tag */
+} t_EXIF_INFO;
+
+/* show these standard tags. section must be given first, than the tag itself */
+/* note: maker note specific tags are handled directly in exif.c up to now */
+const t_EXIF_INFO Exif_tag_list [] =
+{
+ {EXIF_IFD_0, EXIF_TAG_MAKE},
+ {EXIF_IFD_0, EXIF_TAG_MODEL},
+ {EXIF_IFD_0, EXIF_TAG_IMAGE_DESCRIPTION},
+ {EXIF_IFD_EXIF, EXIF_TAG_DATE_TIME_ORIGINAL},
+ {EXIF_IFD_EXIF, EXIF_TAG_EXPOSURE_TIME},
+ {EXIF_IFD_EXIF, EXIF_TAG_SHUTTER_SPEED_VALUE},
+ {EXIF_IFD_EXIF, EXIF_TAG_FNUMBER},
+ {EXIF_IFD_EXIF, EXIF_TAG_APERTURE_VALUE},
+ {EXIF_IFD_EXIF, EXIF_TAG_EXPOSURE_BIAS_VALUE},
+ {EXIF_IFD_EXIF, EXIF_TAG_ISO_SPEED_RATINGS},
+ {EXIF_IFD_EXIF, EXIF_TAG_FOCAL_LENGTH},
+ {EXIF_IFD_EXIF, EXIF_TAG_FOCAL_LENGTH_IN_35MM_FILM},
+ {EXIF_IFD_EXIF, EXIF_TAG_EXPOSURE_MODE},
+ {EXIF_IFD_EXIF, EXIF_TAG_EXPOSURE_PROGRAM},
+ {EXIF_IFD_EXIF, EXIF_TAG_SCENE_CAPTURE_TYPE},
+ {EXIF_IFD_EXIF, EXIF_TAG_FLASH},
+
+ {EXIF_IFD_COUNT, 0} /* end marker */
+};
+
+#endif