Click here to Skip to main content
Licence 
First Posted 1 Feb 2000
Views 204,831
Bookmarked 40 times

Using the AlphaBlend function

By Wooseok Seo | 1 Feb 2000
A sample application that uses the AlphaBlend function to produce a transparent splash screen
2 votes, 13.3%
1
1 vote, 6.7%
2
1 vote, 6.7%
3
4 votes, 26.7%
4
7 votes, 46.7%
5
4.37/5 - 31 votes
2 removed
μ 3.85, σa 2.55 [?]
  • 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

    Software Developer (Senior)

    Korea (Republic Of) Korea (Republic Of)

    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

    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralMy vote of 3 PingroupMahdi Nejadsahebi22:24 30 Apr '11  
    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  

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

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

    Permalink | Advertise | Privacy | Mobile
    Web03 | 2.5.120209.1 | Last Updated 2 Feb 2000
    Article Copyright 2000 by Wooseok Seo
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid