From ea32b96bc9f8ea219e65e721388fb7011e37a031 Mon Sep 17 00:00:00 2001
From: Andreas Huggel
-The MakerNote is tag 0x927c in the Exif IFD. According to the
+The Makernote is tag 0x927c in the Exif IFD. According to the
Exif 2.2 standard, the makernote is "a tag for manufacturers of
Exif writers to record any desired information. The contents are up to
@@ -36,10 +36,12 @@ etc. In my opinion, this is a bug in the specification. In fact, some vendors se
recognized this problem and use offsets relative to somewhere at the beginning of the makernote
field for the makernote IFD. The following table summarizes the structures of the MakerNote field used by some vendors.
+ The following table summarizes the structures of the makernote field used by some vendors.
Please let me know if you find further specifications on the Internet.
+
+ 1) If not specified, the byte order of the Exif data is applicable. Exif.org has another table with similar
info and sample pictures: Digital
Camera Sample Images. According to this source, (at least some) Ricoh and
- Kodak cameras do not write the MakerNote in IFD format.MakerNote Formats and Specifications
+
+
-
Make
- Models
- Format
- Specs
- Remarks
+ Make
+ Format
+ Header
+ Endian 1)
+ Offsets 2)
+ Ref
+ Remarks
Canon
-
IFD
- [2]
+ None
+
+ [2]
+ Some CR2 images have a non-zero next-IFD pointer
Casio
- QV-3000EX, QV-2000UX, QV-8000SX
IFD
+ -
+ -
+ -
[4]
- "Early" versions of QV-2000UX and QV-8000SX only
- have 4 bytes in the MakerNote field.
+ Not supported by Exiv2 yet
-
- Fujifilm
-
- IFD; starts with string "FUJIFILM" and an offset
- to the first IFD, offsets are relative to the beginning of the MakerNote
+ FUJIFILM
+ IFD, usually at offset 12
+ Starts with the string "FUJIFILM"
+ and a 4 byte pointer to the IFD
+ Little endian (II)
+ Relative to the beginning of the makernote
[1]
- Fujifilm's Exif data uses big endian (MM) byte order, but the MakerNote
- uses little endian (II) alignment
+ Exif data uses big endian (MM) byte order
+
Minolta
-
IFD
+ -
+ -
+ -
[5]
- MakerNote numbers are always stored in big endian (MM) byte order
+ Not supported by Exiv2 yet
-
Nikon (1)
- E990, D1
- IFD (from offset 0x00)
+ NIKON (1)
+ IFD
+ None
+
+
[3]
-
+ Models using this makernote include E990, D1
-
Nikon (2)
- E700, E800, E900, E900S, E910, E950
- IFD; starts with string "Nikon\0", IFD from offset
- 0x08
- [1]
+ NIKON (2)
+ IFD, at offset 8
+ "Nikon\0" followed by two bytes of unknown meaning
+
+ [1]
+ Models using this makernote include E700, E800, E900, E900S, E910, E950
-
Nikon (3)
- E5400, SQ, D2H, D70
- IFD; starts with string "Nikon\0" and a TIFF header
- structure
+ NIKON (3)
+ IFD, usually at offset 18
+ "Nikon\0" followed by 4 bytes which look like a version code
+ and a TIFF header
+ From makernote TIFF header
+ Relative to the start of the makernote TIFF header
- The TIFF header structure indicates the byte order and the start offset
- of the IFD. IFD offsets are relative to the start of the TIFF header.
+ Models using this makernote include E5400, SQ, D2H, D70, D100, D200.
+ Makernote IFD of the D200 has no next-IFD pointer. (Is this a bug?)
-
Olympus
- D450Z(C-920Z)
- IFD; starts with string "OLYMP", IFD from offset
- 0x07
+ OLYMPUS
+ IFD, at offset 8
+ "OLYMP\0" followed by two bytes of unknown meaning
+
+
[1]
Sanyo
- DSC-MZ2
IFD
+ -
+ -
+ -
[6]
- Tag 0x00ff contains the offset to the start of the MakerNote(?).
- The semantics of the value is different in TIFF and JPEG images
+ Not supported by Exiv2 yet
-
Sigma, Foveon
+ SIGMA, FOVEON
+ IFD, at offset 10
+ "SIGMA\0\0\0" or "FOVEON\0\0" followed by two bytes
+ of unknown meaning
+
- IFD; Starts with an 8-byte ID string "SIGMA\0\0\0" or
- "FOVEON\0\0"
[7]
+ Panasonic
+ IFD without a next-IFD pointer at offset 12
+ "Panasonic\0\0\0"
+
- Non-standard IFD (without a next-IFD pointer); Starts with an 12-byte ID string "Panasonic\0\0\0"
[8]
+
+ SONY (1)
+ IFD without a next-IFD pointer at offset 12
+ "SONY DSC \0\0\0"
+
+
+
+ Seen in Jpeg images, e.g., from DSC-W7, DSC-R1
+
+
SONY (2)
+ IFD
+ None
+
+
+
+ Seen in SR2 images, e.g., from DSC-R1
+
+ 2) If not specified, offsets are relative to the start of the TIFF header.
+
+
[1] Exif
file format by TsuruZoh Tachibanaya
- [2] EXIF MakerNote
+ [2] EXIF Makernote
of Canon by David Burren
- [3] MakerNote
+ [3] Makernote
EXIF Tag of the Nikon 990 by Max Lyons
- [4] "MakerNote"
+ [4] "Makernote"
Exif tag of Casio by Eckhard Henkel
[5] Minolta
MakerNote by Dalibor Jelinek
diff --git a/src/makernote2.cpp b/src/makernote2.cpp
index 4fe3b87b..7ca598cc 100644
--- a/src/makernote2.cpp
+++ b/src/makernote2.cpp
@@ -182,7 +182,7 @@ namespace Exiv2 {
// Read offset to the IFD relative to the start of the makernote
// from the header. Note that we ignore the byteOrder argument
- start_ = getUShort(header_.pData_ + 8, byteOrder_);
+ start_ = getULong(header_.pData_ + 8, byteOrder_);
if ( static_cast