缩放后图像质量下降

时间:2014-08-22 23:36:50

标签: c# image-processing

我正在调整位图图像的大小。结果是质量下降的图片。 我正在使用System.Graphics进行缩放。

e.Graphics.DrawImage(image,new Rectangle(10, 250, (int)(0.6 * width), (int)(0.6 * height)), 0, 0,    width, height, GraphicsUnit.Pixel);

1 个答案:

答案 0 :(得分:0)

在绘制图像之前,应将插值模式设置为双三次插值:

e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

此模式可生成最高质量的变换图像。