免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2856 | 回复: 0
打印 上一主题 下一主题

大家好,有那位高人,用IJG库并向小弟提供YUV420转jpeg图片的代码呀。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-10 09:01 |只看该作者 |倒序浏览
大家好,有那位高人,
用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%
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP