整理自:

http://hi.baidu.com/lewutian/item/e8eed42664ee61122a0f1c89

http://blog.csdn.net/mcgrady_tracy/article/details/7439066

1.下载编译库

下载库:

http://www.ijg.org/ 网址下面的windows版本的。本文下载的是jpegsr9a.zip。

编译库:

libjpeg,以vs2008为例, 首先要把jconfig.vc复制为jconfig.h。

打开VS2008的command line prompt命令行提示符,切换到解压的libjpeg目录下,输入"nmake -f makefile.vc"

完成后取出libjpeg.lib就行了

2.项目中引入库
将编译出来的lib目录和lib名称配置到VC的linker中,头文件引入就可以了。

3.实例代码(Jpeglib读取图像函数说明见代码注释)

  1. //// JEPGFile.cpp : Defines the entry point for the console application.
  2. ////
  3. //
  4. #include "stdafx.h"
  5. #include <stdio.h>
  6. #include <string.h>
  7. #include <stdlib.h>
  8. #include "jpeglib.h"
  9. #define PUT_2B(array,offset,value)  \
  10. (array[offset] = (char) ((value) & 0xFF), \
  11. array[offset+1] = (char) (((value) >> 8) & 0xFF))
  12. #define PUT_4B(array,offset,value)  \
  13. (array[offset] = (char) ((value) & 0xFF), \
  14. array[offset+1] = (char) (((value) >> 8) & 0xFF), \
  15. array[offset+2] = (char) (((value) >> 16) & 0xFF), \
  16. array[offset+3] = (char) (((value) >> 24) & 0xFF))
  17. void write_bmp_header(j_decompress_ptr cinfo, FILE *output_file)
  18. {
  19. //cinfo已经转换为小端模式了
  20. char bmpfileheader[14];
  21. char bmpinfoheader[40];
  22. long headersize, bfSize;
  23. int bits_per_pixel, cmap_entries;
  24. int step;
  25. /* Compute colormap size and total file size */
  26. if (cinfo->out_color_space == JCS_RGB) {
  27. if (cinfo->quantize_colors) {
  28. /* Colormapped RGB */
  29. bits_per_pixel = 8;
  30. cmap_entries = 256;
  31. } else {
  32. /* Unquantized, full color RGB */
  33. bits_per_pixel = 24;
  34. cmap_entries = 0;
  35. }
  36. } else {
  37. /* Grayscale output.  We need to fake a 256-entry colormap. */
  38. bits_per_pixel = 8;
  39. cmap_entries = 256;
  40. }
  41. step = cinfo->output_width * cinfo->output_components;
  42. while ((step & 3) != 0) step++;
  43. /* File size */
  44. headersize = 14 + 40 + cmap_entries * 4; /* Header and colormap */
  45. bfSize = headersize + (long) step * (long) cinfo->output_height;
  46. /* Set unused fields of header to 0 */
  47. memset(bmpfileheader, 0, sizeof(bmpfileheader));
  48. memset(bmpinfoheader, 0 ,sizeof(bmpinfoheader));
  49. /* Fill the file header */
  50. bmpfileheader[0] = 0x42;/* first 2 bytes are ASCII 'B', 'M' */
  51. bmpfileheader[1] = 0x4D;
  52. PUT_4B(bmpfileheader, 2, bfSize); /* bfSize */
  53. /* we leave bfReserved1 & bfReserved2 = 0 */
  54. PUT_4B(bmpfileheader, 10, headersize); /* bfOffBits */
  55. /* Fill the info header (Microsoft calls this a BITMAPINFOHEADER) */
  56. PUT_2B(bmpinfoheader, 0, 40);   /* biSize */
  57. PUT_4B(bmpinfoheader, 4, cinfo->output_width); /* biWidth */
  58. PUT_4B(bmpinfoheader, 8, cinfo->output_height); /* biHeight */
  59. PUT_2B(bmpinfoheader, 12, 1);   /* biPlanes - must be 1 */
  60. PUT_2B(bmpinfoheader, 14, bits_per_pixel); /* biBitCount */
  61. /* we leave biCompression = 0, for none */
  62. /* we leave biSizeImage = 0; this is correct for uncompressed data */
  63. if (cinfo->density_unit == 2) { /* if have density in dots/cm, then */
  64. PUT_4B(bmpinfoheader, 24, (INT32) (cinfo->X_density*100)); /* XPels/M */
  65. PUT_4B(bmpinfoheader, 28, (INT32) (cinfo->Y_density*100)); /* XPels/M */
  66. }
  67. PUT_2B(bmpinfoheader, 32, cmap_entries); /* biClrUsed */
  68. /* we leave biClrImportant = 0 */
  69. if (fwrite(bmpfileheader, 1, 14, output_file) != (size_t) 14) {
  70. printf("write bmpfileheader error\n");
  71. }
  72. if (fwrite(bmpinfoheader, 1, 40, output_file) != (size_t) 40) {
  73. printf("write bmpinfoheader error\n");
  74. }
  75. if (cmap_entries > 0) {
  76. }
  77. }
  78. void write_pixel_data(j_decompress_ptr cinfo, unsigned char *output_buffer, FILE *output_file)
  79. {
  80. int rows, cols;
  81. int row_width;
  82. int step;
  83. unsigned char *tmp = NULL;
  84. unsigned char *pdata;
  85. row_width = cinfo->output_width * cinfo->output_components;
  86. step = row_width;
  87. while ((step & 3) != 0) step++;
  88. pdata = (unsigned char *)malloc(step);
  89. memset(pdata, 0, step);
  90. // JPEG左上角的开始一行行写的数据,转换为BMP的从左下角开始一行行写的数据
  91. // 也就是JPEG最末的行放置到BMP最开始行,JPEG最开始行放置到BMP最末行就对了。
  92. tmp = output_buffer + row_width * (cinfo->output_height - 1);
  93. for (rows = 0; rows < cinfo->output_height; rows++) {
  94. for (cols = 0; cols < row_width; cols += 3) {
  95. // 大端模式转换为小端模式
  96. pdata[cols + 2] = tmp[cols + 0];
  97. pdata[cols + 1] = tmp[cols + 1];
  98. pdata[cols + 0] = tmp[cols + 2];
  99. }
  100. tmp -= row_width;
  101. fwrite(pdata, 1, step, output_file);
  102. }
  103. free(pdata);
  104. }
  105. /*读JPEG文件相当于解压文件*/
  106. int read_jpeg_file(const char *input_filename, const char *output_filename)
  107. {
  108. struct jpeg_decompress_struct cinfo;
  109. struct jpeg_error_mgr jerr;
  110. FILE *input_file;
  111. FILE *output_file;
  112. JSAMPARRAY buffer;
  113. int row_width;
  114. unsigned char *output_buffer;
  115. unsigned char *tmp = NULL;
  116. cinfo.err = jpeg_std_error(&jerr);
  117. if ((input_file = fopen(input_filename, "rb")) == NULL) {
  118. fprintf(stderr, "can't open %s\n", input_filename);
  119. return -1;
  120. }
  121. if ((output_file = fopen(output_filename, "wb")) == NULL) {
  122. fprintf(stderr, "can't open %s\n", output_filename);
  123. return -1;
  124. }
  125. // Initialization of JPEG compression objects
  126. jpeg_create_decompress(&cinfo);
  127. /* Specify data source for decompression */
  128. jpeg_stdio_src(&cinfo, input_file);
  129. /* 1.设置读取jpg文件头部,Read file header, set default decompression parameters */
  130. (void) jpeg_read_header(&cinfo, TRUE);
  131. /* 2.开始解码数据 Start decompressor */
  132. (void) jpeg_start_decompress(&cinfo);
  133. row_width = cinfo.output_width * cinfo.output_components;
  134. /* 3.跳过读取的头文件字节Make a one-row-high sample array that will go away when done with image */
  135. buffer = (*cinfo.mem->alloc_sarray)
  136. ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_width, 1);
  137. write_bmp_header(&cinfo, output_file);
  138. output_buffer = (unsigned char *)malloc(row_width * cinfo.output_height);
  139. memset(output_buffer, 0, row_width * cinfo.output_height);
  140. tmp = output_buffer;
  141. /* 4.Process data由左上角从上到下行行扫描 */
  142. while (cinfo.output_scanline < cinfo.output_height) {
  143. (void) jpeg_read_scanlines(&cinfo, buffer, 1);
  144. memcpy(tmp, *buffer, row_width);
  145. tmp += row_width;
  146. }
  147. // 写入数据,注意大小端转换和图像数据坐标表示差异在内存中的顺序
  148. write_pixel_data(&cinfo, output_buffer, output_file);
  149. free(output_buffer);
  150. (void) jpeg_finish_decompress(&cinfo);
  151. jpeg_destroy_decompress(&cinfo);
  152. /* Close files, if we opened them */
  153. fclose(input_file);
  154. fclose(output_file);
  155. return 0;
  156. }
  157. int write_jpeg_file(char * filename, int quality)
  158. {
  159. struct jpeg_compress_struct cinfo;
  160. unsigned char  * image_buffer;
  161. int i = 0;
  162. struct jpeg_error_mgr jerr;
  163. /* More stuff */
  164. FILE * outfile;  /* target file */
  165. JSAMPROW row_pointer[1]; /* pointer to JSAMPLE row[s] */
  166. int row_stride;  /* physical row width in image buffer */
  167. /* Step 1: allocate and initialize JPEG compression object */
  168. /* We have to set up the error handler first, in case the initialization
  169. * step fails.  (Unlikely, but it could happen if you are out of memory.)
  170. * This routine fills in the contents of struct jerr, and returns jerr's
  171. * address which we place into the link field in cinfo.
  172. */
  173. /*1.第一步创建jpeg compress 对象*/
  174. cinfo.err = jpeg_std_error(&jerr);
  175. /* Now we can initialize the JPEG compression object. */
  176. jpeg_create_compress(&cinfo);
  177. /* Step 2: specify data destination (eg, a file) */
  178. /* Note: steps 2 and 3 can be done in either order. */
  179. /* Here we use the library-supplied code to send compressed data to a
  180. * stdio stream. You can also write your own code to do something else.
  181. * VERY IMPORTANT: use "b" option to fopen() if you are on a machine that
  182. * requires it in order to write binary files.
  183. */
  184. /*写的方式打开文件*/
  185. if ((outfile = fopen(filename, "wb")) == NULL) {
  186. fprintf(stderr, "can't open %s\n", filename);
  187. exit(1);
  188. }
  189. jpeg_stdio_dest(&cinfo, outfile);
  190. /* Step 3: set parameters for compression */
  191. /* First we supply a description of the input image.
  192. * Four fields of the cinfo struct must be filled in:
  193. */
  194. /*2.设置 压缩参数 libjpeg中的宽度和高度是两个全局的
  195. 我这默认设置成640 480。根据demo中的说明color_space必须
  196. 得设置*/
  197. cinfo.image_width = 640; /* image width and height, in pixels */
  198. cinfo.image_height = 480;
  199. cinfo.input_components = 3;  /* # of color components per pixel */
  200. cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
  201. /* Now use the library's routine to set default compression parameters.
  202. * (You must set at least cinfo.in_color_space before calling this,
  203. * since the defaults depend on the source color space.)
  204. */
  205. jpeg_set_defaults(&cinfo);
  206. /* Now you can set any non-default parameters you wish to.
  207. * Here we just illustrate the use of quality (quantization table) scaling:
  208. */
  209. /*设置quality为2*/
  210. jpeg_set_quality(&cinfo, quality, TRUE /* limit to baseline-JPEG values */);
  211. /* Step 4: Start compressor */
  212. /* TRUE ensures that we will write a complete interchange-JPEG file.
  213. * Pass TRUE unless you are very sure of what you're doing.
  214. */
  215. /*3. 开始压缩*/
  216. jpeg_start_compress(&cinfo, TRUE);
  217. /* Step 5: while (scan lines remain to be written) */
  218. /*     jpeg_write_scanlines(...); */
  219. /* Here we use the library's state variable cinfo.next_scanline as the
  220. * loop counter, so that we don't have to keep track ourselves.
  221. * To keep things simple, we pass one scanline per call; you can pass
  222. * more if you wish, though.
  223. */
  224. row_stride = 640 * 3; /* JSAMPLEs per row in image_buffer */
  225. image_buffer = (unsigned char*)malloc(640*480*3);
  226. if (NULL == image_buffer)
  227. {
  228. return -1;
  229. }
  230. for(i=0; i< 640*480; i++)
  231. {
  232. // 4.构造的数据,数据是RGB形式Pixel
  233. image_buffer[i*3] = 255/*i*255*/;
  234. image_buffer[i*3+1] = 255/*128-(i*255)&0x7f*/;
  235. image_buffer[i*3+2] = 0/*255-(i*255)&0xff*/;
  236. }
  237. while (cinfo.next_scanline < cinfo.image_height) {
  238. /* jpeg_write_scanlines expects an array of pointers to scanlines.
  239. * Here the array is only one element long, but you could pass
  240. * more than one scanline at a time if that's more convenient.
  241. */
  242. // 5.将数据扫描输入,image_buffer数据是RGB形式Pixel
  243. row_pointer[0] = & image_buffer[cinfo.next_scanline * row_stride];
  244. (void) jpeg_write_scanlines(&cinfo, row_pointer, 1);
  245. }
  246. /* Step 6: Finish compression */
  247. // 6.完成压缩
  248. jpeg_finish_compress(&cinfo);
  249. /* After finish_compress, we can close the output file. */
  250. fclose(outfile);
  251. /* Step 7: release JPEG compression object */
  252. /* This is an important step since it will release a good deal of memory. */
  253. jpeg_destroy_compress(&cinfo);
  254. /* And we're done! */
  255. }
  256. int main(int argc, char *argv[])
  257. {
  258. read_jpeg_file("f:\\data\\animal.jpg", "f:\\data\\animal.bmp");
  259. write_jpeg_file("f:\\data\\createJpg.jpg", 2);
  260. return 0;
  261. }

