在 C# 中减少图像大小(以字节为单位)而不调整大小和质量损失

发布于 2024-09-03 06:21:51 字数 162 浏览 8 评论 0原文

我正在使用 C#.NET 4.0

我有一个 jpeg 图像,我想减少其大小(以字节为单位)。我不想以高度和宽度的方式更改图像大小,也不想失去图像质量。减少一些质量不是问题。我尝试将其设为缩略图,但它会根据高度和宽度减小尺寸。

我找不到任何解决方案。 任何类型的帮助将不胜感激..

I m using C#.NET 4.0

I have an jpeg image and i want to reduce its size in bytes .I don't want to change the image size in manner of height and width and not want to lose image quality.Some bit of reduce quality is not an issue. I try to make it a thumbnail image but it reduce the size according to height and width.

I can't found any solution.
Any type help will be appreciated..

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

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

发布评论

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

评论(3

萧瑟寒风 2024-09-10 06:21:51

尺寸减小通常伴随着质量减小。你不能两全其美。

Size reduction is generally accompanied by quality reduction. You cannot have it both ways.

日裸衫吸 2024-09-10 06:21:51

以 90% 质量保存 jpeg(通常可以提供良好的图像质量),然后将大小与原始 jpeg 文件进行比较怎么样?
像这样的事情:
新的jpeg <旧的 jpeg ?新 jpeg : 旧 jpeg

How about saving jpeg at 90% quality (which usually provides good quality of an image) and then comparing size with your original jpeg file.
Something like this:
new jpeg < old jpeg ? new jpeg : old jpeg

说好的呢 2024-09-10 06:21:51

如果你想减小图像尺寸,那么你必须修剪宽度和高度,根据这种说法,除非不可能,否则只有尺寸会减小。

If you want reduce the image size then you have to trim the width and height, according to that only the size reduces unless it is not possible.

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