Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
3k views

C++/Win32: How to get the alpha channel from an HBITMAP?

I have an HBITMAP containing alpha channel data. I can successfully render this using the ::AlphaBlend GDI function. However, when I call the ::GetPixel GDI function, I never get back values with an ...
1
vote
1answer
210 views

What is the HDC for in GetDIBits?

I was using GetDIBits to get bitmap data from a screen compatible device context into a DIB of a certain format. I was under the impression that the DC was necessary only for synthesizing a color ...
1
vote
1answer
971 views

Bitmap transfer using Winsock, GetDIBits and SetDiBits

I started working on something similar to a remote control application in c++. I wish to transfer a particular window's screenshot to another PC and display it in a window. Both GetDIBits and ...
0
votes
2answers
78 views

Getting Bitmap pixel values using the Windows GetDIBits function

I'm trying to get the pixels of a bitmap using the GetDIBits function. As I have not studied the Windows GDI/API, I'm very unsure about the first argument, HDC. I've searched countless posts here on ...
0
votes
0answers
69 views

GetDIBits, BitBlt on Wineskin

I am trying to run a Windows app on Mac using Wineskin. The app uses the functions GetDIBits and BitBlt for the purpose of capturing a snapshot of the screen. The problem is that these functions seem ...
0
votes
1answer
37 views

Need device independent bitmap bits

I'm building a dll in C++ to be imported into a VB project. The dll exposes a function that will extract the preview image of a specified document through the Win Shell, and then writes it into a ...
0
votes
1answer
116 views

What is the difference between using BITMAP::bmBits vs GetDIBits?

I just realized that there is BITMAP in GDI and then you do GetObject(hBmp, sizeof(BITMAP), &bmp); in almost all of the GetDIBits examples. but the newly populated bmp here has a field: bmBits If ...
0
votes
0answers
180 views

GetDIBits doesn't work

This is my last recourse. I know there are lots of similar questions related to GetDIBits and I have read through them all for last seven days. If I am asked about what are all such things as bitmap, ...
0
votes
4answers
2k views

GetDIBits and loop through pixels using X, Y

I'm grabbing a portion of the screen and scanning through the pixels for a certain color range. I looked at MSDN's Capturing an Image example and know how to use the functions. I can get the bits ...
0
votes
1answer
791 views

Inscriber Technology Via Builder and Delphi - Alpha Channel support

I'm working with Via Builder, from Inscriber Technology. This app merges a TGA sequence animation into one single .via file, making it much better to load large sequences, as this file is optimized. ...
0
votes
2answers
1k views

c++ using getdibits and setdibits

How do you use GetDIBits and SetDIBits in win32 c++?