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 127
|
/* This file is -*-C++-*-
------------------------------------------------------------------------------
MetaCam - Extract EXIF information from digital camera files, with
support for Vendor specific blocks.
Copyright (C) 2000 Daniel Stephens (daniel@cheeseplant.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.
------------------------------------------------------------------------------
$Id: dpyfuncs.h,v 1.9 2004/08/21 17:54:20 daniel Exp $
*/
#ifndef DPYFUNCS_H_INCLUDED
#define DPYFUNCS_H_INCLUDED
#include "metacam.h"
// Display functions
extern void dpyISO(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyString(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyLens(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyZoom(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyExpAdjust(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyShutter(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyAperture(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyPixels(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpySigned(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyUnsigned(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyResolution(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyNULL(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyYes(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyResolutionType(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyBitsPerSample(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyUnsignedLookup(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyUndefinedLookup(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyExifVersion(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyExifAperture(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyExifShutter(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyRationalAsDouble(OutputContext &ctx, const char *, const IFDEntry &e, const void*units);
extern void dpyRationalDistance(OutputContext &ctx, const char *, const IFDEntry &e, const void*units);
extern void dpyExifFlash(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyZoomRatio(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpy35mmFocal(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyExifComponentConfiguration(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyNikonFocusPosition(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyUndefinedString(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyTypedComment(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyNikkorLensInfo(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyOlymSpecialMode(OutputContext &ctx, const char *, const IFDEntry &e, const void*);
extern void dpyOlymZoom(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
extern void dpyCanonBlock1(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
extern void dpyCanonBlock4(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
extern void dpyCanonImageNumber(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
extern void dpyCanonSerialNumber(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
extern void dpyCasioDistance(OutputContext &ctx, const char *name, const IFDEntry &e, const void*);
// Lookup lists
extern lookupValue lookEmpty[];
extern lookupValue lookYesNo[];
extern lookupValue lookPhotometric[];
extern lookupValue lookCompression[];
extern lookupValue lookYCbCrPositioning[];
extern lookupValue lookExposureProgram[];
extern lookupValue lookMeteringMode[];
extern lookupValue lookLightSource[];
extern lookupValue lookSensingMethod[];
extern lookupValue lookOlymJPEGQuality[];
extern lookupValue lookCasioRecMode[];
extern lookupValue lookCasioQuality[];
extern lookupValue lookCasioFocusMode[];
extern lookupValue lookCasioFlashMode[];
extern lookupValue lookCasioFlashInten[];
extern lookupValue lookCasioWhiteBalance[];
extern lookupValue lookCasioDigitalZoom[];
extern lookupValue lookCasioSharpness[];
extern lookupValue lookCasioContrast[];
extern lookupValue lookCasioSaturation[];
extern lookupValue lookCasioSensitivity[];
extern lookupValue lookExifColorSpace[];
extern lookupValue lookExposureMode[];
extern lookupValue lookWhiteBalance[];
extern lookupValue lookSceneCaptureType[];
extern lookupValue lookGainControl[];
extern lookupValue lookContrast[];
extern lookupValue lookSaturation[];
extern lookupValue lookSubjectDistanceRange[];
extern lookupValue lookFocusPosition[];
extern lookupValue lookSceneType[];
extern lookupValue lookFileSource[];
extern lookupValue lookCustomRendered[];
// Tag Format Lists
extern knowntag main_known[];
extern knowntag exif_known[];
extern knowntag empty_known[];
extern knowntag nikon_known[];
extern knowntag olympus_known[];
extern knowntag canon_known[];
extern knowntag casio_known[];
#endif /* DPYFUNCS_H_INCLUDED */
|