Print value of ContrastDetectAFInFocus as Yes/No. Change internal
selection logic for NikonAf2* from tag data length to group version
This commit is contained in:
parent
cd28e79da0
commit
a3e2410b88
@ -1142,6 +1142,9 @@ namespace Exiv2 {
|
||||
{ 0x00a8, "0105", 0, 2, NA },
|
||||
{ 0x00a8, "0107", 0, 3, NA },
|
||||
{ 0x00a8, "0108", 0, 3, NA },
|
||||
// NikonAf
|
||||
{ 0x00b7, "0100", 0, 0, NA },
|
||||
{ 0x00b7, "0101", 0, 1, NA },
|
||||
};
|
||||
|
||||
int nikonSelector(uint16_t tag, const byte* pData, uint32_t size, TiffComponent* const /*pRoot*/)
|
||||
@ -1151,15 +1154,6 @@ namespace Exiv2 {
|
||||
return aix == nullptr ? -1 : aix->idx_;
|
||||
}
|
||||
|
||||
int nikonAf2Selector(uint16_t tag, const byte* /*pData*/, uint32_t size, TiffComponent* const /*pRoot*/)
|
||||
{
|
||||
int result = tag == 0x00b7 ? 0 : -1 ;
|
||||
if (result > -1 && size == 84 ) {
|
||||
result = 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
DataBuf nikonCrypt(uint16_t tag, const byte* pData, uint32_t size, TiffComponent* const pRoot)
|
||||
{
|
||||
DataBuf buf;
|
||||
|
||||
@ -751,17 +751,6 @@ namespace Exiv2 {
|
||||
*/
|
||||
int nikonSelector(uint16_t tag, const byte* pData, uint32_t size, TiffComponent* const pRoot);
|
||||
|
||||
/*!
|
||||
@brief Function to select cfg + def of a Nikon complex binary array.
|
||||
|
||||
@param tag Tag number of the binary array
|
||||
@param pData Pointer to the raw array data.
|
||||
@param size Size of the array data.
|
||||
@param pRoot Pointer to the root component of the TIFF tree.
|
||||
@return An index into the array set, -1 if no match was found.
|
||||
*/
|
||||
int nikonAf2Selector(uint16_t tag, const byte* pData, uint32_t size, TiffComponent* const pRoot);
|
||||
|
||||
/*!
|
||||
@brief Encrypt and decrypt Nikon data.
|
||||
|
||||
|
||||
@ -657,7 +657,7 @@ namespace Exiv2 {
|
||||
return tagInfo_;
|
||||
}
|
||||
|
||||
//! YesNo, used for DaylightSavings, tag index 2
|
||||
//! YesNo, used for DaylightSavings, tag index 2, et al.
|
||||
constexpr TagDetails nikonYesNo[] = {
|
||||
{ 0, N_("No") },
|
||||
{ 1, N_("Yes") }
|
||||
@ -904,7 +904,7 @@ namespace Exiv2 {
|
||||
{ 22, "AFAreaYPosition", N_("AF Area Y Position"), N_("AF area y position"), nikonAf21Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 24, "AFAreaWidth", N_("AF Area Width"), N_("AF area width"), nikonAf21Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 26, "AFAreaHeight", N_("AF Area Height"), N_("AF area height"), nikonAf21Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 28, "ContrastDetectAFInFocus", N_("Contrast Detect AF In Focus"), N_("Contrast detect AF in focus"), nikonAf21Id, makerTags, unsignedByte, 1, EXV_PRINT_TAG(nikonOffOn)},
|
||||
{ 28, "ContrastDetectAFInFocus", N_("Contrast Detect AF In Focus"), N_("Contrast detect AF in focus"), nikonAf21Id, makerTags, unsignedByte, 1, EXV_PRINT_TAG(nikonYesNo)},
|
||||
// End of list marker
|
||||
{0xffff, "(UnknownNikonAf2Tag)", "(UnknownNikonAf2Tag)", N_("Unknown Nikon Auto Focus 2 Tag"), nikonAf21Id, makerTags, unsignedByte, 1, printValue},
|
||||
};
|
||||
@ -928,7 +928,7 @@ namespace Exiv2 {
|
||||
{ 76, "AFAreaYPosition", N_("AF Area Y Position"), N_("AF area y position"), nikonAf22Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 78, "AFAreaWidth", N_("AF Area Width"), N_("AF area width"), nikonAf22Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 80, "AFAreaHeight", N_("AF Area Height"), N_("AF area height"), nikonAf22Id, makerTags, unsignedShort, 1, printValue},
|
||||
{ 82, "ContrastDetectAFInFocus", N_("Contrast Detect AF In Focus"), N_("Contrast detect AF in focus"), nikonAf22Id, makerTags, unsignedByte, 1, EXV_PRINT_TAG(nikonOffOn)},
|
||||
{ 82, "ContrastDetectAFInFocus", N_("Contrast Detect AF In Focus"), N_("Contrast detect AF in focus"), nikonAf22Id, makerTags, unsignedByte, 1, EXV_PRINT_TAG(nikonYesNo)},
|
||||
// End of list marker
|
||||
{0xffff, "(UnknownNikonAf2Tag)", "(UnknownNikonAf2Tag)", N_("Unknown Nikon Auto Focus 2 Tag"), nikonAf22Id, makerTags, unsignedByte, 1, printValue},
|
||||
};
|
||||
|
||||
@ -1731,7 +1731,7 @@ namespace Exiv2 {
|
||||
{ 0x0098, nikon3Id, EXV_COMPLEX_BINARY_ARRAY(nikonLdSet, nikonSelector) },
|
||||
{ 0x00a8, nikon3Id, EXV_COMPLEX_BINARY_ARRAY(nikonFlSet, nikonSelector) },
|
||||
{ 0x00b0, nikon3Id, EXV_BINARY_ARRAY(nikonMeCfg, nikonMeDef) },
|
||||
{ 0x00b7, nikon3Id, EXV_COMPLEX_BINARY_ARRAY(nikonAf2Set, nikonAf2Selector) },
|
||||
{ 0x00b7, nikon3Id, EXV_COMPLEX_BINARY_ARRAY(nikonAf2Set, nikonSelector) },
|
||||
{ 0x00b8, nikon3Id, EXV_BINARY_ARRAY(nikonFiCfg, nikonFiDef) },
|
||||
{ 0x00b9, nikon3Id, EXV_BINARY_ARRAY(nikonAFTCfg, nikonAFTDef) },
|
||||
{ Tag::all, nikon3Id, newTiffEntry },
|
||||
|
||||
@ -140,19 +140,7 @@ Exif.NikonMe.MultiExposureMode Long 1 0 Off
|
||||
Exif.NikonMe.MultiExposureShots Long 1 0 0
|
||||
Exif.NikonMe.MultiExposureAutoGain Long 1 0 Off
|
||||
Exif.Nikon3.HighISONoiseReduction Short 1 4 Normal
|
||||
Exif.NikonAf2.Version Undefined 4 48 51 48 48 3.00
|
||||
Exif.NikonAf2.ContrastDetectAF Byte 1 1 On
|
||||
Exif.NikonAf2.AFAreaMode Byte 1 193 193
|
||||
Exif.NikonAf2.PhaseDetectAF Byte 1 0 Off
|
||||
Exif.NikonAf2.PrimaryAFPoint Byte 1 1 1
|
||||
Exif.NikonAf2.AFPointsUsed Byte 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Exif.NikonAf2.AFImageWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFImageHeight Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.Nikon3.AFInfo2 Undefined 60 48 51 48 48 1 193 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160 23 184 15 208 11 220 7 29 1 52 1 0 0 0 0 0 0 48 51 48 48 1 193 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160 23 184 15 208 11 220 7 29 1 52 1 0 0 0 0 0 0
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 174 174
|
||||
|
||||
@ -148,7 +148,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 5057 5057
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 2304 2304
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 870 870
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 729 729
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 112 112
|
||||
Exif.NikonFi.FileNumber Short 1 4925 4925
|
||||
|
||||
@ -148,7 +148,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 246 246
|
||||
|
||||
@ -147,7 +147,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 105 105
|
||||
Exif.NikonFi.FileNumber Short 1 2057 2057
|
||||
|
||||
@ -147,7 +147,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 105 105
|
||||
Exif.NikonFi.FileNumber Short 1 2059 2059
|
||||
|
||||
@ -146,7 +146,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 825 825
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 7154 7154
|
||||
|
||||
@ -140,7 +140,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 69 69
|
||||
|
||||
@ -140,7 +140,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 102 102
|
||||
Exif.NikonFi.FileNumber Short 1 9850 9850
|
||||
|
||||
@ -145,7 +145,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 129 129
|
||||
Exif.NikonFi.FileNumber Short 1 495 495
|
||||
|
||||
@ -147,7 +147,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 5296 5296
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 2528 2528
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 984 984
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 816 816
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 1 On
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 1 Yes
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 109 109
|
||||
Exif.NikonFi.FileNumber Short 1 135 135
|
||||
|
||||
@ -130,7 +130,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 1848 1848
|
||||
|
||||
@ -141,7 +141,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 104 104
|
||||
Exif.NikonFi.FileNumber Short 1 476 476
|
||||
|
||||
@ -151,7 +151,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 3950 3950
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 2871 2871
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 435 435
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 360 360
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 1 On
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 1 Yes
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 8437 8437
|
||||
|
||||
@ -139,7 +139,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 3 3
|
||||
|
||||
@ -145,7 +145,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 161 161
|
||||
|
||||
@ -134,7 +134,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 103 103
|
||||
Exif.NikonFi.FileNumber Short 1 3811 3811
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 5900 5900
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 7154 7154
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 7154 7154
|
||||
|
||||
@ -143,7 +143,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 1147 1147
|
||||
|
||||
@ -78,7 +78,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonCb2b.Version Undefined 4 48 50 49 57 2.19
|
||||
Exif.NikonCb2b.WB_RGGBLevels Short 4 7396 31796 21644 7380 7396 31796 21644 7380
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
|
||||
@ -89,19 +89,7 @@ Exif.NikonMe.MultiExposureMode Long 1 0 Off
|
||||
Exif.NikonMe.MultiExposureShots Long 1 0 0
|
||||
Exif.NikonMe.MultiExposureAutoGain Long 1 0 Off
|
||||
Exif.Nikon3.HighISONoiseReduction Short 1 4 Normal
|
||||
Exif.NikonAf2.Version Undefined 4 48 50 48 48 2.00
|
||||
Exif.NikonAf2.ContrastDetectAF Byte 1 0 Off
|
||||
Exif.NikonAf2.AFAreaMode Byte 1 129 129
|
||||
Exif.NikonAf2.PhaseDetectAF Byte 1 4 On (73-point)
|
||||
Exif.NikonAf2.PrimaryAFPoint Byte 1 0 0
|
||||
Exif.NikonAf2.AFPointsUsed Byte 7 130 0 0 0 8 224 13 130 0 0 0 8 224 13
|
||||
Exif.NikonAf2.AFImageWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFImageHeight Short 1 270 270
|
||||
Exif.NikonAf2.AFAreaXPosition Short 1 768 768
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.Nikon3.AFInfo2 Undefined 42 48 50 48 48 0 129 4 0 130 0 0 0 8 224 13 0 0 0 14 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 50 48 48 0 129 4 0 130 0 0 0 8 224 13 0 0 0 14 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Exif.NikonAFT.AFFineTune Byte 1 0 Off
|
||||
Exif.NikonAFT.AFFineTuneIndex Byte 1 255 255
|
||||
Exif.NikonAFT.AFFineTuneAdj SByte 1 0 0
|
||||
|
||||
@ -90,7 +90,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 120 120
|
||||
Exif.NikonFi.FileNumber Short 1 939 939
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 5900 5900
|
||||
|
||||
@ -151,7 +151,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 110 110
|
||||
Exif.NikonFi.FileNumber Short 1 6176 6176
|
||||
|
||||
@ -151,7 +151,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 6115 6115
|
||||
|
||||
@ -146,7 +146,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 307 307
|
||||
Exif.NikonFi.FileNumber Short 1 1727 1727
|
||||
|
||||
@ -116,7 +116,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 101 101
|
||||
Exif.NikonFi.FileNumber Short 1 7154 7154
|
||||
|
||||
@ -140,7 +140,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 106 106
|
||||
Exif.NikonFi.FileNumber Short 1 5190 5190
|
||||
|
||||
@ -79,7 +79,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonCb2b.Version Undefined 4 48 50 49 57 2.19
|
||||
Exif.NikonCb2b.WB_RGGBLevels Short 4 7396 31796 21644 7380 7396 31796 21644 7380
|
||||
Exif.NikonFi.Version Undefined 4 0 0 0 0 ()
|
||||
|
||||
@ -79,7 +79,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonCb2b.Version Undefined 4 48 50 49 57 2.19
|
||||
Exif.NikonCb2b.WB_RGGBLevels Short 4 7396 31796 21644 7380 7396 31796 21644 7380
|
||||
Exif.NikonFi.Version Undefined 4 0 0 0 0 ()
|
||||
|
||||
@ -143,7 +143,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 100 100
|
||||
Exif.NikonFi.FileNumber Short 1 423 423
|
||||
|
||||
@ -143,7 +143,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 200 200
|
||||
Exif.NikonFi.FileNumber Short 1 4345 4345
|
||||
|
||||
@ -146,7 +146,7 @@ Exif.NikonAf2.AFAreaXPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaYPosition Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaWidth Short 1 0 0
|
||||
Exif.NikonAf2.AFAreaHeight Short 1 0 0
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 Off
|
||||
Exif.NikonAf2.ContrastDetectAFInFocus Byte 1 0 No
|
||||
Exif.NikonFi.Version Undefined 4 48 49 48 48 1.00
|
||||
Exif.NikonFi.DirectoryNumber Short 1 281 281
|
||||
Exif.NikonFi.FileNumber Short 1 7965 7965
|
||||
|
||||
@ -22,7 +22,7 @@ Exif.NikonAf22.AFAreaXPosition Short 1 3950
|
||||
Exif.NikonAf22.AFAreaYPosition Short 1 2871
|
||||
Exif.NikonAf22.AFAreaWidth Short 1 435
|
||||
Exif.NikonAf22.AFAreaHeight Short 1 360
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 On
|
||||
Exif.NikonAf22.ContrastDetectAFInFocus Byte 1 Yes
|
||||
"""
|
||||
]
|
||||
stderr = [ "" ] * len(commands)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user