drewnoakes/metadata-extractor-dotnet
Include all TIFF string bytes in StringValue instances
オープン
#439 opened on 2025/05/20
format-tiffhelp wantedimage-queue
Repository metrics
- Stars
- (1,059 個のスター)
- PR merge metrics
- (平均マージ 11h 24m) (30d で 1 merged PR)
説明
Hi, sometimes string meta data contains actually a byte array.
I tried to get the data as byte array using
public static byte[]? GetByteArray(this Directory directory, int tagType)
Now it appears the meta data reader creates a StringValue by terminating on first null character.
Is there a work-around to force the tag to be read as byte array ?