在 C# 中减少图像大小(以字节为单位)而不调整大小和质量损失
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尺寸减小通常伴随着质量减小。你不能两全其美。
Size reduction is generally accompanied by quality reduction. You cannot have it both ways.
以 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
如果你想减小图像尺寸,那么你必须修剪宽度和高度,根据这种说法,除非不可能,否则只有尺寸会减小。
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.