使用 C# 更改 jpeg 图像的分辨率
我需要修改垂直和水平分辨率而不改变图像尺寸。
I need to modify the vertical and horizontal resolutions without changing the image dimensions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 Bitmap.SetResolution 方法。
Check out the Bitmap.SetResolution Method.
如果您只有 GDI,请查看此链接。
您可以使用以下代码段将位图保存到JPEG文件:
If all you have is GDI, have a look at this link.
You can save the Bitmap to a JPEG file using this snippet:
分辨率包含在 JPEG 文件内的 EXIF 标记中。
下面的一篇文章提供了在 C# 中执行类似操作的源代码:
http://www. codeproject.com/KB/graphics/EXIF_tag_Editor.aspx
The resolution is contained in EXIF tags within the JPEG file.
Here's one article that gives source code for doing similar things in C#:
http://www.codeproject.com/KB/graphics/EXIF_tag_Editor.aspx