blob: e5825e12972d593f2116235a1955d69ea5c75723 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#ifndef EXIF_H_INCLUDED
#define EXIF_H_INCLUDED
#define MAX_COMMENT 2000
#ifdef _WIN32
#define PATH_MAX _MAX_PATH
#endif
/*--------------------------------------------------------------------------
This structure stores Exif header image elements in a simple manner
Used to store camera data as extracted from the various ways that it can be
stored in an exif header
--------------------------------------------------------------------------*/
typedef struct {
char CameraMake [32];
char CameraModel [40];
char DateTime [20];
int Height, Width;
int Orientation;
int IsColor;
int FlashUsed;
float FocalLength;
float ExposureTime;
float ApertureFNumber;
float Distance;
int HaveCCDWidth; /* boolean */
float CCDWidth;
float ExposureBias;
int Whitebalance;
int MeteringMode;
int ExposureProgram;
int ISOequivalent;
int CompressionLevel;
char Comments[MAX_COMMENT];
unsigned char * ThumbnailPointer; /* Pointer at the thumbnail */
unsigned ThumbnailSize; /* Size of thumbnail. */
char * DatePointer;
}ImageInfo_t;
/* Prototypes for exif.c functions. */
void
process_EXIF(unsigned char * const ExifSection,
unsigned int const length,
ImageInfo_t * const ImageInfoP,
int const ShowTags,
const char ** const errorP);
void
ShowImageInfo(ImageInfo_t * const ImageInfoP);
#endif
|