- 论坛徽章:
- 0
|
大家好,有那位高人,
用IJG库并向小弟提供YUV420转jpeg图片的代码呀。
------------
如果不用IJG库也行,但我写了一个IJG compress程序不行,压缩后所有图片全是空白;这几天就不能用了,提示没有这个格式,下面是我的代码:
#include <stdio.h>
#include "jpeglib.h"
#include <stdlib.h>
JSAMPLE * image_buffer;
int imageWidth=200;
int imageHeight=200;
int main(int argc,char **argv)
{
struct jpeg_compress_struct cinfo;
struct jpeg_error_mgr jerr;
FILE * outfile;/* target file */
JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
int row_stride; /* physical row width in image buffer */
if(argc<2)
{
printf("please input your yuvimage\n");
exit(0);
}
// alloc buffer
image_buffer = (char*)malloc( imageWidth * imageHeight * 3 );
cinfo.err = jpeg_std_error(&jerr);
/* Now we can initialize the JPEG compression object. */
jpeg_create_compress(&cinfo);
if ((outfile = fopen(argv[1], "wb")) == NULL)
{
fprintf(stderr, "can't open %s\n", argv[1]);
//exit(0);
printf("%d\n", __LINE__);
/* Step 3: set parameters for compression */
cinfo.image_width =imageWidth; /* image width and height, in pixels */
cinfo.image_height =imageHeight;
cinfo.input_components = 5; /* # of color components per pixel */
cinfo.in_color_space =JCS_YCbCr; /* colorspace of input image */
jpeg_set_quality(&cinfo, 75, TRUE );
printf("%d\n", __LINE__);
jpeg_stdio_dest(&cinfo, outfile);
printf("%d\n", __LINE__);
jpeg_start_compress(&cinfo, TRUE);
row_stride = imageWidth * 3; /* JSAMPLEs per row in image_buffer */
printf("%d\n", __LINE__);
while (cinfo.next_scanline < cinfo.image_height)
{
row_pointer[0] = &image_buffer[cinfo.next_scanline * row_stride];
(void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
// fwrite(row_pointer[0],row_stride,1,outfile);
}
printf("%d\n", __LINE__);
jpeg_finish_compress(&cinfo);
/* After finish_compress, we can close the output file. */
fclose(outfile);
/* This is an important step since it will release a good deal of memory. */
jpeg_destroy_compress(&cinfo);
return 0;
}
65,1-8 82% |
|