Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
139 views

What could be the reason for AlphaBlend to return 'false'

I am trying to stretch an HBITMAP with alpha and draw it to anther hdc. I'm using StretchDIBits and then AlphaBlend, as shown in the code below. The problem is that AlphaBlend fails and returns ...
2
votes
1answer
218 views

GDI Leak Problem

I'm experiencing memory leaks while running the following GDI code: HDC hdcScreen = GetDC(NULL); HDC hdcMem = CreateCompatibleDC(hdcScreen); HBITMAP hbmpOld = (HBITMAP) SelectObject(hdcMem, hBmp); ...
2
votes
1answer
58 views

Problem with colors

I was coding a snake game, and i got an apple image to use in the game, so i created a DC and then loaded the apple to this DC, when the game is running, it should copy the apple to the buffer and ...
2
votes
3answers
565 views

Sharing HDC between different processes

I am writing some kind of IPC functionality and need to pass certain resources from one process to another. This works well for Pipe handles etc. which can be duplicated via DuplicateHandle. Now I ...
2
votes
2answers
1k views

How to Convert a gdi+ Bitmap-like struct into an HDC?

How to Convert a Bitmap-like struct into an HDC? I am now writting image processing program in c++, gdi. If I got a HDC. I can draw whatever I like on the HDC in gdi by the following code. // HDC ...
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
1answer
69 views

Is there a way to distinguish the device context type?

I am Hooking the GDI API ExtTextOut BOOL ExtTextOut( __in HDC hdc, __in int X, __in int Y, __in UINT fuOptions, __in const RECT *lprc, __in LPCTSTR lpString, __in UINT ...
1
vote
1answer
290 views

Does HDC use alpha channel?

Is there a way I can determine if an HDC uses alpha channel? I read Question 333559 and Question 685684, but their questions are about BITMAP. Apparently, some HDC has alpha channel (though they may ...
1
vote
1answer
62 views

Given an HDC, how can I determine what the name of the application is?

I have an HDC object and I'd like to use it to get the name of the program that created it (such as Notepad or Firefox). Is there a way to do this? If not, how can I do this?
1
vote
1answer
326 views

how to set GDI HDC's drawable region?

I want to draw a HBITMAP onto HDC, I used StretchDIBits. It works fine. ::StretchDIBits. however, I only want a window to watch the drawing result, beside the window, I wish the stretchDIBits do ...
1
vote
2answers
2k views

copy hdc contents to bitmap

How could you copy the contents of an HDC to a bitmap?
0
votes
1answer
46 views

convert HWND into HDC visual studio 2008 c++

I'm using this code to put an IplImage into a pictureBox, the commented part does not work so I0m trying with the first 3 lines of the code, but the third one returns 3 errors at compile time: ...
0
votes
1answer
40 views

Can I get HDC from WPF window so that I can draw to it with Gdi+ API?

I have a library that draw on to given HDC using GDI+ apis. I want to use that in a WPF application. I did try getting the handle from WindowInteropHelper class and passing it to the library method ...
0
votes
4answers
114 views

Why are my font edges not smooth when drawn with the DrawText API?

When I draw text on an dc, the text comes out with rough edges, and on the multiple windows that this WindowProc handles, the text between each of them look different, which looks unprofessional. Is ...
0
votes
3answers
118 views

initialize directX using HDC

does any one know how to initilize directX using hdc? the problem is i want to draw my stuff in a component inside a window and these things usualy only have HDC but DX gets HWND which is assigned to ...
0
votes
0answers
201 views

Why CreateDIBSection returns NULL while GetLastError returns 0 when the screen solution is changed?

Following is my code: void Fun(int nScreenWidth, int nScreenHeight) { ... int nMemSize = nScreenWidth*nScreenHeight*3*7 HDC hdc = ::GetDC(hWnd); int hBmpMapFile = ...
0
votes
2answers
395 views

Printing PDF to HDC (MFC device context)

I'm modifying a C++ application and I'd like to add the ability to print and existing PDF using the MFC printing logic (OnPrint...) Is there any method to print a PDF into the MFC? Now I'm converting ...
0
votes
2answers
261 views

C++: Unhandled exception at 0x0b9ec715 (XX.dll) in XY.exe: 0xC0000005: Access violation reading location 0x00000004

How do I debug the above error? I'm using C++ with Microsoft Visual Studio. Below is part of the code: HDC dc =*mMemDC; X->SelectPalette(dc); When I debug the code, it crashes on the line ...
0
votes
2answers
92 views

Searching Graphics Device Context For Pixels of Specific Color

I'm working on writing some automation code and I'm running into a problem finding an efficient way to examine the pixels that presently exist on the display. I've familiarized myself with the ...
0
votes
1answer
764 views

Drawing transparent/alpha images using CxImage

I am trying to draw a transparent (alpha) PNG image using CxImage, but it seems I'm missing some obvious step... The code so far is: CxImage image(m_pImage, m_lSize, CXIMAGE_FORMAT_UNKNOWN); CRect ...
0
votes
0answers
394 views

Why can't I stretchBlt a dc onto another dc?

Why can't the following code draw the content of graphics onto finalDC? It just draw black rectangle; Bitmap* bitmapCanvasCore = new Bitmap(width, height ,PixelFormat24bppRGB); xxxxxx // operation on ...