我有一个签名的图像我试图保存为1 bpp位图以节省文件空间.完整的.NET Framework具有枚举PixelFormat.Format1bppIndexed,但.NET Compact Framework不支持它.
解决方法
我过去必须这样做才能产生黑&通过蓝牙打印的白色报告(彩色或灰度图像对于打印机的缓冲区而言太大).原来我必须使用本机代码创建图像.
这是一个片段:
private void CreateUnmanagedResources() { // for safety,clean up anything that was already allocated ReleaseUnmanagedResources(); bih = new BITMAPINFOHEADER(); bih.biBitCount = 1; bih.biClrImportant = 0; bih.biClrUsed = 0; bih.biCompression = 0; bih.biHeight = m_cy; bih.biPlanes = 1; bih.biSize = (uint)(Marshal.SizeOf(typeof(BITMAPINFOHEADER)) - 8); bih.biSizeImage = 0; bih.biWidth = m_cx; bih.biXPelsPerMeter = 0; bih.biYPelsPerMeter = 0; bih.clr2 = 0xffffff; bih.clr1 = 0x0; hDC = Win32.CreateCompatibleDC(IntPtr.Zero); pBits = IntPtr.Zero; hBitmap = Win32.CreateDIBSection(hDC,bih,1,ref pBits,IntPtr.Zero,0); hbmOld = Win32.SelectObject(hDC,hBitmap); } private void ReleaseUnmanagedResources() { if (hbmOld != IntPtr.Zero) Win32.SelectObject(hDC,hbmOld); if(hBitmap != IntPtr.Zero) Win32.DeleteObject(hBitmap); if (hDC != IntPtr.Zero) Win32.DeleteDC(hDC); }
然后我使用Graphics.FromHdc获取一个托管图形对象,我可以将报告绘制到.
我使用BinaryWriter进行了保存,但是当Bitmap类没有Save时,那是在CF 1.0天内,所以你在那里自由而清晰.