jpeg格式是一种针对相片影像而广泛使用的一种失真压缩标准,其压缩技术十分先进,用有损压缩方式去除冗余的图像数据,在获得极高压缩率的同时,能展现十分丰富生动的图像,能用最少的磁盘空间得到较好的图像品质。由于其尺寸较小,能够较快地在网络上传输,因此在数码相机、网页等领域均广泛应用到jpeg图像格式。笔者此处就移植libjpeg开源库来应用jpeg作一个简单的介绍。

1. 代码准备

libjpeg源码,libjpeg是一个完全用c语言编写的库,包含了被广泛使用的jpeg编码、jpeg解码和其它的jpeg功能的实现,这个库由独立的jpeg工作组维护。请读者自行到官网下载最新的源码。

s3c2416启动代码工程,启动代码是s3c2416/50/51这系列arm9芯片在运行用户c代码main函数之前必须先运行的代码,启动代码支持sd、Nand启动,为用户设置系统时钟,初始化内存,自动识别启动设备并搬移代码到RAM,MMU映射,中断管理等,支持x、ymodem文件传输协议,代码可直接通过串口下载进RAM执行,用户只需专注于用c开发其它功能函数即可。关于启动代码以及启动代码的实现过程,笔者前面章节有非常详细的介绍。此处在MDK下开发,下载”MDK启动代码工程应用实例”中的启动代码源码。

用户代码,用c开发的所有功能代码,其中,用户代码入口为main()函数,在这里用libjpeg库实现在屏上显示jpeg图像以及屏幕截图保存成jpeg图片。

2. 标准io库函数

