当前位置 博文首页 > jiamianshiye_16_com的专栏:jpeg 交叉编译以及接口的使用, RGB-

    jiamianshiye_16_com的专栏:jpeg 交叉编译以及接口的使用, RGB-

    作者:[db:作者] 时间:2021-06-21 12:35

    使用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. }