jpeg 交叉编译以及接口的使用, RGB->jpg

使用jpeg版本:jpegsrc.v9a.tar.gz

configure参数:./configure --prefix=/usr/local/jpeglib_arm/ --host=arm-none-linux-gnueabi

之后make; make install


调用jpeg接口

  1. /*
  2.     将bgr数据转换为jpg图像存储
  3.     filename: 生成的jpg文件名
  4.     width height:    传入bmp file 的宽和高
  5.     pBGRBuffer:    传入bgr数据
  6. */
  7. int convert_to_jpg(char *filename, int width, int height, unsigned char *pBGRBuffer)
  8. {
  9.     FILE *fJpg;
  10.     struct jpeg_compress_struct cinfo;
  11.     struct jpeg_error_mgr jerr;
  12.     JSAMPROW row_pointer[1];
  13.     int row_stride;

  14.     cinfo.err = jpeg_std_error(&jerr);
  15.     jpeg_create_compress(&cinfo);
  16.     fJpg = fopen(filename, "wb");
  17.     if(fJpg == NULL){
  18.         debugE("Cannot open file %s\n", filename);
  19.         return -1;
  20.     }
  21.     jpeg_stdio_dest(&cinfo, fJpg);
  22.     cinfo.image_width = width;
  23.     cinfo.image_height = height;
  24.     cinfo.input_components = 3;
  25.     cinfo.in_color_space = JCS_RGB;
  26.     jpeg_set_defaults(&cinfo);
  27.     jpeg_set_quality(&cinfo, 30, TRUE);
  28.     jpeg_start_compress(&cinfo, TRUE);
  29.     row_stride = cinfo.image_width * 3;    /* JSAMPLEs per row in image_buffer */
  30.     while (cinfo.next_scanline < cinfo.image_height) {
  31.         /* jpeg_write_scanlines expects an array of pointers to scanlines.
  32.          * Here the array is only one element long, but you could pass
  33.          * more than one scanline at a time if that's more convenient.
  34.          */
  35.         //row_pointer[0] = & pBMPBuffer[cinfo.next_scanline * row_stride];
  36.         row_pointer[0] = &pBGRBuffer[row_stride*(cinfo.image_height - cinfo.next_scanline - 1)];
  37.         (void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
  38.     }

  39.     jpeg_finish_compress(&cinfo);
  40.     jpeg_destroy_compress(&cinfo);
  41.     fclose(fJpg);

  42.     return 0;
  43. }


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值