使用 C# 更改 jpeg 图像的分辨率

发布于 2024-07-18 17:16:35 字数 29 浏览 8 评论 0原文

我需要修改垂直和水平分辨率而不改变图像尺寸。

I need to modify the vertical and horizontal resolutions without changing the image dimensions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

貪欢 2024-07-25 17:16:35

查看 Bitmap.SetResolution 方法。

Check out the Bitmap.SetResolution Method.

强辩 2024-07-25 17:16:35

如果您只有 GDI,请查看此链接

您可以使用以下代码段将位图保存到JPEG文件:

bmp.Save("picture.jpg", System.Drawing.Imaging.ImageFormat.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:

bmp.Save("picture.jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
不必在意 2024-07-25 17:16:35

分辨率包含在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文