将24位bmp转换为16位?

我知道.NET Framework附带了一个图像转换类(System.Drawing.Image.Save方法)。

但我需要将24位(R8G8B8)位图图像转换为16位(X1R5G5B5),我真的不知道这种转换,并且bmp头中的24到16位更改不会’工作(因为我们需要转换整个图像数据)。

另外我想知道我是否可以控制图像抖动等。

想法? 任何forms的帮助将不胜感激。

声明了Format16bppRgb1555像素格式,但GDI +实际上并不支持它。 没有使用该像素格式的主流video驱动程序或图像编解码器。 GDI +设计师猜测可能发生的事情,他们的时间机器不够准确。 否则,程序员可以使用System.Drawing进行非常粗略的复制/粘贴。

Rgb555是最接近的硬件和编解码器匹配:

public static Bitmap ConvertTo16bpp(Image img) { var bmp = new Bitmap(img.Width, img.Height, System.Drawing.Imaging.PixelFormat.Format16bppRgb555); using (var gr = Graphics.FromImage(bmp)) gr.DrawImage(img, new Rectangle(0, 0, img.Width, img.Height)); return bmp; } 

您需要使用指定颜色深度的编码器参数来保存位图。

  myEncoder = Encoder.ColorDepth; myEncoderParameters = new EncoderParameters(1); // Save the image with a color depth of 24 bits per pixel. myEncoderParameter = new EncoderParameter(myEncoder, 24L); myEncoderParameters.Param[0] = myEncoderParameter; myBitmap.Save("MyBitmap.bmp", myImageCodecInfo, myEncoderParameters); 

一种非常直接的方法是循环旧的位图数据并将每对r8-g8-b8值转换为x1-r5-g5-b5,类似于此函数:

 char condense(char i) { return (char)(i*255.0f/31.0f); } short transform(long input)// note that the last 8 bytes are ignored { return condense(input&0xff) || (condense((input&0xff00)>>8)<<5) || (condense((intput&0xff0000)>>16)<<10); } // and somewhere in your program { int len; // the length of your data in pixels char *data; // your data char *newdata; // this is where you store the new data; make sure it's allocated for(char *p=data; p