【发布时间】:2011-05-14 15:25:44
【问题描述】:
【问题讨论】:
【问题讨论】:
尝试使用下一个
var bmp = new Bitmap(yourImage.Width, yourImage.Height, System.Drawing.Imaging.PixelFormat.Format16bppRgb555);
using (var gr = Graphics.FromImage(bmp))
gr.DrawImage(yourImage, new Rectangle(0, 0, yourImage.Width, yourImage.Height));
bmp - 将具有 16 位质量。将PixelFormat指定为您想要的内容
【讨论】: