智能液晶光照培养箱:FrameBuffer 在LCD上显示JPEG图像

来源:百度文库 编辑:中财网 时间:2024/04/29 02:39:09

///////////////framebuffer.h

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define closegr closegraph
#define FBDEV   "/dev/fb0"
static char *default_framebuffer = FBDEV;

struct fb_dev
{
   int fb;
   void * fb_mem;
   int fb_width, fb_height, fb_line_len, fb_size;
   int fb_bpp;
};

static struct fb_dev fbdev;
int framebuffer_open ()
{
                int fb;
   struct fb_var_screeninfo fb_vinfo;
   struct fb_fix_screeninfo fb_finfo;
   char * fb_dev_name = NULL;
  
   if (!(fb_dev_name = getenv("FRAMEBUFFER")))
    fb_dev_name = default_framebuffer;

   fb = open (fb_dev_name, O_RDWR);
   if (fb < 0 )
    {
     printf("device %s open failed.\n", fb_dev_name);
     return -1;
    }
   
  
   if (ioctl(fb, FBIOGET_VSCREENINFO, &fb_vinfo)) {
     printf("Can't get VSCREENINFO: %s\n", strerror(errno));
     close(fb);
     return -1;
    }
   
   if (ioctl(fb, FBIOGET_FSCREENINFO, &fb_finfo)) {
     printf("Can't get FSCREENINFO: %s\n", strerror(errno));
     return 1;
    }

   fbdev.fb_bpp = fb_vinfo.red.length + fb_vinfo.green.length + fb_vinfo.blue.length + fb_vinfo.transp.length;

   fbdev.fb_width = fb_vinfo.xres;
   fbdev.fb_height = fb_vinfo.yres;
   fbdev.fb_line_len = fb_finfo.line_length;
   fbdev.fb_size = fb_finfo.smem_len;

   printf("frame buffer : %d(%d)x%d, %dbpp, 0x%xbyte\n", fbdev.fb_width, fbdev.fb_line_len, fbdev.fb_height, fbdev.fb_bpp, fbdev.fb_size);


/* if (fbdev.fb_bpp != 16) {
    printf ("frame buffer must be 16bpp mode. \n");
    exit(0);
    }
         */
   fbdev.fb_mem = mmap (NULL, fbdev.fb_size, PROT_READ | PROT_WRITE, MAP_SHARED, fb, 0);
   if (fbdev.fb_mem == NULL || (int) fbdev.fb_mem == -1) {
    fbdev.fb_mem = NULL;
    printf("mmap failed.\n");
    close(fb);
    return -1;
    }

   fbdev.fb = fb;
   memset (fbdev.fb_mem, 0x0, fbdev.fb_size);

   return 0;
}

void framebuffer_close()
{
   if (fbdev.fb_mem) {
    munmap (fbdev.fb_mem, fbdev.fb_size);
    fbdev.fb_mem = NULL;
    }

   if (fbdev.fb) {
    close (fbdev.fb);
    fbdev.fb = 0;
    }
}

/////////jpeg2LCD.c

#include "framebuffer.h"
#include "jpeglib.h"

#include

// error handler, to avoid those pesky exit(0)'s

struct my_error_mgr {
struct jpeg_error_mgr pub; /* "public" fields */

jmp_buf setjmp_buffer; /* for return to caller */
};

typedef struct my_error_mgr * my_error_ptr;

//
//
//

METHODDEF(void) my_error_exit (j_common_ptr cinfo);

//
// to handle fatal errors.
// the original JPEG code will just exit(0). can't really
// do that in Windows....
//

METHODDEF(void) my_error_exit (j_common_ptr cinfo)
{
/* cinfo->err really points to a my_error_mgr struct, so coerce pointer */
my_error_ptr myerr = (my_error_ptr) cinfo->err;

char buffer[JMSG_LENGTH_MAX];

/* Create the message */
(*cinfo->err->format_message) (cinfo, buffer);

/* Always display the message. */
//MessageBox(NULL,buffer,"JPEG Fatal Error",MB_ICONSTOP);


/* Return control to the setjmp point */
longjmp(myerr->setjmp_buffer, 1);
}

int Jpeg2LCD(char * filename, int x,int y)
{
// get our buffer set to hold data
unsigned short *p = (unsigned short *)fbdev.fb_mem;//定义framebuffer大的内存空间
int width=0;
int height=0;

struct jpeg_decompress_struct cinfo;
struct my_error_mgr jerr;
FILE * infile=NULL;   /* source file */

JSAMPARRAY buffer;   /* Output row buffer */
int row_stride;   /* physical row width in output buffer */

if ((infile = fopen(filename, "rb")) == NULL) {
   printf("JPEG :\nCan't open %s\n", filename);
   return -1;
}

/* Step 1: allocate and initialize JPEG decompression object */

/* We set up the normal JPEG error routines, then override error_exit. */
cinfo.err = jpeg_std_error(&jerr.pub);
jerr.pub.error_exit = my_error_exit;


/* Establish the setjmp return context for my_error_exit to use. */
if (setjmp(jerr.setjmp_buffer))
{
   jpeg_destroy_decompress(&cinfo);

   if (infile!=NULL)
    fclose(infile);

   return -1;
}

/* Now we can initialize the JPEG decompression object. */
jpeg_create_decompress(&cinfo);

/* Step 2: specify data source (eg, a file) */

jpeg_stdio_src(&cinfo, infile);

/* Step 3: read file parameters with jpeg_read_header() */

(void) jpeg_read_header(&cinfo, TRUE);

/* Step 4: set parameters for decompression */

/* In this example, we don't need to change any of the defaults set by
* jpeg_read_header(), so we do nothing here.
*/

/* Step 5: Start decompressor */

(void) jpeg_start_decompress(&cinfo);
////////////////////////////////////////////////////////////

// how big is this thing gonna be?
width = cinfo.output_width;
height = cinfo.output_height;

/* JSAMPLEs per row in output buffer */
row_stride = cinfo.output_width * cinfo.output_components;

/* Make a one-row-high sample array that will go away when done with image */
buffer = (*cinfo.mem->alloc_sarray)
   ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);


/* Here we use the library's state variable cinfo.output_scanline as the
* loop counter, so that we don't have to keep track ourselves.
*/
p+=(y)*fbdev.fb_line_len/2;//文件指针指向开始
while (cinfo.output_scanline < cinfo.output_height)
{
   int count;
   unsigned char * buf;
   (void) jpeg_read_scanlines(&cinfo, buffer, 1);
   buf=buffer[0];
   if (cinfo.out_color_components==3)
   {
    for (count=0;count    {
     //buffer[count*3]; R
     //buffer[count*3+1]; G
     //buffer[count*3+2]; B
     p[x+count]=((buf[count*3]>>3)<<11)|((buf[count*3+1]>>2)<<5)|(buf[count*3+2]>>3);
    }
   }
   else if (cinfo.out_color_components==1)
   {
    for (count=0;count    {
     p[x+count]=((buf[count]>>3)<<11)|((buf[count]>>2)<<5)|(buf[count]>>3);

    }
   }
   p+=fbdev.fb_line_len/2;

}
(void) jpeg_finish_decompress(&cinfo);
jpeg_destroy_decompress(&cinfo);

fclose(infile);

return 0;
}
int main (void)
{


framebuffer_open();

        Jpeg2LCD("image.jpg",0,0);
   usleep(1000*100);

framebuffer_close();
return 0;
}

编译时需要jpeglib库支持