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 |
---|---|
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() |
convertBytesToVersionString
public FujifilmMakernoteDescriptor(FujifilmMakernoteDirectory directory)
public java.lang.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 java.lang.String getSharpnessDescription()
public java.lang.String getWhiteBalanceDescription()
public java.lang.String getColorDescription()
public java.lang.String getToneDescription()
public java.lang.String getFlashModeDescription()
public java.lang.String getFlashStrengthDescription()
public java.lang.String getMacroDescription()
public java.lang.String getFocusModeDescription()
public java.lang.String getSlowSyncDescription()
public java.lang.String getPictureModeDescription()
public java.lang.String getContinuousTakingOrAutoBrackettingDescription()
public java.lang.String getBlurWarningDescription()
public java.lang.String getFocusWarningDescription()
public java.lang.String getAutoExposureWarningDescription()
Copyright © 2002-2013 Drew Noakes. All Rights Reserved.