Click here to Skip to main content
6,821,293 members and growing! (19,421 online)
Email Password   helpLost your password?
Multimedia » GDI » General     Intermediate

Using the AlphaBlend function

By Wooseok Seo

A sample application that uses the AlphaBlend function to produce a transparent splash screen
VC6Win2K, MFC, GDI, Dev
Posted:1 Feb 2000
Views:172,694
Bookmarked:37 times
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
28 votes for this article.
Popularity: 5.59 Rating: 3.86 out of 5
2 votes, 16.7%
1
1 vote, 8.3%
2

3
2 votes, 16.7%
4
7 votes, 58.3%
5
  • Download source files - 35 Kb
  • Sample Image - alphablend.gif

    Note: The code in this article is restricted to win98 and win2000

    Do you want to cool splash window?. Do you think the general splash window is not good enough for your app? Then this sample source is for you.

    My semi-transparent splash window uses the AlphaBlend function. When I found this function, I was so surprised! The function works just like BitBlt for bitmaps that have transparent or semitransparent pixels. Here is the AlphaBlend function's syntax

    BOOL AlphaBlend( HDC hdcDest,
      int nXOriginDest,
      int nYOriginDest,
      int nWidthDest,
      int nHeightDest,
      HDC hdcSrc,
      int nXOriginSrc,
      int nYOriginSrc,
      int nWidthSrc,
      int nHeightSrc,
      BLENDFUNCTION blendFunction
    );
    

    The important parameter is last one, BLENDFUNCTION.

    typedef struct _BLENDFUNCTION {
        BYTE     BlendOp;
        BYTE     BlendFlags;
        BYTE     SourceConstantAlpha;
        BYTE     AlphaFormat;
    }BLENDFUNCTION;
    
    • BlendOp must be AC_SRC_OVER
    • BlendFlags must be 0
    • SourceConstantAlpha must be between 0 (transparent) and 255 (semi-transparent).
    • AlphaFormat must be AC_SRC_ALPHA
    MSND states:��The SourceConstantaAlpha member of BLENDFUNCTION specifies an alpha transparancy value to be used on the entire source bitmap. The SourceConstantAlpha value is combined with any per-pixel alpha values. If you set SourceConstantAlpha to 0, it is assumed that your image is transparent. Set the SourceConstantAlpha value to 255 (indicates that the image is opaque) when you only want to use per-pixel alpha values.

    See the sample application for a demonstration.

    Just enjoy!!

    Ajou University C.C. 4th member.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Wooseok Seo


    Member
    Woo Seok Seo have been a Microsoft MVP for 7 years and have translated several books into Korean. Author of C# Programming for Beginner (DevPress, 2001), he is interested in Debugging techniques and .NET technology. Get in touch with Woo Seok Seo at wooseok.seo@gmail.com
    Occupation: Software Developer (Senior)
    Location: Korea (Republic Of) Korea (Republic Of)

    Other popular GDI articles:

    Article Top
    You must Sign In to use this message board.
    FAQ FAQ 
     
    Noise Tolerance  Layout  Per page   
     Msgs 1 to 25 of 62 (Total in Forum: 62) (Refresh)FirstPrevNext
    GeneralMy vote of 2 PinmemberMember 3186841:41 6 Jan '10  
    QuestionAlphaBlend draws over the existing backgruound making it darker. gradually losing transaprency PinmemberVC++Maniac22:15 20 Apr '09  
    GeneralAbout OnPaint with the AlphaBlend(); [modified] PinmemberTed Lin23:12 16 Aug '07  
    GeneralAlphaBlend wrong formula ?! PinmemberOctopod11:17 23 Sep '06  
    GeneralRe: AlphaBlend wrong formula ?! PinmemberOctopod11:50 23 Sep '06  
    GeneralThank you PinmemberNick Z.11:41 23 May '05  
    GeneralProblem with AlphaBlend Pinmemberacidutzu0:13 24 Mar '05  
    GeneralRe: Problem with AlphaBlend Pinmemberjgarnett16:59 27 Oct '05  
    GeneralQuestion Pinmemberone_eddie12:40 1 Oct '04  
    GeneralGreat stuff! PinmemberJustDan18:36 24 Jan '04  
    GeneralRe: Great stuff! Pinmemberanothermxw20:08 4 Apr '04  
    GeneralRe: Great stuff! PinsussAnonymous15:18 5 Apr '04  
    GeneralNo with Dialog Pinmembermojster6:42 17 May '03  
    GeneralAlgorithm Code PinmemberJack Rabbit18:34 27 Feb '03  
    GeneralRe: Algorithm Code PinmemberHenry P.18:57 27 Feb '03  
    GeneralRe: Algorithm Code PinmemberJack Rabbit20:38 28 Feb '03  
    GeneralRe: Algorithm Code PinsussAnonymous7:27 3 Mar '03  
    GeneralRe: Algorithm Code PinmemberJack Rabbit5:50 8 Mar '03  
    GeneralRe: Algorithm Code PinmemberHenry P.20:22 31 Mar '03  
    GeneralRe: Algorithm Code PinmemberB2kguga11:04 25 Feb '07  
    GeneralWin95/98/ME vs. WinNT/2000/XP PinmemberHenry P.17:57 27 Feb '03  
    GeneralRe: Win95/98/ME vs. WinNT/2000/XP PinmemberChristian Graus18:57 27 Feb '03  
    GeneralRe: Win95/98/ME vs. WinNT/2000/XP PinmemberHenry P.10:21 3 Mar '03  
    GeneralRe: Win95/98/ME vs. WinNT/2000/XP PinmemberChristian Graus10:29 3 Mar '03  
    GeneralHow fast is AlphaBlend PinmemberHenry P.10:38 26 Feb '03  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads.

    PermaLink | Privacy | Terms of Use
    Last Updated: 1 Feb 2000
    Editor: Chris Maunder
    Copyright 2000 by Wooseok Seo
    Everything else Copyright © CodeProject, 1999-2010
    Web11 | Advertise on the Code Project