c++8位bmp转1位

c++8位bmp转1位 void Commom::Bitmap_8To1(char* src , int width, int height ) { int widthStep = (width + 31) / 32 * 4; char* data =(char*) malloc(widthStep*height); memset(data, 0, (width + 31)
相关文章
相关标签/搜索