使用 GDI 旋转图像
我正在使用 GDI+ 进行图像旋转。根据图像元数据,应该有 8 种不同类型的方向 (http://www.impulseadventure.com/photo/exif-orientation.html)。但我得到的所有图像都具有相同的方向,无论它们是水平方向还是垂直方向。谁能建议问题出在哪里或者我错过了什么?
谢谢!
I am working on image rotation using GDI+. As per image metadata, there should be 8 different types of orientation (http://www.impulseadventure.com/photo/exif-orientation.html). But I am getting the same orientation for all the images whether they are in Horizontal or Vertical orientation. Can anyone suggest where is the problem or am I missing something ?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几天前,我将自动旋转添加到 imageresizing.net 库 作为 AutoRotate 插件。我提供了相关的源代码,希望对您有所帮助。
仅供参考,如果您在 ASP.NET 中调整图像大小,您应该阅读这篇文章,了解如何安全地执行此操作,或者使用 ImageResizing.Net 库。
A couple days ago I added automatic rotation to the imageresizing.net library as the AutoRotate plugin. I'm including the relevant source code, which should hopefully help you.
As an FYI, if you are doing image resizing in ASP.NET, you should read this article on how to do it safely, or use the ImageResizing.Net library instead.
只是一个小改进,
我不会测试参数异常,这会消耗 CPU 周期。
Just a small improvement,
I would not test for an argumentexception, that costs CPU cycles.