public class FujifilmMakernoteDescriptor extends TagDescriptor
FujifilmMakernoteDirectory
.
Fujifilm's digicam added the MakerNote tag from the Year2000's model (e.g.Finepix1400,
Finepix4700). It uses IFD format and start from ASCII character 'FUJIFILM', and next 4
bytes(value 0x000c) points the offset to first IFD entry. Example of actual data
structure is shown below.
:0000: 46 55 4A 49 46 49 4C 4D-0C 00 00 00 0F 00 00 00 :0000: FUJIFILM........
:0010: 07 00 04 00 00 00 30 31-33 30 00 10 02 00 08 00 :0010: ......0130......
There are two big differences to the other manufacturers.
- Fujifilm's Exif data uses Motorola align, but MakerNote ignores it and uses Intel
align.
- The other manufacturer's MakerNote counts the "offset to data" from the first byte
of TIFF header (same as the other IFD), but Fujifilm counts it from the first byte
of MakerNote itself._directory
Constructor and Description |
---|
FujifilmMakernoteDescriptor(Directory directory) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAutoExposureWarningDescription() |
java.lang.String |
getBlurWarningDescription() |
java.lang.String |
getColorDescription() |
java.lang.String |
getContinuousTakingOrAutoBrackettingDescription() |
java.lang.String |
getDescription(int tagType)
Returns a descriptive value of the the specified tag for this image.
|
java.lang.String |
getFlashModeDescription() |
java.lang.String |
getFlashStrengthDescription() |
java.lang.String |
getFocusModeDescription() |
java.lang.String |
getFocusWarningDescription() |
java.lang.String |
getMacroDescription() |
java.lang.String |
getPictureModeDescription() |
java.lang.String |
getSharpnessDescription() |
java.lang.String |
getSlowSyncDescription() |
java.lang.String |
getToneDescription() |
java.lang.String |
getWhiteBalanceDescription() |
public FujifilmMakernoteDescriptor(Directory directory)
public java.lang.String getDescription(int tagType) throws MetadataException
TagDescriptor
This and getString(int) are the only 'get' methods that won't throw an exception.
getDescription
in class TagDescriptor
tagType
- the tag to find a description fornull
if the tag hasn't been defined.MetadataException
public java.lang.String getAutoExposureWarningDescription() throws MetadataException
MetadataException
public java.lang.String getFocusWarningDescription() throws MetadataException
MetadataException
public java.lang.String getBlurWarningDescription() throws MetadataException
MetadataException
public java.lang.String getContinuousTakingOrAutoBrackettingDescription() throws MetadataException
MetadataException
public java.lang.String getPictureModeDescription() throws MetadataException
MetadataException
public java.lang.String getSlowSyncDescription() throws MetadataException
MetadataException
public java.lang.String getFocusModeDescription() throws MetadataException
MetadataException
public java.lang.String getMacroDescription() throws MetadataException
MetadataException
public java.lang.String getFlashStrengthDescription() throws MetadataException
MetadataException
public java.lang.String getFlashModeDescription() throws MetadataException
MetadataException
public java.lang.String getToneDescription() throws MetadataException
MetadataException
public java.lang.String getColorDescription() throws MetadataException
MetadataException
public java.lang.String getWhiteBalanceDescription() throws MetadataException
MetadataException
public java.lang.String getSharpnessDescription() throws MetadataException
MetadataException
Copyright © 2006 Drew Noakes. All Rights Reserved.