每个人我都在尝试将 c++ 代码转换为 c# 。压缩位图图像的这段代码。我的 c++ 代码使用 BITMAPINFOHEADER
读取位图图像的 biBitCount,我如何在 c#(win 应用程序)中获取图像的位数?这是 C++ 代码
char *pTemp; //image data will store here
BITMAPINFOHEADER *pbminfo;
pbminfo = (BITMAPINFOHEADER *)pTemp;
if ( pbminfo->biBitCount != 1 ) // Convert 24 bit -> 1 bit
{
//some process will be done here
}