libjpeg由于其开源免费,对桌面操作系统均有良好的支持,因此在linux、windows操作系统下均常用libjpeg来编解码jpeg图片。libjpeg以及例程使用了标准io库函数,如文件操作fopen、fread、fwrite等;输入、输出、错误流函数printf、fprintf等。对于嵌入式开发来说,所有的io操作均是面对特定设备,编译器的标准c库是无法统一实现的,应由用户去实现。在arm编译器中,是使用一种半主机的模式,当用户使用了标准io库函数时,默认情况下,编译器是通过一组定义好的软中断来把io应用请求传送至运行调试器的主机,如用printf和scanf来使用主机的屏幕以及键盘,需要jtag的支持。一旦目标板脱离主机,需单独运行时,在半主机模式下是无法运行,因为io软中断请求无法得到处理。因此对于libjpeg移植,我们必须先对所使用到的io库函数进行重定向,如把输入、输出、错误流重定向到串口,把文件操作重定向到对sd卡的文件操作。此处我们在sd卡中采用的是fatfs文件系统,关于fatfs的移植,笔者在前面的章节有详细的介绍,此处不再详述。在MDK中,标准io库函数最终是通过系统调用接口来完成实质的io请求,我们必须在这些系统调用接口上重定向为目标板上特定设备的请求操作。对于linux操作系统,标准io库函数最终也是通过系统调用,从用户态转到内核态,通过系统api完成实质的io请求操作。在Retarget.c中我们实现所有的标准io库函数的重定向,该部分的代码如下:

  1. #include <stdint.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <rt_sys.h>
  6. #include "ff.h"
  7. #include "diskio.h"
  8. #include "UART0.h"
  9. #pragma import (__use_no_semihosting_swi)
  10. #defineSTDIO 1
  11. /* Standard IO device handles. */
  12. #define STDIN 0x1
  13. #define STDOUT 0x2
  14. #define STDERR 0x3
  15. /* Standard IO device name defines. */
  16. const char __stdin_name[] = "STDIN";
  17. const char __stdout_name[] = "STDOUT";
  18. const char __stderr_name[] = "STDERR";
  19. struct __FILE {int handle; /* Add whatever you need here */ };
  20. #ifdef STDIO
  21. /*-----------------------------------------------------------------------------
  22. Write character to the Serial Port
  23. *----------------------------------------------------------------------------*/
  24. int sendchar(int c) {
  25. if (c == '\n') {
  26. Uart0_SendByte('\r');
  27. }
  28. Uart0_SendByte(c);
  29. return (c);
  30. }
  31. /*-----------------------------------------------------------------------------
  32. Read character from the Serial Port
  33. *----------------------------------------------------------------------------*/
  34. int getkey(void) {
  35. int ch = Uart0_ReceiveByte();
  36. if (ch < 0) {
  37. return 0;
  38. }
  39. return ch;
  40. }
  41. #endif
  42. /*---------------------------_ttywrch ---------------------------------------*/
  43. void _ttywrch(int ch) {
  44. #ifdef STDIO
  45. sendchar (ch);
  46. #endif
  47. }
  48. /*---------------------------_sys_open --------------------------------------*/
  49. FILEHANDLE _sys_open (const char *name, int openmode) {
  50. FRESULT Res;
  51. FILEHANDLE fh;
  52. BYTE Mode = FA_READ;
  53. /* Register standard Input Output devices. */
  54. if (strcmp(name, "STDIN") == 0) {
  55. return (STDIN);
  56. }
  57. if (strcmp(name, "STDOUT") == 0) {
  58. return (STDOUT);
  59. }
  60. if (strcmp(name, "STDERR") == 0) {
  61. return (STDERR);
  62. }
  63. if (openmode & OPEN_W) {
  64. Mode|= FA_WRITE | FA_OPEN_ALWAYS;
  65. Mode&= ~FA_READ;
  66. }
  67. if (openmode & OPEN_PLUS) {
  68. Mode|= FA_WRITE | FA_READ;
  69. }
  70. if (openmode & OPEN_A) {
  71. Mode|= FA_OPEN_ALWAYS;
  72. }
  73. fh = (FILEHANDLE)malloc(sizeof(FIL));
  74. if (fh == NULL) {
  75. return -1;
  76. }
  77. Res = f_open((FIL *)fh, name, Mode);
  78. if (Res == RES_OK) {
  79. return fh;
  80. } else {
  81. free((FIL *)fh);
  82. return -1;
  83. }
  84. }
  85. /*---------------------------_sys_close -------------------------------------*/
  86. int _sys_close(FILEHANDLE fh) {
  87. FRESULT Res;
  88. if (fh > 0 && fh < 4) {
  89. return (0);
  90. }
  91. Res = f_close((FIL *)fh);
  92. free((FIL *)fh);
  93. if (Res == RES_OK) {
  94. return 0;
  95. }
  96. return -1;
  97. }
  98. /*---------------------------_sys_write -------------------------------------*/
  99. int _sys_write(FILEHANDLE fh, const uint8_t *buf, uint32_t len, int32_t mode) {
  100. FRESULT Res;
  101. UINT ByteWrite;
  102. #ifdef STDIO
  103. if (fh > 0 && fh < 4) {
  104. if (fh == STDOUT) {
  105. /* Standard Output device. */
  106. for ( ; len; len--) {
  107. sendchar (*buf++);
  108. }
  109. return (0);
  110. } else {
  111. return (-1);
  112. }
  113. }
  114. #endif
  115. #if!(_FS_READONLY)
  116. Res = f_write((FIL *)fh, buf, len,&ByteWrite);
  117. if (Res == RES_OK) {
  118. if(ByteWrite < len) {
  119. return (len-ByteWrite);
  120. }
  121. return 0;
  122. }
  123. #endif
  124. return -1;
  125. }
  126. /*---------------------------_sys_read --------------------------------------*/
  127. int _sys_read(FILEHANDLE fh, uint8_t *buf, uint32_t len, int32_t mode) {
  128. FRESULT Res;
  129. UINT ByteRead;
  130. #ifdef STDIO
  131. if (fh > 0 && fh < 4) {
  132. if (fh == STDIN) {
  133. /* Standard Input device. */
  134. for ( ; len; len--) {
  135. *buf++ = getkey ();
  136. }
  137. return (0);
  138. } else {
  139. return (-1);
  140. }
  141. }
  142. #endif
  143. Res = f_read((FIL *)fh, buf, len,&ByteRead);
  144. if (Res == RES_OK) {
  145. if(ByteRead < len) {
  146. return (len-ByteRead);
  147. }
  148. return 0;
  149. }
  150. return -1;
  151. }
  152. /*---------------------------_sys_istty -------------------------------------*/
  153. int _sys_istty(FILEHANDLE fh) {
  154. if (fh > 0 && fh < 4) {
  155. return (1);
  156. }
  157. return (0);
  158. }
  159. /*---------------------------_sys_seek --------------------------------------*/
  160. int _sys_seek(FILEHANDLE fh, long pos) {
  161. FRESULT Res;
  162. if (fh > 0 && fh < 4) {
  163. return (-1);
  164. }
  165. #if_FS_MINIMIZE < 3
  166. Res = f_lseek((FIL *)fh, pos);
  167. if (Res == RES_OK) {
  168. return 0;
  169. }
  170. #endif
  171. return (-1);
  172. }
  173. /*---------------------------_sys_ensure ------------------------------------*/
  174. int _sys_ensure(FILEHANDLE fh) {
  175. FRESULT Res;
  176. if (fh > 0 && fh < 4) {
  177. return (-1);
  178. }
  179. #if!(_FS_READONLY)
  180. Res = f_sync((FIL *)fh);
  181. if (Res == RES_OK) {
  182. return 0;
  183. }
  184. #endif
  185. return -1;
  186. }
  187. /*---------------------------_sys_flen --------------------------------------*/
  188. long _sys_flen(FILEHANDLE fh) {
  189. if (fh > 0 && fh < 4) {
  190. return (0);
  191. }
  192. return f_tell((FIL *)fh);
  193. }
  194. /*---------------------------_sys_tmpnam ------------------------------------*/
  195. int _sys_tmpnam(char *name, int sig, unsigned maxlen) {
  196. return (1);
  197. }
  198. /*---------------------------_sys_command_string ----------------------------*/
  199. char* _sys_command_string (char *cmd, int len) {
  200. return (cmd);
  201. }
  202. /*---------------------------_sys_exit --------------------------------------*/
  203. void _sys_exit(int return_code) {
  204. /* Endless loop. */
  205. while (1);
  206. }