Jpeglib读取jpg文件的更多相关文章

  1. Jpeglib读取jpg文件 【转】

    http://blog.csdn.net/blues1021/article/details/45424695 整理自 : http://hi.baidu.com/lewutian/item/e8ee ...

  2. Unity3D移动平台动态读取外部文件全解析

    前言: 一直有个想法,就是把工作中遇到的坑通过自己的深挖,总结成一套相同问题的解决方案供各位同行拍砖探讨.眼瞅着2015年第一个工作日就要来到了,小匹夫也休息的差不多了,寻思着也该写点东西活动活动大脑 ...

  3. python读取caffemodel文件

    caffemodel是二进制的protobuf文件,利用protobuf的python接口可以读取它,解析出需要的内容 不少算法都是用预训练模型在自己数据上微调,即加载"caffemodel ...

  4. informatica读取FTP文件

    以下为一个完整的informatica读取ftp文件,并导入到系统中. 第一步: 通过shell脚本下载压缩包文件 /server/infa_shared/crm_prod/shell/ftpFrom ...

  5. Java读取word文件,字体,颜色

    在Android读取Word文件时,在网上查看时可以用tm-extractors,但好像没有提到怎么读取Word文档中字体的颜色,字体,上下标等相关的属性.但由于需要,要把doc文档中的内容(字体,下 ...

  6. 五种方式让你在java中读取properties文件内容不再是难题

    一.背景 最近,在项目开发的过程中,遇到需要在properties文件中定义一些自定义的变量,以供java程序动态的读取,修改变量,不再需要修改代码的问题.就借此机会把Spring+SpringMVC ...

  7. Javascript写入txt和读取txt文件的方法

    文章主要介绍了Javascript写入txt和读取txt文件的方法,需要的朋友可以参考下1. 写入 FileSystemObject可以将文件翻译成文件流. 第一步: 例: 复制代码 代码如下: Va ...

  8. .NET 读取本地文件绑定到GridViewRow

    wjgl.aspx.cs: using System; using System.Collections; using System.Configuration; using System.Data; ...

  9. sparkR读取csv文件

    sparkR读取csv文件 The general method for creating SparkDataFrames from data sources is read.df. This met ...

随机推荐

  1. 了解 Spring Boot

    Spring Boot是什么,解决哪些问题? SpringBoot是伴随着Spring4.0诞生的: 从字面理解,Boot是引导的意思,因此SpringBoot帮助开发者快速搭建Spring框架: S ...

  2. System.Web.HttpRequestValidationException: 从客户端(name="<a href=''>我是晓菜鸟</a>")中检测到有潜在危险的 Request.Form 值

    这是一个比较常见的问题了,如果Web表单中有输入类似于 Html 标签之类的文本,在通过 Request.QueryString 或者 Request.Form 传递这些值的时候,就会触发这样的异常, ...

  3. SharePoint學習

    1.SharePoint 2010 Products -> SharePoint 2010 Products Configuration Wizard    配置好后,系統會自動在localho ...

  4. ueditor粘贴从word中copy的图片和文字 图片无法显示的问题

    我司需要做一个需求,就是使用富文本编辑器时,不要以上传附件的形式上传图片,而是以复制粘贴的形式上传图片. 在网上找了一下,有一个插件支持这个功能. WordPaster 安装方式如下: 直接使用Wor ...

  5. [Luogu] 树状数组

    https://www.luogu.org/problemnew/show/P3374 单点修改,区间查询 #include <iostream> #include <cstdio& ...

  6. 「LOJ 121」「离线可过」动态图连通性「按时间分治 」「并查集」

    题意 你要维护一张\(n\)个点的无向简单图.你被要求执行\(m\)条操作,加入删除一条边及查询两个点是否连通. 0:加入一条边.保证它不存在. 1:删除一条边.保证它存在. 2:查询两个点是否联通. ...

  7. redis系列(三):python操作redis

    1.安装包 pip install redis 2.使用 # -*- coding: utf-8 -*- # @Time : 18-12-7 下午4:33 # @Author : Felix Wang ...

  8. 8月清北学堂培训 Day2

    今天是赵和旭老师的讲授~ 背包 dp 模型 背包 dp 一般是给出一些“物品”,每个物品具有一些价值参数和花费参数,要求 在满足花费限制下最大化价值或者方案数. 最简单几种类型以及模型: 0/1背包: ...

  9. Django基础之ModelForm

    1. form与model的终极结合 class BookForm(forms.ModelForm): class Meta: model = models.Book fields = "_ ...

  10. SpringBoot使用Undertow做服务器

    说明 undertow,jetty和tomcat可以说是javaweb项目当下最火的三款服务器,tomcat是apache下的一款重量级的服务器,不用多说历史悠久,经得起实践的考验.然而:当下微服务兴 ...