Open
Description
Ran into an issue working with certain images exported from photomechanic.
Looks like it's appending multiple null values to the end of the XMP data.
I was able to pinpoint the problem and fix it here.
taglib-sharp/src/TaglibSharp/Xmp/XmpTag.cs
Line 261 in c853d26
From
if (data[data.Length - 1] == '\0')
To
while (data.Length > 0 && data[data.Length - 1] == '\0)
Metadata
Metadata
Assignees
Labels
No labels