简体   繁体   English

将24位bmp转换为16位?

[英]Convert 24-bit bmp to 16-bit?

I know that the .NET Framework comes with an image conversion class (the System.Drawing.Image.Save method). 我知道.NET Framework附带了一个图像转换类(System.Drawing.Image.Save方法)。

But I need to convert a 24-bit (R8G8B8) bitmap image to a 16-bit (X1R5G5B5) and I really got no idea on this kind of conversion, and a 24-to-16-bit change in the bmp header wouldn't work (since we need to convert the entire image data). 但我需要将一个24位(R8G8B8)位图图像转换为16位(X1R5G5B5),我真的不知道这种转换,并且bmp头中的24到16位更改不会'工作(因为我们需要转换整个图像数据)。

Also I would like to know if I can control over the image Dither, etc. 另外我想知道我是否可以控制图像抖动等。

Ideas? 想法? Any kind of help would be appreciated. 任何形式的帮助将不胜感激。

The Format16bppRgb1555 pixel format is declared but GDI+ doesn't actually support it. 声明了Format16bppRgb1555像素格式,但GDI +实际上并不支持它。 There is no main-stream video driver or image codec that ever used that pixel format. 没有使用该像素格式的主流视频驱动程序或图像编解码器。 Something that the GDI+ designers guessed could have happened, their time machine wasn't accurate enough. GDI +设计师猜到的东西可能已经发生了,他们的时间机器不够准确。 Otherwise a pretty sloppy copy/paste from the programmer that worked on System.Drawing. 否则,程序员可以使用System.Drawing进行相当粗糙的复制/粘贴。

Rgb555 is the closest match for available hardware and codecs: 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;
}

You need to save the bitmap with an Encoder parameter specifying color depth. 您需要使用指定颜色深度的编码器参数来保存位图。

    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);

A really straightforward way to do this is to loop over the old bitmap data and covert every pair of r8-g8-b8 values to x1-r5-g5-b5, something akin to this function: 一种非常直接的方法是循环旧的位图数据并将每对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<data+len*3; p+=3)
    *(short *)newdata=transform(*(long *)data);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM