新的EXIF标记总是"未知标记"

时间:2016-03-07 13:59:21

标签: c# image metadata exif

这是我向图片添加一些自定义EXIF标签的方法:

PropertyItem propItem = file.PropertyItems[0];
propItem.Id = //ID
propItem.Type = 2;
propItem.Value = //Value
propItem.Len = //Length
file.SetPropertyItem(propItem);

可以找到示例here

但标签没有名称:

All tags are unknown

如何为PropertyItem添加名称?

0 个答案:

没有答案