Bmp格式解析以及應(yīng)用

Bitmap數(shù)據(jù)結(jié)構(gòu)

BMP文件的數(shù)據(jù)可分為四個部分

  • Bmp文件頭:提供文件的格式,大小,位圖數(shù)據(jù)的起始偏移 (14 bytes)

  • Bmp信息頭:提供圖像數(shù)據(jù)的尺寸、位平面數(shù)奴艾、壓縮方式弛车、位圖數(shù)據(jù)大小,位深度 (40 bytes)

  • 調(diào)色板:根據(jù)位深度(24,32則不采用)來判斷是否采用這種模式巷帝,調(diào)色板就是索引與其對應(yīng)的顏色的映射表 (一般1024 bytes 256色 * 4)

  • 位圖數(shù)據(jù):圖像數(shù)據(jù)

Bitmap 文件頭定義

extern struct BMPFILE {
    BITMAPFILEHEADER file_head;
    BITMAPINFOHEADER bmp_info_head;
}BMPFILE;

//****   sHeader   *****
//14 byte
typedef struct tagBITMAPFILEHEADER {
    //== BM in windows
    unsigned short    bfType;

    //File Size
    unsigned long   bfSize;

    //always 0
    unsigned short    bfReserved1;
    unsigned short    bfReserved2;

    //offset of data area
    unsigned long   bfOffBits;
} BITMAPFILEHEADER;

//****   bitmap information header  *****
//40byte
typedef struct tagBITMAPINFOHEADER{
    //in Windows always == 0x28
    long      biSize;

    //bmp info
    long        biWidth;
    long        biHeight;

    //always 1
    short int biPlanes;

    //bits count for a pixel
   short int biBitCount;

    // 0 [no compression]
    // 1 [BI_RLE8]
    // 2 [BI_RLE4]
    short int biCompression;

    /*****************************************************************
    數(shù)據(jù)區(qū)大小,單位字節(jié)
    數(shù)據(jù)區(qū)每行像素數(shù)據(jù)大小必須為4字節(jié)倍數(shù)扫夜,不夠則以0補(bǔ)齊
    biSizeImage = ((biWidth + 0x3) & ~0x3) * biHeight
    ****************************************************************/
    long      biSizeImage;

    long        biXPelsPerMeter;
    long        biYPelsPerMeter;

    //used color in Palette
    long      biClrUsed;

    //Important color in Palette
    long      biClrImportant;
} BITMAPINFOHEADER;

調(diào)色板

位深度為8位一般采用調(diào)色板模式楞泼,調(diào)色板一般有256色* 4 bytes 驰徊,按照 (blue,green,red,alpha) 順序排列

調(diào)色板其實(shí)就是一張映射表堕阔,標(biāo)識顏色索引號與其代表的顏色對應(yīng)關(guān)系辣垒,可以看成一個二維數(shù)組palette[N][4],N表示顏色索引數(shù)。

位圖(圖像)數(shù)據(jù)

上面說到采用位深度為8位則調(diào)色板模式印蔬,則每個像素占一個字節(jié)勋桶,這個字節(jié)表示的索引去查找調(diào)色板顯示出來,位圖數(shù)據(jù)的排列順序是從左下角到右上角侥猬,以行主序排列的例驹。

實(shí)際應(yīng)用

從海思的回調(diào)接口中獲取Subtitle數(shù)據(jù),然后對其圖像數(shù)據(jù)進(jìn)行處理

返回的結(jié)構(gòu)體如下:

/** Information of bitmap subtitle *//** CNcomment:圖像字幕信息 */
typedef struct hiSVR_SO_GFX_S
{
    HI_S64 s64Pts;         /**<Start a display time, unit is Millisecond *//**<CNcomment:顯示時間戳退唠,單位ms */
    HI_U32 u32Duration;    /**<Duration of displaying, unit is Millisecond *//**<CNcomment:顯示時長鹃锈,單位ms */
    HI_U32 u32Len;         /**<Bytes of subtitle data *//**<CNcomment:數(shù)據(jù)長度,單位字節(jié) */
    HI_U8*  pu8PixData;    /**<Data of subtitle *//**<CNcomment:圖像數(shù)據(jù) */

    HI_SVR_SO_DISP_MSG_TYPE_E enMsgType;                   /**<Type of display message *//**<CNcomment:顯示消息類型 */
    HI_SVR_SO_COLOR_S stPalette[HI_SVR_SO_PALETTE_ENTRY];  /**<Palette *//**<CNcomment:調(diào)色板瞧预,ARGB8888 */
    HI_S32 s32BitWidth;    /**<Bits of Pix *//**<CNcomment:象素位寬 , 可以為 2,4,8位*/
    HI_U32 x, y, w, h;     /**<Position of display subtitle *//**<CNcomment:顯示位置和高寬信息 */
    HI_U32 u32CanvasWidth;   /**<Display canvas width *//**<CNcomment:顯示畫布的寬度信息 */
    HI_U32 u32CanvasHeight;  /**<Display canvas height *//**<CNcomment:顯示畫布的高度信息 */
} HI_SVR_SO_GFX_S;

