一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

在Framebuffer下編程顯示BMP圖象

 mediatv 2012-12-03





今天看別人的代碼,知道可以使控制臺進入圖形模式,這樣SHELL程序的顯示就不會影響B(tài)MP圖像的顯示了。于是,COPY過來,放入自己先前的那個程序,再整個800x600的BMP圖,試試全屏顯示的效果!爽^0^爽

/*
   showbmp.c
   allenyao 2006/11/10

*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <linux/fb.h>
#include <linux/kd.h>/*新添加的,用于進行圖形模式時ioctl使用*/
#include <sys/mman.h>
#include <sys/ioctl.h>
#include <arpa/inet.h>

typedef struct
{
  char cfType[2];         /* 文件類型, 必須為 "BM" (0x4D42) */
  char cfSize[4];         /* 文件的大小(字節(jié)) */
  char cfReserved[4];     /* 保留, 必須為 0 */
  char cfoffBits[4];      /* 位圖陣列相對于文件頭的偏移量(字節(jié)) */
} BITMAPFILEHEADER;       /* 文件頭結構 */

typedef struct
{
  char ciSize[4];         /* size of BITMAPINFOHEADER */
  char ciWidth[4];        /* 位圖寬度(像素) */
  char ciHeight[4];       /* 位圖高度(像素) */
  char ciPlanes[2];       /* 目標設備的位平面數(shù), 必須置為1 */
  char ciBitCount[2];     /* 每個像素的位數(shù), 1,4,8或24 */
  char ciCompress[4];     /* 位圖陣列的壓縮方法,0=不壓縮 */
  char ciSizeImage[4];    /* 圖像大小(字節(jié)) */
  char ciXPelsPerMeter[4];/* 目標設備水平每米像素個數(shù) */
  char ciYPelsPerMeter[4];/* 目標設備垂直每米像素個數(shù) */
  char ciClrUsed[4];      /* 位圖實際使用的顏色表的顏色數(shù) */
  char ciClrImportant[4]; /* 重要顏色索引的個數(shù) */
} BITMAPINFOHEADER;       /* 位圖信息頭結構 */

typedef struct
{
  char rgbBlue;
  char rgbGreen;
  char rgbRed;
  char rgbReserved;
} RGBQUAD;

BITMAPFILEHEADER FileHead;
BITMAPINFOHEADER InfoHead;
RGBQUAD rgbquad;

char *fbp = 0;
int xres = 0;
int yres = 0;
int bits_per_pixel = 0;
int tty;
int tty_mode_was;

int set_tty_graphics( void );
int set_tty_text( void );
int  show_bmp  ( char *bmpfile );
long chartolong( char * string, int length );
/******************************************************************************
 *
 ******************************************************************************/
int main( int argc, char *argv[] )
{
    int fbfd = 0;
    struct fb_var_screeninfo vinfo;
    struct fb_fix_screeninfo finfo;
    long int screensize = 0;

    // Open the file for reading and writing
    fbfd = open("/dev/fb0", O_RDWR);
    if (!fbfd)
    {
        printf("Error: cannot open framebuffer device.\n");
        exit(1);
    }

    // Get fixed screen information
    if (ioctl(fbfd, FBIOGET_FSCREENINFO, &finfo))
    {
        printf("Error reading fixed information.\n");
        exit(2);
    }

    // Get variable screen information
    if (ioctl(fbfd, FBIOGET_VSCREENINFO, &vinfo))
    {
        printf("Error reading variable information.\n");
        exit(3);
    }

    printf("%dx%d, %dbpp\n", vinfo.xres, vinfo.yres, vinfo.bits_per_pixel );
    xres = vinfo.xres;
    yres = vinfo.yres;
    bits_per_pixel = vinfo.bits_per_pixel;

    // Figure out the size of the screen in bytes
    screensize = vinfo.xres * vinfo.yres * vinfo.bits_per_pixel / 8;

    // Map the device to memory
    fbp = (char *)mmap(0, screensize, PROT_READ | PROT_WRITE, MAP_SHARED,
                       fbfd, 0);
    if ((int)fbp == -1)
    {
        printf("Error: failed to map framebuffer device to memory.\n");
        exit(4);
    }

 if (set_tty_graphics())
 {
  show_bmp( argv[1] );
 }
 sleep( 10 );
 set_tty_text();
 
    munmap(fbp, screensize);
    close(fbfd);
    return 0;
}

/******************************************************************************
 *
 ******************************************************************************/
