我正在调整位图图像的大小。结果是质量下降的图片。
我正在使用System.Graphics
进行缩放。
e.Graphics.DrawImage(image,new Rectangle(10, 250, (int)(0.6 * width), (int)(0.6 * height)), 0, 0, width, height, GraphicsUnit.Pixel);
答案 0 :(得分:0)
在绘制图像之前,应将插值模式设置为双三次插值:
e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
此模式可生成最高质量的变换图像。