c# - jpg 图像的 'Tags' 和 'Authors' 的 EXIF 标记和十六进制代码

标签 c# exif

我无法将“标签”和“作者”的实际 EXIF 标签关联起来,您可以在图像属性中看到这些标签。有人能帮我看看它对应的是哪一个吗?

ps。我指的是 EXIF 标签列表 here on MSDN -

Image properties

最佳答案

这是我对属性的猜测:

作者 = PropertyTagArtist (0x013B)

(Null-terminated character string that specifies the name of the person who created the image.)

标签 = PropertyTagExifUserComment (0x9286)

Comment tag. A tag used by EXIF users to write keywords or comments about the image besides those in PropertyTagImageDescription and without the character-code limitations of the PropertyTagImageDescription tag.

我根据OP示例屏幕截图在Windows资源管理器中编辑了一个jpeg并运行它ExifTool 。 输出包含我为 Author 作为 ArtistXP AuthorCreator 添加的值。它将我为 Tags 添加的值列为 XP keywordsSubjectLast Keyword XMP

enter image description here

关于c# - jpg 图像的 'Tags' 和 'Authors' 的 EXIF 标记和十六进制代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14756952/

相关文章:

c# - Azure 服务总线消息泵真的是事件驱动的吗?

c# - 如何创建在尝试打开另一个实例时恢复打开窗口的单实例 WPF 应用程序?

c# - 高 DPI 主屏幕的 Horizo​​ntalOffset 方向错误

jpeg - 将大量自定义数据添加到 jpg 图像文件中

c# - 从 COM TLB 创建头文件

c# - 结构可以从 C# 中的类派生吗?

ruby-on-rails - 如何使用carrierwave从图像中删除EXIF(相机)数据?

c++ - JPEG - 从文件中读取焦距

python - 将 GPS 坐标从有理分数转换为度数

php - 在 PHP 中将 JPG/GIF 图像转换为 PNG?