The Graphics Device Interface (GDI) is a Microsoft Windows application programming interface and core operating system component responsible for representing graphical objects and transmitting them to output devices such as monitors and printers. -Wikipedia

learn more… | top users | synonyms (1)

0
votes
0answers
21 views

.NET - Overriding printer's default for color

I am printing to a color printer. The printer's default setting for color is black-and-white. I have tried the following, but when I open the printer's preferences dialog, the color is still set to ...
0
votes
1answer
35 views

Convert bitmap bits from GetDIBits to jpeg for winsock transmission

I am making a screenshot and retreiving the bits of the bitmap into a char buffer. I am wanting to send this over winsock to another program. This is successfull but sending the bitmap is processor ...
0
votes
1answer
36 views

How can I highlight whatever substring I want in a custom drawn string?

I have been working on my own autocomplete combobox and textbox. At first I just searched for matches that contained as a substring whatever was in the .Text property of the textbox or combobox. That ...
0
votes
0answers
16 views

Out of memory exception in CreateGraphics (GdipCreateFromHWND)

on certain machines that vary in configuration (OS, graphics card and memory) I get an OutOfMemory exception. Some tests showed that there is no significant increase in virtual memory consumed. That's ...
1
vote
2answers
37 views

Double-buffering *framework* in C and Windows GDI

