Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions internal/parser/tiff/makernote/sony/lookup.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
package sony

// sonyTagNames maps Sony MakerNote tag IDs to human-readable names.
// Based on ExifTool Sony tag documentation.
var sonyTagNames = map[uint16]string{
// Basic camera info
0x0102: "Quality",
0x0104: "FlashExposureComp",
0x0105: "Teleconverter",
0x0112: "WhiteBalanceFineTune",
0x0114: "CameraSettings",
0x0115: "WhiteBalance",
0x0116: "ExtraInfo",
0x0e00: "PrintIM",

// Image settings
0x1000: "MultiBurstMode",
0x1001: "MultiBurstImageWidth",
0x1002: "MultiBurstImageHeight",
0x1003: "Panorama",

// Focus info
0x2001: "PreviewImage",
0x2002: "Rating",
0x2004: "Contrast",
0x2005: "Saturation",
0x2006: "Sharpness",
0x2007: "Brightness",
0x2008: "LongExposureNoiseReduction",
0x2009: "HighISONoiseReduction",
0x200a: "HDR",
0x200b: "MultiFrameNoiseReduction",
0x200e: "PictureEffect",
0x200f: "SoftSkinEffect",
0x2010: "VignettingCorrection",
0x2011: "LateralChromaticAberration",
0x2012: "DistortionCorrection",
0x2013: "WBShiftAB_GM",
0x2014: "AutoPortraitFramed",
0x2016: "FaceInfo",
0x201a: "ElectronicFrontCurtainShutter",
0x201b: "FocusMode",
0x201c: "AFAreaModeSetting",
0x201d: "FlexibleSpotPosition",
0x201e: "AFPointSelected",
0x2020: "AFPointsUsed",
0x2021: "FocalPlaneAFPointsUsed",
0x2022: "MultiFrameNREffect",
0x2023: "ShotInfo",
0x2027: "AFMicroAdj",
0x2028: "ExposureProgram",
0x2029: "WBShiftAB_GM_Precise",
0x3000: "ShotInfo",

// Serial and model
0x2031: "SerialNumber",

// Sony-specific
0xb000: "FileFormat",
0xb001: "SonyModelID",
0xb020: "CreativeStyle",
0xb021: "ColorTemperature",
0xb022: "ColorCompensationFilter",
0xb023: "SceneMode",
0xb024: "ZoneMatching",
0xb025: "DynamicRangeOptimizer",
0xb026: "ImageStabilization",
0xb027: "LensID",
0xb028: "MinoltaMakerNote",
0xb029: "ColorMode",
0xb02a: "LensSpec",
0xb02b: "FullImageSize",
0xb02c: "PreviewImageSize",
0xb040: "Macro",
0xb041: "ExposureMode",
0xb042: "FocusMode",
0xb043: "AFMode",
0xb044: "AFIlluminator",
0xb047: "Quality",
0xb048: "FlashLevel",
0xb049: "ReleaseMode",
0xb04a: "SequenceNumber",
0xb04b: "AntiBlur",
0xb04e: "LongExposureNoiseReduction",
0xb04f: "DynamicRangeOptimizer",
0xb050: "HighISONoiseReduction",
0xb052: "IntelligentAuto",
0xb054: "WhiteBalance",
}
Loading
Loading