Tagged Questions
The device-context tag has no wiki summary.
7
votes
3answers
169 views
What bad things may happen without calling to ReleaseDC?
Programming with C++, once we get the context device by GetDC to use. What bad things may happen if we exit the program without calling to ReleaseDC?
3
votes
3answers
214 views
Looking for the smallest possible amount of code needed to use OpenGL ES as simple drawing surface in Windows
I confess, I have only looked through parts of the entire ocean of GL questions here to find this. Please comment if you find a duplicate.
I'm looking for a very small tutorial or if possible a ready ...
3
votes
2answers
531 views
Strange error with CreateCompatibleDC
Maybe this is a foolish question, I can't see why I can not get a DC created in the following code :
HBITMAP COcrDlg::LoadClippedBitmap(LPCTSTR pathName,UINT maxWidth,UINT maxHeight)
{
HBITMAP ...
3
votes
3answers
1k views
Win32: Does a window have the same HDC for its entire lifetime?
Am i allowed to use a DC outside of a paint cycle?
Is my window's DC guaranteed to be valid forever?
i'm trying to figure out how long my control's Device Context (DC) is valid.
i know that i can ...
3
votes
2answers
708 views
Win32 DrawText line height
I'm calling the Win32 DrawText function to output some text into a device context. The text is long and wraps nicely onto a second line. The problem is I need to decrease the space between lines a ...
2
votes
1answer
75 views
Can two DCs share one GDI object (brush, pen, etc.)?
Can two device contexts (DCs) share one GDI object, such as a brush or a pen?
2
votes
1answer
164 views
Understanding Device Contexts
As a relative newcomer to MFC, I see Device Contexts (DCs) a lot. I vaguely understand that it's something to do with drawing, but the specifics are not very well explained anywhere that I can find. ...
2
votes
1answer
146 views
QT: Scroll widget that renders directly to the DC
I'm trying to create a widget which paints directly to the windows Device Context by calling getDC() and painting an HBITMAP to it.
The widget I'm painting resides inside a scroll widget.
I've ...
1
vote
1answer
140 views
How OpenGL and Direct3D play along with other widgets in a window?
I'd like to know how a Direct3D Device or OpenGL context will know in which portion of the window to render its contents.
In the case of Direct3D, if I create a viewport midscreen, leaving borders ...
1
vote
3answers
348 views
Draw on DeviceContext from COLORREF[]
I have a pointer to a COLORREF buffer, something like: COLORREF* buf = new COLORREF[x*y];
A subroutine fills this buffer with color-information. Each COLORREF represents one pixel.
Now I want to ...
1
vote
1answer
159 views
How to draw a web page into a memory DC?
I would like to trick Chrome in to rendering its tabs in some memory device context of mine. Is this possible at all ? Thank you !
1
vote
2answers
529 views
how to drag image in a wxpython frame
hello
what is the easiest way to drag an image ( or text) in a wx window ?
i need steps or a small example on how to do that.
thanx in advance
1
vote
1answer
249 views
how to display IBitmapImage on CDC
What is the best way to display IBitmapImage on a device context. I am using Windows CE 6.0.
void CImaginingTestView::OnDraw(CDC* pDC)
{
CImaginingTestDoc* pDoc = GetDocument();
...
0
votes
1answer
52 views
How to GetWindowDC of different application?
I am writing an application (application a) that will automate certain procedures of another application (application b) based on a pixel color of application b.
I am trying to use the windows ...
0
votes
1answer
448 views
C# PrintWindow returns a black image
I am on windows XP and I am trying to captrue a window.
But when I capture a window, I get the window title (Name & Icon) but the entire content of the window is black.
When trying to save the ...
0
votes
0answers
265 views
c# capturing a fullscreen game
I need this to capture a game photo in c#. (fullscreen direct-x)
the problem isn't in windows vista/7 as I can disable aero there, my problem is in windows XP.
my method (which works in windows ...
0
votes
1answer
421 views
Text color with DrawText in vc++ mfc
I'm using DrawText to print a message in my application form. how can I change the text color to RGB(255,0,0) ?
Even a change in background will be usefull.
Thank you all
0
votes
2answers
92 views
Drawing will be cleared after minimizing window vc++ mfc
I have written this program, but when I minimize the window, all the drawing will be cleared. what should I do?
CClientDC dc(this);
...
0
votes
2answers
123 views
Can I create a device context that is just a portion of another device context?
I have subclassed a graphics control that takes a device context handle, HDC, as an input and uses that for drawing. My new control is just the original control centered on top of a larger image. I ...
0
votes
1answer
138 views
how to erase lines with wxpython
hello
I'm trying to make a paint tool in wxpython. and i couldn't find a way to make an ( Eraser ) . how can i make an eraser tool - just like the one in windows paint - in wxpython ?
please help .
...
0
votes
2answers
126 views
The legacy device context is too coarse
I have a Process Control system. It has a huge 2D workspace where all the logic is laid out.
The 2D workspace is a coordinate system.
You usually do not see the whole workspace at once, but rather ...
-2
votes
1answer
44 views
Painting data from Device-Context
I've just got a fresh DC:
GetDC(someForeignHwnd)
Most normal people now want to paint on this. I don't.
I want to display the context in my own program. Or duplicate, i wouldn't even mind the ...