Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is alphablend and what functions are used for it?

What is alphablend and what functions are used for it?


1 Answers

The AlphaBlend function displays bitmaps that have transparent or semitransparent pixels. And the function used for alphablend is :

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

Please refer the following link-> http://msdn.microsoft.com/en-us/library/aa452850.aspx

like image 66
Abhineet Avatar answered Dec 07 '25 14:12

Abhineet



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!