drewnoakes/metadata-extractor-dotnet
Include all TIFF string bytes in StringValue instances
开放
#439 创建于 2025年5月20日
format-tiffhelp wantedimage-queue
仓库指标
- 星标
- (1,059 个星标)
- PR 合并指标
- (平均合并 11小时 24分钟) (30 天内合并 1 个 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 ?