|
|
|
@ -20,28 +20,28 @@ using namespace Internal;
|
|
|
|
|
|
|
|
|
|
//! List of all defined Exif sections.
|
|
|
|
|
constexpr auto sectionInfo = std::array{
|
|
|
|
|
SectionInfo(SectionId::sectionIdNotSet, "(UnknownSection)", N_("Unknown section")),
|
|
|
|
|
SectionInfo(SectionId::imgStruct, "ImageStructure", N_("Image data structure")),
|
|
|
|
|
SectionInfo(SectionId::recOffset, "RecordingOffset", N_("Recording offset")),
|
|
|
|
|
SectionInfo(SectionId::imgCharacter, "ImageCharacteristics", N_("Image data characteristics")),
|
|
|
|
|
SectionInfo(SectionId::otherTags, "OtherTags", N_("Other data")),
|
|
|
|
|
SectionInfo(SectionId::exifFormat, "ExifFormat", N_("Exif data structure")),
|
|
|
|
|
SectionInfo(SectionId::exifVersion, "ExifVersion", N_("Exif version")),
|
|
|
|
|
SectionInfo(SectionId::imgConfig, "ImageConfig", N_("Image configuration")),
|
|
|
|
|
SectionInfo(SectionId::userInfo, "UserInfo", N_("User information")),
|
|
|
|
|
SectionInfo(SectionId::relatedFile, "RelatedFile", N_("Related file")),
|
|
|
|
|
SectionInfo(SectionId::dateTime, "DateTime", N_("Date and time")),
|
|
|
|
|
SectionInfo(SectionId::captureCond, "CaptureConditions", N_("Picture taking conditions")),
|
|
|
|
|
SectionInfo(SectionId::gpsTags, "GPS", N_("GPS information")),
|
|
|
|
|
SectionInfo(SectionId::iopTags, "Interoperability", N_("Interoperability information")),
|
|
|
|
|
SectionInfo(SectionId::mpfTags, "MPF", N_("CIPA Multi-Picture Format")),
|
|
|
|
|
SectionInfo(SectionId::makerTags, "Makernote", N_("Vendor specific information")),
|
|
|
|
|
SectionInfo(SectionId::dngTags, "DngTags", N_("Adobe DNG tags")),
|
|
|
|
|
SectionInfo(SectionId::panaRaw, "PanasonicRaw", N_("Panasonic RAW tags")),
|
|
|
|
|
SectionInfo(SectionId::tiffEp, "TIFF/EP", N_("TIFF/EP tags")),
|
|
|
|
|
SectionInfo(SectionId::tiffPm6, "TIFF&PM6", N_("TIFF PageMaker 6.0 tags")),
|
|
|
|
|
SectionInfo(SectionId::adobeOpi, "AdobeOPI", N_("Adobe OPI tags")),
|
|
|
|
|
SectionInfo(SectionId::lastSectionId, "(LastSection)", N_("Last section")),
|
|
|
|
|
SectionInfo{SectionId::sectionIdNotSet, "(UnknownSection)", N_("Unknown section")},
|
|
|
|
|
SectionInfo{SectionId::imgStruct, "ImageStructure", N_("Image data structure")},
|
|
|
|
|
SectionInfo{SectionId::recOffset, "RecordingOffset", N_("Recording offset")},
|
|
|
|
|
SectionInfo{SectionId::imgCharacter, "ImageCharacteristics", N_("Image data characteristics")},
|
|
|
|
|
SectionInfo{SectionId::otherTags, "OtherTags", N_("Other data")},
|
|
|
|
|
SectionInfo{SectionId::exifFormat, "ExifFormat", N_("Exif data structure")},
|
|
|
|
|
SectionInfo{SectionId::exifVersion, "ExifVersion", N_("Exif version")},
|
|
|
|
|
SectionInfo{SectionId::imgConfig, "ImageConfig", N_("Image configuration")},
|
|
|
|
|
SectionInfo{SectionId::userInfo, "UserInfo", N_("User information")},
|
|
|
|
|
SectionInfo{SectionId::relatedFile, "RelatedFile", N_("Related file")},
|
|
|
|
|
SectionInfo{SectionId::dateTime, "DateTime", N_("Date and time")},
|
|
|
|
|
SectionInfo{SectionId::captureCond, "CaptureConditions", N_("Picture taking conditions")},
|
|
|
|
|
SectionInfo{SectionId::gpsTags, "GPS", N_("GPS information")},
|
|
|
|
|
SectionInfo{SectionId::iopTags, "Interoperability", N_("Interoperability information")},
|
|
|
|
|
SectionInfo{SectionId::mpfTags, "MPF", N_("CIPA Multi-Picture Format")},
|
|
|
|
|
SectionInfo{SectionId::makerTags, "Makernote", N_("Vendor specific information")},
|
|
|
|
|
SectionInfo{SectionId::dngTags, "DngTags", N_("Adobe DNG tags")},
|
|
|
|
|
SectionInfo{SectionId::panaRaw, "PanasonicRaw", N_("Panasonic RAW tags")},
|
|
|
|
|
SectionInfo{SectionId::tiffEp, "TIFF/EP", N_("TIFF/EP tags")},
|
|
|
|
|
SectionInfo{SectionId::tiffPm6, "TIFF&PM6", N_("TIFF PageMaker 6.0 tags")},
|
|
|
|
|
SectionInfo{SectionId::adobeOpi, "AdobeOPI", N_("Adobe OPI tags")},
|
|
|
|
|
SectionInfo{SectionId::lastSectionId, "(LastSection)", N_("Last section")},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Exiv2
|
|
|
|
|