3. libjpeg移植

首先解压从官网下载的libjpeg源码,有很多的文件,其中以j命名开头的.h、.c文件均是源码文件,其它的有Makefile、shell脚本以及例程代码等,详细信息以及libjpeg的使用请参考源码包中的文档。把jpeg源码文件提取出加入到MDK工程,在libjpeg源码包中还包含读写bmp、gif等例程源码,可根据需要提取加入工程。此处由于重定向了标准io库函数,libjpeg内存分配也采用默认的c库malloc/free函数,因此,移植无需任何的修改,加入工程即可进行编译。

4. 显示jpeg图片

加入了文件系统fatfs,并对io库函数进行重定向以后,就可以用libjpeg库函数进行jpeg图片的编解码了。目前大量基于桌面操作系统的libjpeg应用例程均无需作太多的修改就可以应用到我们的嵌入式系统中。此处完全采用libjpeg源码包中的jpeg解压例程,但解压的像素数据输出到屏上进行显示,当然也可以输出到一块缓存中,再对缓存进行图像处理等。

  1. struct my_error_mgr {
  2. struct jpeg_error_mgr pub; /* "public" fields */
  3. jmp_buf setjmp_buffer; /* for return to caller */
  4. };
  5. typedef struct my_error_mgr * my_error_ptr;
  6. void my_error_exit (j_common_ptr cinfo)
  7. {
  8. /* cinfo->err really points to amy_error_mgr struct, so coerce pointer */
  9. my_error_ptr myerr = (my_error_ptr)cinfo->err;
  10. /* We could postpone this untilafter returning, if we chose. */
  11. (*cinfo->err->output_message)(cinfo);
  12. /* Return control to the setjmppoint */
  13. longjmp(myerr->setjmp_buffer,1);
  14. }
  15. int32_t LCD_DisplayJpeg(char * filename, int x, int y)
  16. {
  17. struct jpeg_decompress_structcinfo;
  18. struct my_error_mgr jerr;
  19. FILE * infile; /* source file */
  20. JSAMPARRAY buffer; /* Output row buffer */
  21. JSAMPROW RowBuffer; /* a row buffer */
  22. uint16_t *pBuffer;
  23. uint8_t r, g, b;
  24. int row_stride; /* physical row width in output buffer */
  25. uint32_t i;
  26. uint32_t DisplayWidth;
  27. uint32_t DisplayHeight;
  28. if (x<0 || x>(HSize-1) ||y<0 || y>(VSize-1)) {
  29. printf("parameter error\n");
  30. return -1;
  31. }
  32. if ((infile = fopen(filename,"rb")) == NULL) {
  33. fprintf(stderr, "can't open%s\n", filename);
  34. return 1;
  35. }
  36. /* Step 1: allocate and initializeJPEG decompression object */
  37. cinfo.err =jpeg_std_error(&jerr.pub);
  38. jerr.pub.error_exit =my_error_exit;
  39. if (setjmp(jerr.setjmp_buffer)) {
  40. jpeg_destroy_decompress(&cinfo);
  41. fclose(infile);
  42. return 2;
  43. }
  44. /* Now we can initialize the JPEGdecompression object. */
  45. jpeg_create_decompress(&cinfo);
  46. /* Step 2: specify data source (eg,a file) */
  47. jpeg_stdio_src(&cinfo, infile);
  48. /* Step 3: read file parameterswith jpeg_read_header() */
  49. (void) jpeg_read_header(&cinfo,TRUE);
  50. /* Step 4: set parameters fordecompression */
  51. /* In this example, we don't needto change any of the defaults set by
  52. * jpeg_read_header(), so we donothing here.
  53. */
  54. /* Step 5: Start decompressor */
  55. (void) jpeg_start_decompress(&cinfo);
  56. if (HSize - x >cinfo.output_width) {
  57. DisplayWidth = cinfo.output_width;
  58. } else {
  59. DisplayWidth = HSize - x;
  60. }
  61. if (VSize - y >cinfo.output_height) {
  62. DisplayHeight =cinfo.output_height;
  63. } else {
  64. DisplayHeight = VSize - y;
  65. }
  66. cinfo.output_width = DisplayWidth;
  67. cinfo.output_height =DisplayHeight;
  68. row_stride = cinfo.output_width *cinfo.output_components;
  69. buffer =(*cinfo.mem->alloc_sarray)
  70. ((j_common_ptr) &cinfo,JPOOL_IMAGE, row_stride, 1);
  71. /* Step 6: while (scan lines remainto be read) */
  72. /* jpeg_read_scanlines(...); */
  73. while (cinfo.output_scanline <DisplayHeight) {
  74. (void)jpeg_read_scanlines(&cinfo, buffer, 1);
  75. pBuffer = (uint16_t*)GetFrameBuffer() + x + y*HSize;
  76. RowBuffer = *buffer;
  77. for (i=0; i<DisplayWidth; i++){
  78. r = *RowBuffer++;
  79. r >>= 3;
  80. g = *RowBuffer++;
  81. g >>= 2;
  82. b = *RowBuffer++;
  83. b >>= 3;
  84. *pBuffer++=((uint16_t)r << 11)|((uint16_t)g << 5)|((uint16_t)b << 0);
  85. }
  86. y++;
  87. }
  88. /* Step 7: Finish decompression */
  89. (void)jpeg_finish_decompress(&cinfo);
  90. /* Step 8: Release JPEGdecompression object */
  91. jpeg_destroy_decompress(&cinfo);
  92. fclose(infile);
  93. /* And we're done! */
  94. return 0;
  95. }

