most of the metadata options now works
[geeqie.git] / src / exif.h
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  *  Copyright (C) 2008 The Geeqie Team
5  *
6  *  Authors:
7  *    Support for Exif file format, originally written by Eric Swalens.
8  *    Modified by Quy Tonthat
9  *    Reimplemented with generic data storage by John Ellis
10  *
11
12     This program is free software; you can redistribute it and/or modify
13     it under the terms of the GNU General Public License as published by
14     the Free Software Foundation; either version 2 of the License, or
15     (at your option) any later version.
16
17     This program is distributed in the hope that it will be useful,
18     but WITHOUT ANY WARRANTY; without even the implied warranty of
19     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20     GNU General Public License for more details.
21
22     You should have received a copy of the GNU General Public License
23     along with this program; if not, write to the Free Software
24     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
26
27 #ifndef __EXIF_H
28 #define __EXIF_H
29
30 #define EXIF_FORMATTED(x) "formatted."x
31 #define EXIF_FORMATTED_LEN (sizeof(EXIF_FORMATTED()) - 1)
32
33 /*
34  *-----------------------------------------------------------------------------
35  * Tag formats
36  *-----------------------------------------------------------------------------
37  */
38
39 #define EXIF_FORMAT_COUNT 13
40
41 typedef enum {
42         EXIF_FORMAT_UNKNOWN             = 0,
43         EXIF_FORMAT_BYTE_UNSIGNED       = 1,
44         EXIF_FORMAT_STRING              = 2,
45         EXIF_FORMAT_SHORT_UNSIGNED      = 3,
46         EXIF_FORMAT_LONG_UNSIGNED       = 4,
47         EXIF_FORMAT_RATIONAL_UNSIGNED   = 5,
48         EXIF_FORMAT_BYTE                = 6,
49         EXIF_FORMAT_UNDEFINED           = 7,
50         EXIF_FORMAT_SHORT               = 8,
51         EXIF_FORMAT_LONG                = 9,
52         EXIF_FORMAT_RATIONAL            = 10,
53         EXIF_FORMAT_FLOAT               = 11,
54         EXIF_FORMAT_DOUBLE              = 12
55 } ExifFormatType;
56
57
58 /*
59  *-----------------------------------------------------------------------------
60  * Data storage
61  *-----------------------------------------------------------------------------
62  */
63
64 typedef struct _ExifItem ExifItem;
65
66 typedef struct _ExifRational ExifRational;
67 struct _ExifRational
68 {
69         guint32 num;
70         guint32 den;
71 };
72
73
74 /* enums useful for image manipulation */
75
76 typedef enum {
77         EXIF_ORIENTATION_UNKNOWN        = 0,
78         EXIF_ORIENTATION_TOP_LEFT       = 1,
79         EXIF_ORIENTATION_TOP_RIGHT      = 2,
80         EXIF_ORIENTATION_BOTTOM_RIGHT   = 3,
81         EXIF_ORIENTATION_BOTTOM_LEFT    = 4,
82         EXIF_ORIENTATION_LEFT_TOP       = 5,
83         EXIF_ORIENTATION_RIGHT_TOP      = 6,
84         EXIF_ORIENTATION_RIGHT_BOTTOM   = 7,
85         EXIF_ORIENTATION_LEFT_BOTTOM    = 8
86 } ExifOrientationType;
87
88 typedef enum {
89         EXIF_UNIT_UNKNOWN       = 0,
90         EXIF_UNIT_NOUNIT        = 1,
91         EXIF_UNIT_INCH          = 2,
92         EXIF_UNIT_CENTIMETER    = 3
93 } ExifUnitType;
94
95
96 typedef struct _ExifFormattedText ExifFormattedText;
97 struct _ExifFormattedText
98 {
99         const gchar *key;
100         const gchar *description;
101         gchar *(*build_func)(ExifData *exif);
102 };
103
104 /*
105  *-----------------------------------------------------------------------------
106  * functions
107  *-----------------------------------------------------------------------------
108  */
109
110 ExifData *exif_read(gchar *path, gchar *sidecar_path, GHashTable *modified_xmp);
111
112 ExifData *exif_read_fd(FileData *fd);
113 void exif_free_fd(FileData *fd, ExifData *exif);
114
115 /* exif_read returns processed data (merged from image and sidecar, etc.)
116    this function gives access to the original data from the image.
117    original data are part of the processed data and should not be freed separately */
118 ExifData *exif_get_original(ExifData *processed);
119
120
121 gboolean exif_write(ExifData *exif);
122 gboolean exif_write_sidecar(ExifData *exif, gchar *path);
123
124 void exif_free(ExifData *exif);
125
126 gchar *exif_get_data_as_text(ExifData *exif, const gchar *key);
127 gint exif_get_integer(ExifData *exif, const gchar *key, gint *value);
128 ExifRational *exif_get_rational(ExifData *exif, const gchar *key, gint *sign);
129
130 ExifItem *exif_get_item(ExifData *exif, const gchar *key);
131 ExifItem *exif_get_first_item(ExifData *exif);
132 ExifItem *exif_get_next_item(ExifData *exif);
133
134
135 gchar *exif_item_get_tag_name(ExifItem *item);
136 guint exif_item_get_tag_id(ExifItem *item);
137 guint exif_item_get_elements(ExifItem *item);
138 gchar *exif_item_get_data(ExifItem *item, guint *data_len);
139 gchar *exif_item_get_description(ExifItem *item);
140 guint exif_item_get_format_id(ExifItem *item);
141 const gchar *exif_item_get_format_name(ExifItem *item, gint brief);
142 gchar *exif_item_get_data_as_text(ExifItem *item);
143 gint exif_item_get_integer(ExifItem *item, gint *value);
144 ExifRational *exif_item_get_rational(ExifItem *item, gint *sign, guint n);
145
146 gchar *exif_item_get_string(ExifItem *item, gint idx);
147
148 gchar *exif_get_description_by_key(const gchar *key);
149 gchar *exif_get_tag_description_by_key(const gchar *key);
150
151 gchar *exif_get_formatted_by_key(ExifData *exif, const gchar *key, gint *key_valid);
152
153 gint exif_update_metadata(ExifData *exif, const gchar *key, const GList *values);
154
155 guchar *exif_get_color_profile(ExifData *exif, guint *data_len);
156
157 /* jpeg embedded icc support */
158
159 void exif_add_jpeg_color_profile(ExifData *exif, guchar *cp_data, guint cp_length);
160
161
162 gint exif_jpeg_segment_find(guchar *data, guint size,
163                                    guchar app_marker, const gchar *magic, guint magic_len,
164                                    guint *seg_offset, guint *seg_length);
165 gint exif_jpeg_parse_color(ExifData *exif, guchar *data, guint size);
166
167 /*raw support */
168 guchar *exif_get_preview(ExifData *exif, guint *data_len, gint requested_width, gint requested_height);
169 void exif_free_preview(guchar *buf);
170
171
172 #endif
173 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */