The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
188 views

How to print transparent images in Win32 (color key)

I am trying to print a transparent image in a Win32 application. The image has an alpha channel, but I could also live with a simple transparency mask. When using the ::AlphaBlend method it is shown ...
0
votes
2answers
65 views

AlphaBlend not working on XP but on Vista and Windows 7, 8

I am using AlphaBlend. Nothing special at all. My code is working fine on Vista, Windows 7 and Windows 8, but not on Windows XP. Usually AlphaBlend returns 1, but on XP it returns 0. I tested it ...
2
votes
1answer
280 views

How do I get PNG with transparency into GDI32 (in c#) to use it with alphaBlend?

I'm trying to write a fast transparency class in c#. How do I get PNG with transparency into GDI32 to use it with alphaBlend? I tried to put it directly via getHbitmap/selectObject, tried to paint it ...
0
votes
1answer
1k views

AlphaBlend a child form

I'm looking after a way to AlphaBlend a child form, if possible using layered windows as there will be interactive controls behind it. The problem is I have a component in a regular TForm that paints ...
0
votes
1answer
466 views

How to imitate shadow around the thumbnails by StretchDIBits?

I am now writing a image viewer, It is used for view thumbnails. As it is ugly, I decide to draw shadow round thumbnail. There is background color. I am using StretchDIBits to draw a shadow image at ...