Background: My client has a very extensive proprietary forms library which is effectively implemented in C (actually, it's a proprietary object-oriented language that basically wraps Windows controls ...
0
votes
1answer
44 views

Pen color/style

In C# I define a pen using the following line, but I'm unable to set something similar in C++. I tried several options in C++ to select the Color object but no luck so far. I am mainly interested in ...
-2
votes
2answers
85 views

How do I print a string with a printer?

I'm writing an application that need to print some information that would came from a DataGridView, I already have the string I'd like to print, I just don't know how. I found some stuff on the web ...
0
votes
2answers
55 views

Handle scrolling of a WinForms control manually

I have a control (System.Windows.Forms.ScrollableControl) which can potentially be very large. It has custom OnPaint logic. For that reason, I am using the workaround described here. public class ...
0
votes
1answer
37 views

copying gdi+ bitmap into directx texture

I'm currently attempting to copy a gdi+ bitmap into a directx texture. I'm using DirectX9 due to Win XP restraints. The following is my code attempt: #include <gdiplus.h> #pragma comment(lib, ...
0
votes
0answers
15 views

Gdiplus: create bitmap from smaller bitmaps

I am doing some simple image processing on Bitmaps in Gdiplus. Instead of operating on a whole bitmap, I cut it using Bitmap.Clone, to create several smaller bitmaps, which I then process using ...
1
vote
1answer
18 views

MeasureCharacterRanges doesn't fit the character?

I try to measure the region enclosing each character in a string with this code: void Draw(HDC dc) { using namespace Gdiplus; Graphics graphics(dc); wstring chars; for(int i=32; ...
0
votes
1answer
36 views

How to print text to bottom left corner in page in C#

Code below is used to print order. Order can have variable number of lines written out by first DrawString call. Text Bottom line1 Bottom line2 must appear in bottom left corner in page. Code ...
1
vote
1answer
33 views

C# method CopyfFromScreen crashes after 200 uses?

For my program I need a method which takes a screenshot every half a minute. I googled and came up with this method: public static Bitmap CaptureScreen() { Bitmap BMP = new ...
0
votes
1answer
19 views

Embedded Font Causes a Crash

I have a WinForm app. I am using a custom font that is in my embedded resources. It works at first, but then causes the program to crash after a while. Using the following code as an example, if I ...
1
vote
1answer
132 views

How to save an image to BMP/PNG/JPG with GDI+?

Here I have a GUID for BMP: const GBmp: TGUID = '{b96b3cab-0728-11d3-9d7b-0000f81ef32e}'; I have some initialization with GdiplusStartup(...). Then I load a JPG and the ShowMessage says ...
1
vote
0answers
44 views

gdi+ generic error when drawing image on Graphics object

Consider the following code running in a windows service. Graphics g = Graphics.FromImage(printImage); for (int rows = 1; rows <= thumbRows; rows++) { for (int cols = 1; cols <= ...
0
votes
0answers
19 views

Better way to handle graphics matrices (instead of the Matrix class)

I'm creating a 2D drawing framework for .NET 2.0/GDI+. I need to be able to define transformations for different visuals, such as rotate and translate transforms. I also need to be able to transform ...
0
votes
1answer
46 views

How can I open a bitmap file , change it and then save it?

I am trying to open a bitmap file and then change it and save it, but I am getting some error. The code is as follow: var tempFileNamePath = Path.Combine(workingDirectory, fileName); Bitmap image = ...
0
votes
0answers
59 views

Loading PNG file. Need to get RGBA HBITMAP

I'm trying to create a splash screen that will show transparent png background. So at first I need to load png file into format that is acceptable for the UpdateLayeredWindow calls (basically HBITMAP ...
1
vote
1answer
61 views

A generic error occurred in GDI+ When uploading an image from Desktop application to web server using web api

I am trying to upload an image from my Windows Desktop application (VB.NET) to Web Server using web api The Code runs correctly in local machine. but fails when run on web server with the error ...
1
vote
1answer
56 views

Focused property is always true in Windows Forms control

I am currently working on a Windows Forms control library, and as part of this, I am writing a custom button control. It's very similar to the standard Button control, but it does have some ...
0
votes
2answers
31 views

Windows Hook based call - Potential GDI leak

I am trying to make a call to my own function - from a program that I don't have control over - using hooks to paint on the same window of the program. It works for sometime but then crashes making me ...
1
vote
1answer
24 views

Geometry of fonts

If I want to draw a text on a control, I can get "a bounding rectangle" first and place it at an appropriate place (using GetTextExtentPoint32 function). But I also need to know where some baselines ...
-1
votes
0answers
72 views

Graphical representation of an led project, hoping for direction [closed]

I am writing a GUI for an led project, and I want to create a virtual graphical representation of the toy to represent what it will look like in real time. I am fairly new to visual C#, so in my first ...
-3
votes
1answer
62 views

What is the theory of DrawCurve in GDI+ [closed]

I know DrawCurve draw a cardinal spline, but what is the algorithm. Anyone can tell me the theory, or give me the formula. thanks!
0
votes
2answers
44 views

User defined painting not visible

I have a Windows Forms application with a GroupBox, and a PictureBox as background image, and several clickable OvalShapes from the PowerPack. Now I need some labels for the OvalShapes, so I put a ...
3
votes
1answer
50 views

VisualStyleRenderer to bitmap

I need to draw a different progress bar through VisualStyleRenderer. Everything works fine if I use Graphics of OnPaint method. But since I want to save it in hard drive, I need to render progressbar ...
1
vote
1answer
126 views

GDI Write Bitmap to File in C#

I'm trying to Capture an Image from a window given the Handle/DC. I want to capture the Image with all the transparency and pixels so I decided I'd use GDI/GDI+. The below code is what I have, but ...
0
votes
1answer
58 views

Gdiplus Bitmap error

I'm trying to convert an HBITMAP to a Gdiplus Bitmap. My code is getting a screenshot with some code I found from google and putting it in an HBITMAP. I want to get the rgb values (specifically argb) ...
0
votes
0answers
91 views

Drawing Text with GDI+ on Layered Windows

I know this question has been asked before, but it was awhile go. The link is here C++ GDI+ drawing text on a transparent layered window. I used almost the exact coding and something weird happened. ...
0
votes
0answers
76 views

GDI+ Bug: Anti-Aliasing White On Transparency

The following code will create a transparent bitmap and then draw a white ellipse on it with anti-aliasing. using(var background = new Bitmap(500, 500)) using (var graphics = ...
1
vote
1answer
64 views

gdi32.GetObject doesn't work when running 64-bit

This code works fine when running 32-bit. But when I switch to 64-bit the GetObject method does not work and BITMAP struct is empty. IntPtr hBmp = ObtainValidBitmapHandleFromSystem(); BITMAP bmpData ...
1
vote
3answers
142 views

BinaryFormatter.Serialize( Image ) - ExternalException - A generic error occurred in GDI+

When I try to Serialize some images using the BinaryFormatter, I'll get a ExternalException - A generic error occurred in GDI+." After scratching my head for awhile, I decided to create a simple test ...
1
vote
2answers
77 views

How do I draw a rectangle onto an image with transparency and text

This is my first graphics based project and to begin with I need to be able to draw a rectangle onto a bitmap with transparency and text. I'm not sure where to begin with this. I've done a little ...
0
votes
0answers
34 views

How can I measure text size in a way browsers do?

I'm trying to measure the size of a string in pixels in an standalone application (windows or Java) but the size reported from this app does not match the size of the string reported in FF or IE. I ...
0
votes
3answers
101 views

A Generic error occured in GDI+ in Bitmap.Save method

I am working on to upload and same a thumnail copy of that image in a thumbnail forder. I am using following link: ...
1
vote
1answer
77 views

draw ellipse at runtime and use widen metod

**i draw ellipse at runtime using following code.in that code i used graphics path for drawing(actually this is project requirement )and used widen method for graphics path. but it gives runtime ...
1
vote
2answers
70 views

Color replacement GDI C#

Replace bitmap black pixels with transparency GDI C# Hey guys, Im just working on a 2d engine that renders sprites. And I need to replace de black pixels in the bitmaps with transparency; so that ...
0
votes
0answers
25 views

Drawing big round anchor linecap

I have to draw one big round anchor arrow. I uses this code but it gives small round anchor cap: Pen pen=new pen(Color.Black); pen.StartCap=LineCap.RoundAnchor; What to do? Give me any suggestion. ...
0
votes
0answers
64 views

Write text on .EPS image

I have created C#.NET code to dynamically write some text to a JPEG and PNG image. I used asp.net GDI+ to do this. The requirements were to write text with the following properties: Font type of ...
0
votes
0answers
62 views

C# GDI+ how to rotate one single image

i have been trying to make a game with C# GDI+. for this i want a image to rotate in the direction it is moving. public Point PlayerPosition = new Point(320, 240); public int PlayerDirection = 90; ...
0
votes
0answers
52 views

How to draw the sharpest possible image?

I know most people are always trying to get smooth settings but this time, since I am printing a barcode, I need to find out how to tell e.Graphics to print my image with the sharpest possible ...
0
votes
0answers
34 views

PageUnit problems

I'm trying to do some 2D drawing in C# using the GDI+ primitives and I'm having some problems: protected override void OnPaint( PaintEventArgs e ) { Graphics dc = e.Graphics; dc.PageUnit = ...
0
votes
0answers
23 views

PrintPreviewController With large Images

We use a PrintPreviewControl and draw to it's graphics object directly. Usually this consists of background images with other drawings on top. This is working perfectly except when we are having to ...
2
votes
1answer
64 views

Empty space between two shapes in GDI+

I am trying to draw a custom drop shadow in GDI+ (C#). I keep having this awkward look: I guess I could solve it by adding a pixel to the arc's width, but then the shapes overlap. I have ...
1
vote
0answers
69 views

Get Pages from MultiPage TIFF

I have a TIFF file that shows 5 pages when opened in Microsoft Document Imaging. I am trying to extract the 5 pages programmatically and return them in a Lis. The first page has an 8 bpp indexed ...
1
vote
0answers
45 views

How to create a 'hole' in an image in vb.net

I am trying to create a hole in my image using code, like this http://i1293.photobucket.com/albums/b595/electrogeekguy/fogofwardemo_zps6a6108c8.png so that when i draw my image you can see what is ...
1
vote
1answer
61 views

Biarc Rendering

I am creating a DXF parser for use by an industrial robot. The robot can only move in lines and arcs, so I've had to decompose ellipse entities into a series of biarcs (thanks to Keeper for the arc ...
0
votes
1answer
42 views

Generate a mask of the alpha channel from a bitmap

I need to generate a grey scale bitmap from the alpha channel of a System.Drawing.Bitmap. I tried using GetPixel and SetPixel but this does not work with bitmaps with a PixelFormat of ...
-1
votes
1answer
39 views

shared pointers and gdiplus issue [closed]

I have a function that I'm trying to use in order to set a shared pointer equal to another. The arguments that I pass in the function are I have declared a variable Gdiplus::Pen pen inside my main. ...

1 2 3 4 5 30