drewnoakes / metadata-extractor-dotnet

Extracts Exif, IPTC, XMP, ICC and other metadata from image, video and audio files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Long Title from jpeg Truncated

cmiles opened this issue · comments

ExifTool and Windows File Properties report the Title of the included image as "2020 05 Blooming Paloverde and Saguaros with Ragged Top and Walcott Peak in the Background" - this is the value I expected based on the title entered into Lightroom. The relevant line from ExifTool output:

Title: 2020 05 Blooming Paloverde and Saguaros with Ragged Top and Walcott Peak in the Background

However the data I am seeing from metadata-extractor appears to truncate the Title:

517 | IPTC | Object Name | "2020 05 Blooming Paloverde and Saguaros with Ragged Top and Walc"

Notes:

  • I have at least one other example of this behavior
  • These files are exports from Lightroom 9.2.1
  • .NET Core 3.1.300-preview-015135
  • MetadataExtractor from nuget version 2.4.0
  • Could be related to #308 - I haven't dug into the details enough to say, although would note related to that discussion that while the format here could well be technically incorrect Lightroom producing it might make it more worth working around?
  • BitmapSource BitmapMetadata Title shows the complete/correct Title.

2020-05-Blooming-Paloverde-and-Saguaros-with-Ragged-Top-and-Walcott-Peak-in-the-Background

Thanks @paperboyo - that was exactly what I needed - because all tests had been with shorter titles I had never thought about/realized that the Title would be written differently into IPTC and XMP, obvious now that I see it! Thanks again for comment and information!!!