Tagged Questions
Graphics Device Interface (GDI) is a device-independent, pure software graphics API under the Windows operating system for drawing graphic primitives and text. It is the underlying base used to render the Windows GUI elements.
16
votes
3answers
402 views
How to get the exact text margins used by TextRenderer
System.Windows.Forms.TextRenderer.DrawText method renders formatted text with or without left and right padding depending on the value of the flags parameter:
TextFormatFlags.NoPadding - fits the ...
15
votes
2answers
1k views
Printing on roll paper
I am using C# with Winforms. I am trying to print bills on a paper roll. The width of the paper is 3in but the length of the paper is dynamic (its a roll paper). The length depends on how many items ...
13
votes
3answers
2k views
Is TDirect2DCanvas slow or am I doing something wrong?
While looking for alternatives to replace GDI, I was trying to test Delphi's 2010 TDirect2DCanvas performance in Windows 7.
I tested it by drawing a huge polyline using Direct2D and the result was ...
10
votes
3answers
987 views
Taking screenshots in Windows Vista, Windows 7, with transparent areas outside the app region
I am trying to take a screenshot of an application and I would like to make the parts of the rectangle that are not part of the applications region be transparent. So for instance on a standard ...
9
votes
2answers
402 views
OpenGL stereo in layered window
Is anybody aware of a way to enable OpenGL stereo while using a layered window in Windows 7?
8
votes
1answer
199 views
Why can't DirectX/DirectWrite/Direct2D text rendering be as sharp as GDI?
I already know that sub-pixel positioning causes DirectWrite text rendering to be blurry compared to GDI.
However, my question is a bit more fundamental: Why can't DirectWrite (and related methods) ...
8
votes
2answers
888 views
About GDI/GDI+ coordinate compatibility?
I have a problem while drawing with both GDI and GDI+ interchangably. The page transformation—in particular scaling—seems to be a little bit off between the two. Which properties of the ...
8
votes
7answers
3k views
A generic error occurred in GDI+
[ExternalException (0x80004005): A generic error occurred in GDI+.]
IpitchitImageHandler.Data.ImageRepository.AddNewTempImage(Stream image, String extension, Guid PageId, Guid ImageId, ...
7
votes
3answers
423 views
Is it possible to detect GDI leaks from the Visual Studio debugger?
Leaking GDI objects can be seen from the task manager or from Process Explorer. (Well you don't see the leaks, but you can see if object uasage count continually goes up.)
There are also tools that ...
7
votes
5answers
3k views
How to effectively draw on desktop in C#?
I want to draw directly on the desktop in C#. From searching a bit, I ended up using a Graphics object from the Desktop HDC (null). Then, I painted normally using this Graphics object.
The problem is ...
7
votes
7answers
3k views
Winforms: How to speed up Invalidate()?
I'm developing a retained mode drawing application in GDI+. The application can draw simple shapes to a canvas and perform basic editing. The math that does this is optimized to the last byte and is ...
7
votes
11answers
896 views
Heisenbug: WinApi program crashes on some computers
Please help! I'm really at my wits' end.
My program is a little personal notes manager (google for "cintanotes").
On some computers (and of course I own none of them) it crashes with an unhandled ...
6
votes
4answers
201 views
Can a PDF be converted to a vector image format that can be printed from .NET?
We have a .NET app which prints to both real printers and PDF, currently using PDFsharp, although that part can be changed if there's a better option. Most of the output is generated text or images, ...
6
votes
3answers
166 views
Is there something special about using BeginPaint/EndPain and not GetDC/ReleaseDC in responce to WM_PAINT message?
One can use GetDC/ReleaseDC to draw in client area of window. But in responce to WM_PAINT message one have to use BeginPaint/EndPaint. Is there something special about this?
6
votes
4answers
96 views
How does computer draw a line??
Windows GDI has these functions:
MoveTo();
LineTo();
They accept coordinates where to start drawing and where to stop drawing.
But how are these functions implemented?? (especially LineTo)
Do ...
6
votes
1answer
314 views
Drawing on a 16 bit greyscale bitmap in memory
In need to draw on a 16 bit greyscale in-memory bitmap. Associating a TCanvas to the bitmap would be marvelous. I use Delphi but any language is OK. I just need the idea.
Any Idea ?
Converting the ...
6
votes
3answers
358 views
Why not use GDI to repeatedly fill a window with RGB data from an array?
This is a follow-up to this question. I'm currently writing a simple game and am looking for the fastest way to (repeatedly) display an array of RGB data in a Win32 window, without flickering or other ...
6
votes
4answers
745 views
Need Help Setting an Image with Transparent Background to Clipboard
I need help setting a transparent image to the clipboard. I keep getting "handle is invalid". Basically, I need a "second set of eyes" to look over the following code. (The complete working project at ...
6
votes
2answers
434 views
Drawing video with text on top
I am working on an application and I have a problem I just cant seem to find a solution for. The application is written in vc++. What I need to do is display a YUV video feed with text on top of it.
...
6
votes
3answers
263 views
Guidelines for Using Brushes and Pens
How expensive is it to create gdi brushes and pens? Should I create them on an add needed basis and wrap them in a using so they are disposed quickly, or should I create a static class similar to ...
5
votes
5answers
512 views
C# WinForms - Anyone know of a C# GDI library not SLOW GDI+
GDI+ is very slow, almost entirely software whereas GDI is highly hardware accelerated.
GDI+ is what the Graphics class uses on WinForms and it's just too slow.
Has anyone made a .NET GDI library so ...
5
votes
6answers
220 views
How to detect if loading an image will throw an OutOfMemory exception in .NET?
I have an application written using .NET 3.5 SP1 that downloads images from an external site and displays them to end users. On rare ocassions, my users are experiencing OutOfMemory errors because ...
5
votes
1answer
202 views
What does the '@' mean when prefixed to Windows font face name?
With EnumFontFamiliesEx, I get two instances of some fonts, the second of which has '@' prefixed to the face name in the LOGFONT. For example, I get "MS PMincho" and "@MS PMincho". Yet for other ...
5
votes
4answers
906 views
Convert from 32-BPP to 8-BPP Indexed (C#)
I need to take a full color JPG Image and remap it's colors to a Indexed palette. The palette will consist of specific colors populated from a database. I need to map each color of the image to it's ...
5
votes
4answers
2k views
Specifying DPI of a GDI Device Context
I have an application that generates metafiles (EMFs). It uses the reference device (aka the screen) to render these metafiles, so the DPI of the metafile changes depending on what machine the code is ...
5
votes
4answers
2k views
Disable antialiasing for a specific GDI device context
I'm using a third party library to render an image to a GDI DC and I need to ensure that any text is rendered without any smoothing/antialiasing so that I can convert the image to a predefined palette ...
5
votes
4answers
4k views
JPEG 2000 support in C#.NET
It seems that .NET can't open JP2 (Jpeg 2000) files using the GDI library. I've searched on google but can't find any libraries or example code to do this.
Anybody got any ideas? I don't really want ...
5
votes
7answers
4k views
How do I use large bitmaps in .NET?
I'm trying to write a light-weight image viewing application. However, there are system memory limitations with .NET.
When trying to load large bitmaps (9000 x 9000 px or larger, 24-bit), I get a ...
5
votes
2answers
1k views
Finding GDI/User resource usage from a crash dump
I have a crash dump of an application that is supposedly leaking GDI. The app is running on XP and I have no problems loading it into WinDbg to look at it. Previously we have use the Gdikdx.dll ...
5
votes
4answers
2k views
How can drawString method be used for writing diagonal way
I am using c# 2005 i want to write string diagonally on image. But by default c# provides the option to write horizontally or vertically.
how we write diagonally?
Thanks
4
votes
1answer
486 views
CreateCompatibleBitmap and CreateDIBSection (Memory DC's)
from what I've read here it seems that most of the Windows GDI functions are accelerated. So for instance a call to BitBlt or AlphaBlend uses hardware acceleration if available. It also mentions that ...
4
votes
2answers
243 views
Direct2D interface and blurry text issue
My new application will feature a rich interface which should be resizable on-the-fly uses transparent icons/images etc. For this application I'm trying to decide on using the new Direct2D API against ...
4
votes
3answers
166 views
What exactly is a Graphic Context?
What exactly is encapsulated by a Graphic Context (or Device Context in Windows)?
The various definitions across the net agree that a context encapsulates the parameters for the various graphics ...
4
votes
3answers
421 views
C# Drawing: What is the best way to draw a polygon with a hole in the middle
I have a shape that is defined by an outer border and then an inner border. IF there is no inner boarder, the shape is solid. If there is an inner border I want the polygon/path to be defined only ...
4
votes
1answer
208 views
Why does DrawImageUnscaled cause flickering when used from WM_NCPAINT?
I'm currently building a control derived from System.Windows.Forms.ContainerControl that has a border area I need to paint myself. Since there's no OnPaintNonClientArea to override, I built it myself ...
4
votes
2answers
448 views
Should we use OpenGL for 2D graphics?
If we want to make an application like MS Paint, should we use OpenGL for render graphics?
I want to mention about performance if using traditional GDI vs. OpenGL.
And if there are exist some better ...
4
votes
3answers
170 views
Is it possible to modify the origin of a display? (win32)
I have a number of applications which I cannot modify(no source), they are hard coded to draw at 0,0. Normally this is not a problem however a new project(kiosk) has come along where I need to draw a ...
4
votes
1answer
662 views
How to use GDI+ in C?
Disclaimer: I'm only getting started in C, so it's likely that I'm missing something obvious, or not thinking the right way! :)
How exactly would I go about using GDI+ in pure C?
As I understand it, ...
4
votes
3answers
1k views
How to create a quality splash screen odd shaped like VS 2010?
I've seen some neat splash screens like VS 2010, Adobe products, etc. I know in VS.NET you can set a transparency color, etc. but I have never been able to make one look nice that didn't have some ...
4
votes
3answers
610 views
How to genrate a monochrome bit mask for a 32bit bitmap
Under Win32, it is a common technique to generate a monochrome bitmask from a bitmap for transparency use by doing the following:
SetBkColor(hdcSource, clrTransparency);
VERIFY(BitBlt(hdcMask, 0, 0, ...
4
votes
2answers
704 views
Altering an embedded TrueType font so it will be usable by Windows GDI
I am trying to render PDF content to a GDI device context (a 24bit bitmap to be exact). Parsing the PDF stream into PDF objects and rendering the PDF commands from the content dictionary works well, ...
4
votes
1answer
884 views
Stable random color algorithm
Here we have an interesting real-world algorithm requirement involving colors.
N Pretty Colors: In order to draw a beautiful chart (i.e: pie chart) we need to pick a random set of N colors that are ...
4
votes
2answers
362 views
GDI fast scroll
I use GDI to create some custom textwidget. I draw directly to the screen, unbuffered.
now i'd like to implement some fast scrolling, that simply pixelshifts the respective part of the framebuffer ...
4
votes
1answer
712 views
how to fill gradient for roundrect in pure gdi (not gdi+)
just in pure gdi.
thoughts or code are all welcome.
4
votes
2answers
323 views
Memory/Handle/Gdi leak utility
I remember from past having a utility that would allow to leak various system resources, such as memory, handles and gdi. It had a small dialog where one would choose what to leak, it was nice for ...
4
votes
3answers
960 views
how do I do print preview in win32 c++?
I have a drawing function that just takes an HDC.
But I need to show an EXACT scaled version of what will print.
So currently, I use
CreateCompatibleDC() with a printer HDC and
...
4
votes
2answers
332 views
If window spans multiple monitors, I can't draw to it
If I have a window that spans both monitors on a multimonitor system, I can't seem to erase (paint black) the entire window. Instead, only the primary window is drawn black. The secondary remains the ...
4
votes
4answers
894 views
C# GDI Draw Points onto canvas using an offset?
I have an array of Point variables. When drawn using Graphics.Drawline, they create the expected image. My problem is that 0,0 is actually the center of the image (not the top left of my canvas as ...
4
votes
4answers
2k views
“Exclusive” DirectDraw palette isn't actually exclusive
We're maintaining an old video game that uses a full-screen 256-color graphics mode with DirectDraw. The problem is, some applications running in the background sometimes try to change the system ...
4
votes
2answers
776 views
GDI+ Dithering Problem
I have a C++ application that uses the Win32 API for Windows, and I'm having a problem with GDI+ dithering, when I don't know why it should be.
I have a custom control (custom window). When I receive ...