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 ...
2
votes
3answers
2k views

Creating HBITMAP from memory buffer

I have an application which loads some blob data out of a database which can represent png formatted or raw binary data for various bitmaps and icons. This is being stored in a ...
1
vote
2answers
49 views

Passing Bitmap from C# to C++ Unmanaged code

I am trying without success to write code in C# to pass a bitmap to an unmanaged c++ DLL and return a POINT structure. I have done a lot of research on the internet, but have not found the "Gotcha" ...
1
vote
1answer
78 views

Reset existing HBITMAP as desktop background (Win32)

I wish to create a transparent window over the desktop. For that purpose I've created an HDC with a background of the desktop (created HBITMAP of the desktop and applied it to my HDC), and invoked ...
1
vote
1answer
66 views

Displaying HBITMAP

I apologize upfront; I'm new to c and I really don't know what I'm doing. I am trying to capture and display a screen shot using Windows 7 and c. I know it sounds dumb, eventually I will need each of ...
1
vote
2answers
104 views

WIndows function DestroyObject for HBITMP doesn't work very well (memory leak)

I need to create HBITMAP images very often in a C++ program, and of course I need to delete these bitmap after use. The code is similar to this HBITMAP hBmp; while(true) { hBmp = ...
1
vote
3answers
140 views

Can I delete a HBITMAP object created in another process?

I'm creating a utility program which draws some (user customizable) icons onto other windows on the desktop using a global hook. As bitmap objects are specific to a process, I'm creating separate ...
1
vote
2answers
177 views

Why HBITMAP is inverted

I am trying to create an avi file for a given jpg images. I am reading jpg's using a library and preparing hbitmap for it. Finally i am adding it to create avi file. But my final avi file contains the ...
1
vote
1answer
1k views

Strange problem about conversion between GDI+ to GDI: Bitmap and HBitmap

I want to convert gdi+ Bitmap into gdi object HBitmap. I am using the following method: Bitmap* img = new Bitmap(XXX); // lots of codes... HBITMAP temp; Color color; ...
1
vote
2answers
2k views

How to use GetHBITMAP method?

I have a gdi+ bitmap, and I want to convert bitmap into HBitmap. I write the following code. HBITMAP temp; Color color; img->GetHBITMAP(color, &temp); But It do not work, How can I get a ...
0
votes
1answer
13 views

Getting HBitmap from IGraphBuilder

I'm trying to encode a video from an IGraphBuilder, for this I would require a HBitmap is it possible for me to do this? P.S. I know that IGraphBuilder already has a RenderFile function, however this ...
0
votes
1answer
30 views

Should I always replace default object after it has finished work with the new object when I Use DC

I just use a temp DC created with: ::CreateCompatibleDC(NULL); Then I draw some image to this temp DC. I want to get the image in this DC, so I use CreateCompatibleBitmap() to create a temp bitmap ...
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
1answer
179 views

HBITMAP adding transparency / alpha channel

I'm trying to add transparency to a hbitmap object but it never draw anything :/ this is the code i use to draw the handle HDC hdcMem = CreateCompatibleDC(hDC); HBITMAP hbmOld = (HBITMAP) ...
0
votes
3answers
94 views

HBITMAP memory leak

No matter how hard I looked and whatever I tried, I couldn't find why this code is leaking. Actually, I'm not sure about the leak but the number of GDI objects increases everytime I use this piece of ...
0
votes
2answers
118 views

GDI C/C++ - BITMAP into an existing HBITMAP

How can I create a device context compatible bitmap and then associating the obtained handle to a BITMAP struct? If I write: ... HBITMAP hbitmap = CreateCompatibleBitmap(hdc, width, height); // these ...
0
votes
1answer
157 views

Creating a HBITMAP from glReadPixels

I need to create a HBITMAP from data returned by a glReadPixels() call: HDC hCompDC = CreateCompatibleDC(NULL); HDC hDC = GetDC(); m_hClipboardBitmap = CreateCompatibleBitmap(hDC, size.cx, ...
0
votes
2answers
157 views

What is pixel format of HBITMAP when i get bitmap info with GetBitmapBits?

I have HBITMAP hBitmap. I use GetBitmapBits(hbitmap, width * height, buffer); what is the pixel format written in buffer? Thanks.
0
votes
0answers
16 views

hbitmap doesn't work well in Server side

I'm using hbitmap to get the Thumbnail of target file, just like the article of David (Use native HBitmap in C# while preserving alpha channel/transparency). I encountered the issue when I try to put ...
0
votes
1answer
362 views

Generic GDI+ Error when saving hBitmap as Bitmap

I am writing my own DIB/BMP decoder (I know there are already others, but I'm learning about image processing) and I have managed to store the pixels in a pointer and get the relevant dimensions for ...
0
votes
1answer
132 views

SetBitmapBits not setting Captured HBITMAP on Window

I want to get a 500x500 HBITMAP of my screen from 0x0 (top-left) and draw it on my window. Here goes my code. SaveBitmap() Saves the HBITMAP and its working Fine. int scrnw = 500; int scrnh = 500; ...
0
votes
0answers
239 views

C# - From native HBitmap to JPEG-encoded Stream, Transparency and upside down

My final goal is to put a HBitmap, that I retrieved from the Windows Thumbnail Cache using this code: // GUID of IShellItem. Guid uuid = new Guid("43826d1e-e718-42ee-bc55-a1e261c37bfe"); ...
0
votes
1answer
420 views

CreateDIBSection in MFC and rendering using picture control

I'm creating a DIB Section in MFC using the call CreateDIBSection. I get a HBITMAP from the call which I pass onto another dialog in my MFC Project. In the other dialog I'm using ...
0
votes
1answer
76 views

Rendering to an HBITMAP with SlimDX

Using SlimDX (a DirectX wrapper for .NET), is it possible to render a scene to an HBITMAP instead of a window?
0
votes
2answers
1k views

Use native HBitmap in C# while preserving alpha channel/transparency

Let's say I get a HBITMAP object/handle from a native Windows function. I can convert it to a managed bitmap using Bitmap.FromHbitmap(nativeHBitmap), but if the native image has transparency ...
0
votes
1answer
247 views

Retrieve remote bitmap, using HBITMAP handle in C#

I have a MarshalByRefObject which I needed to serialize and store (in a database), so I could deserialize and reference it later. I have chosen to approach this differently: right now I am running a ...
0
votes
2answers
622 views

How to change the toolbar button's Bitmap in win32?

I have created a toolbar with some controls on it using ReBar within a window. Can anyone please tell me, How to get the HWND of a buttons/combobox/etc (not normal buttons in a window) if I know ...
0
votes
2answers
2k views

Converting from HBITMAP to Jpeg or Png in C++

Does anyone know how I can use an HBITMAP variable to write a png or jpeg file? I first looked into doing this with GDI+ but it gives me errors telling me min/max haven't been defined (defining them ...