通過上面結(jié)構(gòu)體拼接成位圖(32位)處理如下

/**
*拼接Bitmap文件頭屎债,位圖信息頭
*/
static int getBitmapheader(HI_SVR_SO_GFX_S stGfx,struct BMPFILE *header)
{
    
    if (header == (struct BMPFILE *) NULL)
    {
       return -1;
    }

    //file info header
    header->file_head.bfType = 0x4d42;          //BM
    header->file_head.bfSize = stGfx.u32Len * 4 + sizeof(BMPFILE);
    header->file_head.bfReserved1 = 0;
    header->file_head.bfReserved2 = 0;
    header->file_head.bfOffBits = sizeof(BMPFILE);

    //bitmap info header
    header->bmp_info_head.biSize = 0x28;        //40 byte
    header->bmp_info_head.biWidth = stGfx.w;
    header->bmp_info_head.biHeight = stGfx.h;
    header->bmp_info_head.biPlanes = 1;
    header->bmp_info_head.biBitCount = 0x20;
    header->bmp_info_head.biCompression = 0;
    header->bmp_info_head.biSizeImage = stGfx.u32Len;
    header->bmp_info_head.biXPelsPerMeter = 0;
    header->bmp_info_head.biYPelsPerMeter = 0;
    header->bmp_info_head.biClrUsed = 0;
    header->bmp_info_head.biClrImportant = 0;
}

