程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> C++ 設置透明背景圖片

C++ 設置透明背景圖片

編輯:更多關於編程

       這篇文章主要介紹了C++ 設置透明背景圖片的相關資料,需要的朋友可以參考下

      背景:

      有兩個圖片,一個是目標背景圖片, 一個是帶有自身背景色彩的彩色圖片

      先將這彩色圖片繪制到目標背景圖片中, 這一步通過BITBLT就可實現。 但實現後的效果是: 目標圖片上,繪制上去的彩色圖片帶有其本身的背景。

      問題就來了, 我們想將彩色圖片本身的背景去掉,應該如何解決?

      解決方法:

      使用API函數:TransparentBlt 此函數將原DC中的圖片繪制到目標DC中,並同時設置原圖形在目標圖形上的透明色。

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 BOOL TransparentBlt( HDC hdcDest, // handle to destination DC int nXOriginDest, // x-coord of destination upper-left corner int nYOriginDest, // y-coord of destination upper-left corner int nWidthDest, // width of destination rectangle int hHeightDest, // height of destination rectangle HDC hdcSrc, // handle to source DC int nXOriginSrc, // x-coord of source upper-left corner int nYOriginSrc, // y-coord of source upper-left corner int nWidthSrc, // width of source rectangle int nHeightSrc, // height of source rectangle UINT crTransparent // color to make transparent );

      如本例中,將透明色設置為彩色圖形自帶背景色時, 則使用此函數後,所得最終圖形上彩色圖形的自身背景色就消除了。

      ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 CDC* pDC=GetDC();   CBitmap bmp; bmp.LoadBitmap(IDB_BITMAP1);   BITMAP bmpInfo; bmp.GetObject(sizeof(BITMAP),&bmpInfo);     CDC ImageDC; ImageDC.CreateCompatibleDC(pDC);   CBitmap *pOldImageBmp=ImageDC.SelectObject(&bmp);     CBitmap bmpBK; bmpBK.LoadBitmap(IDB_BITMAP2);   BITMAP bmpBkInfo; bmpBK.GetObject(sizeof(BITMAP),&bmpBkInfo);   CDC bkDC; bkDC.CreateCompatibleDC(pDC);   bkDC.SelectObject(&bmpBK);   TransparentBlt(bkDC.m_hDC,100,150,bmpInfo.bmWidth,bmpInfo.bmHeight,ImageDC.m_hDC,0,0,bmpInfo.bmWidth, bmpInfo.bmHeight,RGB(255,0,0)); // 設置紅色為透明色   BitBlt(pDC->m_hDC,0,0,bmpBkInfo.bmWidth,bmpBkInfo.bmHeight,bkDC.m_hDC,0,0,SRCCOPY); //畫到屏幕上

      原理: 通過設置掩碼位圖來實現

      1)首先建立掩碼位圖

      2)使用掩碼位圖作用於彩色原圖,得到變異新圖(透明色為黑,其他區域為原色)

      3)使用掩碼位圖與目標背景圖相與 (透明區域為透明色,其他區域為黑色)

      4)使用變異新圖與目標背景圖相或 ,得到最終圖

      以上所述就是本文的全部內容了,希望大家能夠喜歡。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved