/// /// 将bitmap转化为1位黑白像素图像(仅保留黑色,其它颜色会删除)/// /// /// public static Bitmap To1Bit(Bitmap bmp){ Bitmap tmp = bmp.Clone(new Rectangle(0, 0, bmp.Width, bmp.Height), PixelFormat.Format1bppIndexed); return tmp;}
京公网安备 11010502049817号