图像调整大小 C#,VB.NET 开源库

发布于 2024-07-16 03:24:06 字数 172 浏览 5 评论 0 原文

任何人都向我指出如何将 jpg 图像调整为特定尺寸(文件大小和像素大小,例如 148 x 72 px,300 KB)。

为了实现这一点,可以调整图像质量。

它可能是一个 .NET 库/代码,但它应该免费用于商业用途/开源。

我希望它在 C# 或 VB.NET 中作为库。

Any one point me on good direction on how to resize a jpg image to exactly particular size (Both File size and pixel size Ex. 148 x 72 px , 300 KB ).

To Acheive this, Quality of images can be adjusted.

It may a .NET library /code but it should be free for commercial use / open source.

I want it in either C# or VB.NET as library.

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

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

发布评论

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

评论(1

想念有你 2024-07-23 03:24:06

您可以使用 Graphics.DrawImage 调整图像大小。 然后,您可以通过将参数传递给 Bitmap.Save 方法来调整质量 (更多信息)。 我不知道如何从文件大小获得正确的压缩参数。 您始终可以尝试多个压缩参数,直到文件大小符合您的需要。

You can use the Graphics.DrawImage to resize the image. Then you can adjust the quality by passing a parameter to the Bitmap.Save method (more info). I don't know how you can go from a file size to get the correct compression parameter. You could always try multiple compression parameters until the file size matched what you needed.

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