public class FujifilmMakernoteDescriptor extends TagDescriptor<FujifilmMakernoteDirectory>
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(FujifilmMakernoteDirectory directory) |
Modifier and Type | Method and Description |
---|---|
String |
getAutoExposureWarningDescription() |
String |
getBlurWarningDescription() |
String |
getColorDescription() |
String |
getContinuousTakingOrAutoBrackettingDescription() |
String |
getDescription(int tagType)
Returns a descriptive value of the the specified tag for this image.
|
String |
getFlashModeDescription() |
String |
getFlashStrengthDescription() |
String |
getFocusModeDescription() |
String |
getFocusWarningDescription() |
String |
getMacroDescription() |
String |
getPictureModeDescription() |
String |
getSharpnessDescription() |
String |
getSlowSyncDescription() |
String |
getToneDescription() |
String |
getWhiteBalanceDescription() |
convertBytesToVersionString
public FujifilmMakernoteDescriptor(FujifilmMakernoteDirectory directory)
public String getDescription(int tagType)
TagDescriptor
getString(tagType)
will be returned.getDescription
in class TagDescriptor<FujifilmMakernoteDirectory>
tagType
- the tag to find a description fornull
if the tag hasn't been defined.public String getSharpnessDescription()
public String getWhiteBalanceDescription()
public String getColorDescription()
public String getToneDescription()
public String getFlashModeDescription()
public String getFlashStrengthDescription()
public String getMacroDescription()
public String getFocusModeDescription()
public String getSlowSyncDescription()
public String getPictureModeDescription()
public String getContinuousTakingOrAutoBrackettingDescription()
public String getBlurWarningDescription()
public String getFocusWarningDescription()
public String getAutoExposureWarningDescription()
Copyright © 2003-2012 Drew Noakes. All Rights Reserved.