5. 屏幕截图

像素数据可以保存成jpeg图片文件,此处把屏缓存数据提取出进行jpeg编码,并在sd卡中保存成jpeg文件。

  1. // (x0, y0)为截屏的左上角像素位置,(x1,y1)为右下角像素位置
  2. int32_t LCD_CaptureScreen (char * filename, int x0, int y0, int x1, int y1,int quality)
  3. {
  4. struct jpeg_compress_struct cinfo;
  5. struct jpeg_error_mgr jerr;
  6. /* More stuff */
  7. FILE * outfile; /* target file */
  8. JSAMPARRAY buffer; /* Output row buffer */
  9. JSAMPROW RowBuffer; /* a row buffer */
  10. int row_stride; /* physical row width in image buffer */
  11. uint16_t *pBuffer;
  12. uint32_t i;
  13. int Width;
  14. int Height;
  15. if (x0<0 || x1>HSize ||y0<0 || y1>VSize) {
  16. printf("parameter error\n");
  17. return -1;
  18. }
  19. Width = x1 - x0;
  20. Height = y1 - y0;
  21. if (Width <= 0 && Height<= 0) {
  22. printf("parameter error\n");
  23. return -2;
  24. }
  25. /* Step 1: allocate and initializeJPEG compression object */
  26. cinfo.err =jpeg_std_error(&jerr);
  27. /* Now we can initialize the JPEGcompression object. */
  28. jpeg_create_compress(&cinfo);
  29. /* Step 2: specify data destination(eg, a file) */
  30. /* Note: steps 2 and 3 can be donein either order. */
  31. if ((outfile = fopen(filename,"wb")) == NULL) {
  32. fprintf(stderr, "can't open%s\n", filename);
  33. return 1;
  34. }
  35. jpeg_stdio_dest(&cinfo,outfile);
  36. /* Step 3: set parameters forcompression */
  37. cinfo.image_width = Width; /* image width and height, in pixels */
  38. cinfo.image_height = Height;
  39. cinfo.input_components = 3; /* # of color components per pixel */
  40. cinfo.in_color_space = JCS_RGB; /* colorspace of input image */
  41. jpeg_set_defaults(&cinfo);
  42. jpeg_set_quality(&cinfo,quality, TRUE /* limit to baseline-JPEG values */);
  43. /* Step 4: Start compressor */
  44. jpeg_start_compress(&cinfo,TRUE);
  45. /* Step 5: while (scan lines remainto be written) */
  46. /* jpeg_write_scanlines(...); */
  47. row_stride = Width * 3; /* JSAMPLEs per row in image_buffer */
  48. buffer =(*cinfo.mem->alloc_sarray)
  49. ((j_common_ptr) &cinfo,JPOOL_IMAGE, row_stride, 1);
  50. while (cinfo.next_scanline <Height) {
  51. RowBuffer = *buffer;
  52. pBuffer = (uint16_t*)GetFrameBuffer() + x0 + y0*HSize;
  53. for (i=0; i<Width; i++) {
  54. *RowBuffer++ = (*pBuffer &0xf800) >> 8;
  55. *RowBuffer++ = (*pBuffer &0x7e0) >> 3;
  56. *RowBuffer++ = (*pBuffer &0x1f) << 3;
  57. pBuffer++;
  58. }
  59. (void)jpeg_write_scanlines(&cinfo, buffer, 1);
  60. y0++;
  61. }
  62. /* Step 6: Finish compression */
  63. jpeg_finish_compress(&cinfo);
  64. /* After finish_compress, we canclose the output file. */
  65. fclose(outfile);
  66. /* Step 7: release JPEG compressionobject */
  67. /* This is an important step sinceit will release a good deal of memory. */
  68. jpeg_destroy_compress(&cinfo);
  69. /* And we're done! */
  70. return 0;
  71. }

