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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/***************************************************************************
exif.h - description
-------------------
begin : Dec 1999
copyright : (C) 1999 by Matthias Wandel, 2000 by Richard Groult
email : mwandel@sentex.net rgroult@jalix.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
* USA. *
* *
* For license exceptions see LICENSE.EXC file, attached with the source *
* code. *
* *
***************************************************************************/
#ifndef __EXIF_H__
#define __EXIF_H__
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define MAX_COMMENT 1000
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <time.h>
#include <errno.h>
#include <ctype.h>
#include <sys/stat.h>
#include <utime.h>
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
#include <qstring.h>
#ifndef _MAX_PATH
# define _MAX_PATH 300
#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 FileName [_MAX_PATH+1];
time_t FileDateTime;
unsigned FileSize;
char CameraMake [32];
char CameraModel [40];
char DateTime [20];
int Height, Width;
int IsColor;
int Process;
int FlashUsed;
float FocalLength;
float ExposureTime;
float ApertureFNumber;
float Distance;
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.
}ImageInfo_t;
typedef enum {
READ_EXIF = 1,
READ_IMAGE = 2,
READ_ALL = 3
}ReadMode_t;
typedef unsigned char uchar;
//--------------------------------------------------------------------------
// This structure is used to store jpeg file sections in memory.
typedef struct {
uchar * Data;
int Type;
unsigned Size;
}Section_t;
#define MAX_SECTIONS 20
#define PSEUDO_IMAGE_MARKER 0x123; // Extra value.
extern int ReadJpegSections (FILE * infile, ReadMode_t ReadMode);
extern void DiscardData(void);
extern void process_EXIF(unsigned char * CharBuf, unsigned int length);
extern void process_COM (const uchar * Data, int length);
extern void process_SOFn (const uchar * Data, int marker);
extern void DiscardData(void);
extern int Get16m(const void * Short);
extern int GetExifNonThumbnailSize(void);
extern QString ProcessFile(const char * FileName, bool showsize=false, const char* ThumbnailName=NULL);
#endif
|