RBG数据封装为BMP图片

百度百科关于BMP文件的格式讲的相当详细.还是有注意点:

  • long 占用的是8个字节,网上的代码很多都有问题
  • attribute ((packed)) 是1字节对齐的意思,如果不加这段代码生成的图片就有问题

下面是完整代码:

typedef int32_t LONG;
typedef uint32_t DWORD;
typedef unsigned short WORD;

typedef struct {
    WORD    bfType;
    DWORD   bfSize;
    WORD    bfReserved1;
    WORD    bfReserved2;
    DWORD   bfOffBits;
} __attribute__ ((packed)) BMPFILEHEADER_T;

typedef struct{
    DWORD      biSize;
    LONG       biWidth;
    LONG       biHeight;
    WORD       biPlanes;
    WORD       biBitCount;
    DWORD      biCompression;
    DWORD      biSizeImage;
    LONG       biXPelsPerMeter;
    LONG       biYPelsPerMeter;
    DWORD      biClrUsed;
    DWORD      biClrImportant;
} __attribute__ ((packed)) BMPINFOHEADER_T;

void savebmp(uint8_t * pdata, char * bmp_file, int width, int height )
{      //分别为rgb数据,要保存的bmp文件名,图片长宽
    int size = width*height*3*sizeof(char); // 每个像素点3个字节
    // 位图第一部分,文件信息
    BMPFILEHEADER_T bfh;
    bfh.bfType = (WORD)0x4d42;  //bm
    bfh.bfSize = size  // data size
    + sizeof( BMPFILEHEADER_T ) // first section size
    + sizeof( BMPINFOHEADER_T ) // second section size
    ;
    bfh.bfReserved1 = 0; // reserved
    bfh.bfReserved2 = 0; // reserved
    bfh.bfOffBits = sizeof( BMPFILEHEADER_T )+ sizeof( BMPINFOHEADER_T );//真正的数据的位置
    
    // 位图第二部分,数据信息
    BMPINFOHEADER_T bih;
    bih.biSize = sizeof(BMPINFOHEADER_T);
    bih.biWidth = width;
    bih.biHeight = -height;//BMP图片从最后一个点开始扫描,显示时图片是倒着的,所以用-height,这样图片就正了
    bih.biPlanes = 1;//为1,不用改
    bih.biBitCount = 24;
    bih.biCompression = 0;//不压缩
    bih.biSizeImage = size;
    bih.biXPelsPerMeter = 2835 ;//像素每米
    bih.biYPelsPerMeter = 2835 ;
    bih.biClrUsed = 0;//已用过的颜色,24位的为0
    bih.biClrImportant = 0;//每个像素都重要
    
/*  C语言写法
    FILE * fp = fopen( bmp_file,"wb" );
    if( !fp ) return;
    
    fwrite( &bfh, 8, 1,  fp );//由于linux上4字节对齐,而信息头大小为54字节,第一部分14字节,第二部分40字节,所以会将第一部分补齐为16自己,直接用sizeof,打开图片时就会遇到premature end-of-file encountered错误
    fwrite(&bfh.bfReserved2, sizeof(bfh.bfReserved2), 1, fp);
    fwrite(&bfh.bfOffBits, sizeof(bfh.bfOffBits), 1, fp);
    fwrite( &bih, sizeof(BMPINFOHEADER_T),1,fp );
    fwrite(pdata,size,1,fp);
    fclose( fp );
*/
    NSMutableData *dataM = [NSMutableData data];
    [dataM appendBytes:&bfh length:14];//由于字节对齐问题,此处不能用sizeof
    [dataM appendBytes:&bih length:sizeof(BMPINFOHEADER_T)];
    [dataM appendBytes:pdata length:size];
//    [dataM writeToFile:@"/Users/apple/Desktop/tb.bmp" atomically:YES];
}

你可能感兴趣的:(RBG数据封装为BMP图片)