6. 测试实例

写好jpeg显示函数以及屏幕截图函数,就可以在main函数中编写调用测试代码,在代码中实现按”1”进行jpeg图片的显示,按”2”进行截屏保存成jpeg图片。

  1. #include "s3c2416.h"
  2. #include "ff.h"
  3. #include "diskio.h"
  4. #include "RTC.h"
  5. #include "UART0.h"
  6. #include "stdio.h"
  7. #include "stdint.h"
  8. #include "lcd_rgb.h"
  9. extern int32_t LCD_DisplayJpeg(char * filename, int x, int y);
  10. extern int32_t LCD_CaptureScreen (char * filename, int x0, int y0, int x1,int y1, int quality);
  11. int main()
  12. {
  13. uint8_t Command;
  14. FATFS fs;
  15. RTC_Time Time = {
  16. 2014, 5, 22, 23, 00, 0, 5
  17. };
  18. RTC_Init(&Time);
  19. Uart0_Init();
  20. RTC_GetTime(&Time);
  21. printf("Time: %4d/%02d/%02d%02d:%02d:%02d\n", Time.Year,
  22. Time.Month, Time.Day,Time.Hour, Time.Min, Time.Sec);
  23. LCD_RGB_Init();
  24. f_mount(&fs, "" ,0);
  25. LCD_ClearScreen(0x1f);
  26. while (1) {
  27. printf("1: displaytest.jpg\n");
  28. printf("2: capture screenand save as a jpg file\n");
  29. Command = Uart0_ReceiveByte();
  30. if (Command == '1') {
  31. if(LCD_DisplayJpeg("test.jpg", 20, 20)) {
  32. printf("displaypicture failed\n");
  33. }
  34. } else if (Command == '2') {
  35. if(LCD_CaptureScreen("screen.jpg", 0, 0, HSize, VSize, 80)) {
  36. printf("capturescreen failed\n");
  37. }
  38. }
  39. printf("\n");
  40. }
  41. }

7. 广告

以下内容可能引起您的不适和反感,心理承受能力差的读者请跳过本段。 本人代理广州斯道s3c2416开发板,负责s3c2416裸机方面的开发支持,有需要的童鞋可以联系本人^_^(qq: 1048272975,8位机、cortex-m0/m3、arm7/arm9均可免费支持)。

icool2416由广州斯道一流开发团队设计,主处理器采用三星的S3C2416,cpu主频标配400M,可以稳定支持到533M,内存采用64MB DDR2 K4T51163(266M),NAND flash采用256MB SLCK9F2G08U0B,板载10/100M有线DM9000网卡,专业声卡WM8960,标配7寸RGB屏,真实5点触摸电容屏,外扩usb主从接口、rs232、tf卡座等标准接口,供电部分采用专业Torex的DC/DC芯片,具有非常良好的功耗,是一款极具性价比的开发板。

8. 附录

Libjpeg_MDK.rar,MDK下libjpeg移植工程源码,包含屏显示jpeg图片以及截屏保存成jpeg文件源码。

http://pan.baidu.com/s/1jGn6A26