| 前阶段发现网站“图文报道”的缩略图生成的质量不好,经过在MSDN上查找,果真有控制无组件上生高质量缩略图的方法,已经经过调试,效果果然不一样:
Image image = new Bitmap("GrapeBunch.bmp"); int width = image.Width; int height = image.Height;
// Shrink the image using high-quality interpolation. e.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic; e.Graphics.DrawImage( image, new Rectangle(290, 250, (int)(0.6 * width), (int)(0.6 * height)), // destination rectangle 0, 0, & …… |