/*
* 裁剪圖片,對透明以及圖片多余的內(nèi)容進(jìn)行裁剪計算
*/
int cropBmp(HI_SVR_SO_GFX_S* pstGfx, unsigned long* newheight, unsigned long* topoffset)
{
   unsigned short u8Alpha = 0;
   unsigned long i = 0, j = 0, k = 0;

   if (pstGfx->u32Len == 0)
   {
       return -1;
   }

   //clear head and end transparent line
   //from top to bottom, i lines blank
   for (i = 0; i < pstGfx->h; i++)
   {
       u8Alpha = 0;
       for (k = 0; k < pstGfx->w; k++)
       {
           if (pstGfx->stPalette[pstGfx->pu8PixData[i * pstGfx->w + k]].u8Alpha > 0)
           {
               u8Alpha = 1;
               break;
           }
       }
       if (u8Alpha > 0)
       { break; }
   }
   if (i == pstGfx->h) //reach to bottom
   {
       return -1;
   }

   //from bottom to i,  pstGfx->h -j lines blank
   for (j = pstGfx->h - 1; j > i; j--)
   {
       u8Alpha = 0;
       for (k = 0; k < pstGfx->w; k++)
       {
           if (pstGfx->stPalette[pstGfx->pu8PixData[j * pstGfx->w + k]].u8Alpha > 0)
           {
               u8Alpha = 1;
               break;
           }
       }
       if ( u8Alpha > 0)
       { break; }
   }
   j += 1;

   *topoffset = i;
   *newheight = (j - i);
   return 0;
}
/*
*  根據(jù)調(diào)色板以及圖像信息處理每個像素
*/
static void getPixels(HI_SVR_SO_GFX_S pstGfx,char *buf)
{
    unsigned long i = 0,j = 0,index = 0;

    //normal 2d subtitle
    //from pallete to RGBA data
    for (i = 0; i < pstGfx.h; i++)
    {
        for (j = 0; j < pstGfx.w; j++)
        {
            index = pstGfx.pu8PixData[pstGfx.u32Len - i * pstGfx.w + j];
            
            buf[(i * pstGfx.w + j) * 4 + 0 ] = pstGfx.stPalette[ index ].u8Red;
            buf[(i * pstGfx.w + j) * 4 + 1 ] = pstGfx.stPalette[ index ].u8Green;
            buf[(i * pstGfx.w + j) * 4 + 2 ] = pstGfx.stPalette[ index ].u8Blue;
            buf[(i * pstGfx.w + j) * 4 + 3 ] = pstGfx.stPalette[ index ].u8Alpha;
            if (buf[(i * pstGfx.w + j) * 4 + 3] == 0) //alpha=0,clear RGB
            {
                memset(&buf[(i * pstGfx.w + j) * 4], 0x00, 4);
            }
        }
    }
    
}
/**
*  處理位圖接口
*/
int loadBmpToBuffer(unsigned long handler)
{   
    int ret;
    
    struct BMPFILE *header;
    //位圖數(shù)據(jù)
    char *buf = NULL ;
    //包含Bitmap垢油,Text盆驹,ASS類型數(shù)據(jù)
    HI_SVR_SO_SUBTITLE_INFO_S* pstInfo = (HI_SVR_SO_SUBTITLE_INFO_S*)handler;

    unsigned long pdata_length,file_length;

    int i;

    unsigned long newheight,topoffset;

    HI_SVR_SO_GFX_S stGfx;

    header = (struct BMPFILE*)malloc(sizeof(BMPFILE));
    //這里只對圖像數(shù)據(jù)進(jìn)行處理
    stGfx = pstInfo->unSubtitleParam.stGfx;
    
    ret = cropBmp(&stGfx,&newheight,&topoffset);
    if(ret == 0)
    {
        stGfx.h = newheight;
        stGfx.y = stGfx.y + topoffset; //update h
        stGfx.u32Len = stGfx.h * stGfx.w;
        memcpy(stGfx.pu8PixData, &(stGfx.pu8PixData[topoffset * stGfx.w]), stGfx.w * newheight);
    }
    else 
    {
        stGfx.h = 0;
        stGfx.y = 0;
        stGfx.u32Len = 0;
    }
    //裁剪之后位圖數(shù)據(jù)改變,重新計算
     pdata_length = stGfx.w * stGfx.h;
    //拼接位圖頭
    getBitmapheader(stGfx,header);
    //長度為每個像素 * 4 + 頭長度
    file_length = pdata_length * 4 + sizeof(BMPFILE);
            
    
     buf = (char*)malloc(file_length);
    
    if (buf == NULL)
    {
        return -1;
    }
    
    memset(buf,0,file_length);
    
    memcpy(buf,header,sizeof(BMPFILE));

    getPixels(stGfx,buf + sizeof(BMPFILE));
    
    //buf為位圖文件數(shù)據(jù)滩愁,
    return 1;
}

這樣得到最終的buf為位圖數(shù)據(jù)躯喇,可以直接通過BitmapFactory.decodeByteArray() 形成Subtitle位圖顯示在屏幕上

github : https://github.com/SpiritualityTao/MyBlog

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市硝枉,隨后出現(xiàn)的幾起案子廉丽,更是在濱河造成了極大的恐慌,老刑警劉巖妻味,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件正压,死亡現(xiàn)場離奇詭異,居然都是意外死亡责球,警方通過查閱死者的電腦和手機(jī)焦履,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來棕诵,“玉大人裁良,你說我怎么就攤上這事⌒L祝” “怎么了?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵牧抵,是天一觀的道長笛匙。 經(jīng)常有香客問我侨把,道長,這世上最難降的妖魔是什么妹孙? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任秋柄,我火速辦了婚禮,結(jié)果婚禮上蠢正,老公的妹妹穿的比我還像新娘骇笔。我一直安慰自己,他們只是感情好嚣崭,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布笨触。 她就那樣靜靜地躺著,像睡著了一般雹舀。 火紅的嫁衣襯著肌膚如雪芦劣。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天说榆,我揣著相機(jī)與錄音虚吟,去河邊找鬼。 笑死签财,一個胖子當(dāng)著我的面吹牛串慰,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播唱蒸,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼模庐,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了油宜?” 一聲冷哼從身側(cè)響起掂碱,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎慎冤,沒想到半個月后疼燥,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡蚁堤,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年醉者,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片披诗。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡撬即,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出呈队,到底是詐尸還是另有隱情剥槐,我是刑警寧澤,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布宪摧,位于F島的核電站粒竖,受9級特大地震影響颅崩,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜蕊苗,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一沿后、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧朽砰,春花似錦尖滚、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至非剃,卻和暖如春置逻,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背备绽。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工券坞, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人肺素。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓恨锚,卻偏偏與公主長得像,于是被迫代替她去往敵國和親倍靡。 傳聞我的和親對象是個殘疾皇子猴伶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容