int show_bmp( char *bmpfile )
{
 FILE *fp;
 int rc;
 int ciBitCount, ciWidth, ciHeight;
 int line_x, line_y;
 long int location = 0, BytesPerLine = 0;
 char tmp[1024*10];
  
 /* 打開位圖文件 */
 fp = fopen( bmpfile, "rb" );
 if (fp == NULL)
 {
  return( -1 );
 }
 
 /* 讀取位圖文件頭 */
 rc = fread( &FileHead, 1, sizeof(BITMAPFILEHEADER), fp );
 if ( rc != sizeof( BITMAPFILEHEADER ) )
 {
  fclose( fp );
  return( -2 );
 }
 
 /* 判斷位圖的類型 */
 if (memcmp(FileHead.cfType, "BM", 2) != 0)
 {
  fclose( fp );
  return( -3 );
 }

 /* 讀取位圖信息頭 */
 rc = fread( (char *)&InfoHead, 1, sizeof(BITMAPINFOHEADER), fp );
 if ( rc != sizeof(BITMAPINFOHEADER) )
 {
  fclose( fp );
  return( -4 );
 }
 
 ciWidth    = (int) chartolong( InfoHead.ciWidth,    4 );
 ciHeight   = (int) chartolong( InfoHead.ciHeight,   4 );
 ciBitCount = (int) chartolong( InfoHead.ciBitCount, 4 );
 
 line_x = line_y = 0;
 /*
 while( !feof( fp ) )
 {
  rc = fread( (char *)&rgbquad, 1, sizeof(RGBQUAD), fp );
  if ( rc != sizeof(RGBQUAD) )
  {
   break;
  }

  location = line_x * bits_per_pixel / 8 + (ciHeight - line_y - 1) * xres * bits_per_pixel / 8;

  *(fbp + location) = rgbquad.rgbBlue;
  *(fbp + location + 1) = rgbquad.rgbGreen;
  *(fbp + location + 2) = rgbquad.rgbRed;
  *(fbp + location + 3) = rgbquad.rgbReserved;
 
  line_x++;
  if ( line_x == ( ciWidth - 1 ) )
  {
   line_x = 0;
   line_y++;
  }
 }
 */
 BytesPerLine = (ciWidth * ciBitCount + 31) / 32 * 4;
 
 while( !feof( fp ) )
 {
  rc = fread( tmp, 1, BytesPerLine, fp );
  if ( rc != BytesPerLine )
  {
   break;
  }
 
  location = (ciHeight - line_y - 1) * xres * bits_per_pixel / 8;
  memcpy( (fbp + location) , tmp, BytesPerLine );

  line_y++;
 }
 fclose( fp );
 return( 0 );
}

/******************************************************************************
 *
 ******************************************************************************/
long chartolong( char * string, int length )
{
 long number;
 
 if (length <= 4)
 {
  memset( &number, 0x00, sizeof(long) );
  memcpy( &number, string, length );
 }
 
 return( number );
}

/******************************************************************************
 *
 ******************************************************************************/
int set_tty_graphics( void )
{
    int ret = 1;

    if(0 > (tty = open("/dev/tty0", O_RDWR)))
    {
        printf( "ERROR: /dev/tty0 open failed\n" );
        ret = 0;
    }
    else if(0 > ioctl(tty, KDGETMODE, &tty_mode_was))
    {
        printf( "ERROR: /dev/tty0 get mode failed\n");
        close(tty);
        ret = 0;
    }
    else if((KD_GRAPHICS != tty_mode_was)
             && (0 > ioctl(tty, KDSETMODE, KD_GRAPHICS)))
    {
        printf( "ERROR: /dev/tty0 set graphics failed\n");
        close(tty);
        ret = 0;
    }
    else
    {
        printf("tty mode was ");
        switch(tty_mode_was)
        {
            case KD_TEXT     :  printf("KD_TEXT"     ); break;
            case KD_GRAPHICS :  printf("KD_GRAPHICS" ); break;
            default          :  printf("IMPOSSIBLE!" ); break;
        }
        printf("\n");
        printf("tty mode set to KD_GRAPHICS\n");
        fflush(stdout);
        close(tty);
    }
 return( ret );
}

/******************************************************************************
 *
 ******************************************************************************/
int set_tty_text( void )
{
 int ret = 1;

    if(0 > (tty = open("/dev/tty0", O_RDWR)))
    {
        printf( "ERROR: /dev/tty0 open failed\n" );
        ret = 0;
    }
    else if(0 > ioctl(tty, KDSETMODE, tty_mode_was))
    {
        printf( "ERROR: /dev/tty0 reset mode failed\n");
        close(tty);
        ret = 0;
    }
    else
    {
        printf("tty mode set to ");
        switch(tty_mode_was)
        {
            case KD_TEXT     :  printf("KD_TEXT"     ); break;
            case KD_GRAPHICS :  printf("KD_GRAPHICS" ); break;
            default          :  printf("IMPOSSIBLE!" ); break;
        }
        printf("\n");
        fflush(stdout);
        close(tty);
    }
 return( ret );
}





    本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內容均由用戶發(fā)布,不代表本站觀點。請注意甄別內容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,請點擊一鍵舉報。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    欧美黑人在线精品极品| 高清免费在线不卡视频| 蜜桃传媒在线正在播放| 色婷婷视频国产一区视频| 欧美一区二区三区视频区| 国产偷拍盗摄一区二区| 一区二区欧美另类稀缺| 国产精品日韩精品一区| 国产一级特黄在线观看| 亚洲性生活一区二区三区| 日韩午夜老司机免费视频| 成人午夜在线视频观看| 国产av乱了乱了一区二区三区| 亚洲精品一区二区三区免| 91亚洲精品亚洲国产| 国产欧美日韩综合精品二区| 中文字字幕在线中文乱码二区 | 99一级特黄色性生活片| 亚洲二区欧美一区二区| 男女午夜在线免费观看视频| 国产情侣激情在线对白| 人妻少妇系列中文字幕| 99久久精品免费精品国产| 午夜福利92在线观看| 国产精品福利一二三区| 一区二区三区欧美高清| 国产午夜精品久久福利| 精品精品国产欧美在线| 日韩欧美国产三级在线观看| 男女激情视频在线免费观看| 国产成人精品在线一区二区三区| 日韩欧美三级视频在线| 久一视频这里只有精品| 国产a天堂一区二区专区| 日本深夜福利视频在线| 国内真实露脸偷拍视频| 九九热这里只有精品哦| 免费在线播放不卡视频| 精品日韩中文字幕视频在线| 91久久精品在这里色伊人| 成年男女午夜久久久精品|