c# – 为什么System.Drawing.Image.GetPropertyItem在Windows XP2003上的行为与Windows 7相比有所不同

c# – 为什么System.Drawing.Image.GetPropertyItem在Windows XP2003上的行为与Windows 7相比有所不同,第1张

概述我试图使用System.Drawing. Image.GetPropertyItem(0x0112)读取方向Exif值. 这在Windows 7和Windows 2008 R2上运行正常,但在Windows XP / Windows Server 2003上失败(获取“无法找到属性”错误). 在Windows XP / 2003上,如果我遍历可用属性(使用System.Drawing.Image的 我试图使用System.Drawing. Image.GetPropertyItem(0x0112)读取方向Exif值.

这在Windows 7和Windows 2008 R2上运行正常,但在windows XP / windows Server 2003上失败(获取“无法找到属性”错误).

在windows XP / 2003上,如果我遍历可用属性(使用System.Drawing.Image的PropertyItems属性),我只得到0x5090(PropertyTagluminancetable)和0x5091(PropertyTagChrominancetable)

使用windows 7 / windows 2008中的完全相同的图像,我得到18个属性,其中一个是0x0112.

我怀疑这可能与Vista和更高版本的windows有更新版本的GDI这一事实有关.有没有办法让这个在windows XP / 2003上工作,而不必编写代码来读取和写入Exif数据?

解决方法 NuGet上有一个名为ExifReader的库和一个随附的CodeProject文章 here.

以下代码应该用于获取方向,您可以使用ExifTags的其他枚举来获取其他元数据:

object result;var reader = new ExifReader("c:\temp\test\sample.jpg");reader.GetTagValue(ExifTags.OrIEntation,out result);var orIEntation = Convert.ToInt32(result);

我使用.Net 4在windows XP 32位SP3上使用this image进行了测试,它返回了1的方向,这似乎是正确的.

总结

以上是内存溢出为你收集整理的c# – 为什么System.Drawing.Image.GetPropertyItem在Windows XP / 2003上的行为与Windows 7相比有所不同全部内容,希望文章能够帮你解决c# – 为什么System.Drawing.Image.GetPropertyItem在Windows XP / 2003上的行为与Windows 7相比有所不同所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1230272.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存