我正在使用此代码来调整图像大小。但结果并不好,我想要最好的质量。我知道它的低质量,因为我也用photoshop调整相同的图像,结果是不同的更好。我该如何解决?
private static Image resizeImage(Image imgToResize, Size size)
{
int sourceWidth = imgToResize.Width;
int sourceHeight = imgToResize.Height;
float nPercent = 0;
float nPercentW = 0;
float nPercentH = 0;
nPercentW = ((float)size.Width / (float)sourceWidth);
nPercentH = ((float)size.Height / (float)sourceHeight);
if (nPercentH < nPercentW)
nPercent = nPercentH;
else
nPercent = nPercentW;
int destWidth = (int)(sourceWidth * nPercent);
int destHeight = (int)(sourceHeight * nPercent);
Bitmap b = new Bitmap(destWidth, destHeight);
Graphics g = Graphics.FromImage((Image)b);
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
g.DrawImage(imgToResize, 0, 0, destWidth, destHeight);
g.Dispose();
return (Image)b;
}
答案 0 :(得分:3)
这是我使用的例程。也许你会发现它很有用。它是一种扩展方法,用于启动。唯一的区别是我省略了代码以保留宽高比,您可以轻松插入。
public static Image GetImageHiQualityResized(this Image image, int width, int height)
{
var thumb = new Bitmap(width, height);
using (var g = Graphics.FromImage(thumb))
{
g.SmoothingMode = SmoothingMode.HighQuality;
g.CompositingQuality = CompositingQuality.HighQuality;
g.InterpolationMode = InterpolationMode.High;
g.DrawImage(image, new Rectangle(0, 0, thumb.Width, thumb.Height));
return thumb;
}
}
此扩展方法的示例用法可能包括:
// Load the original image
using(var original = Image.FromFile(@"C:\myimage.jpg"))
using(var thumb = image.GetImageHiQualityResized(120, 80))
{
thumb.Save(@"C:\mythumb.png", ImageFormat.Png);
}
注释
默认的JPG编码和默认的PNG编码之间的区别确实非常不同。以下是使用您的示例的两个拇指,其中一个用ImageFormat.Png
保存,另一个用ImageFormat.Jpeg
保存。
PNG图片
JPEG图像
如果您确定绝对必须使用JPEG,您可能会发现此问题中原始海报所做的工作会有所帮助。它涉及将图像编解码器和编码参数配置为高质量设置。 .NET Saving jpeg with the same quality as it was loaded
如果是我,我会尽快使用PNG格式,因为它是无损的。