Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
161 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
0answers
126 views

Check whether GDI AlphaBlend() is hardware-accelerated

As I understand, the official way to do that is to use GetDeviceCaps() with a SHADEBLENDCAPS index. However, this code: HDC screen = GetDC(NULL); int cap = GetDeviceCaps(screen, SHADEBLENDCAPS); ...
0
votes
1answer
740 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
389 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 ...