Tagged Questions

System.Drawing is a namespace of the .NET framework. It provides access to GDI+ basic graphics functionality.

learn more… | top users | synonyms

14
votes
3answers
541 views

Why is DarkGray lighter than Gray?

Simple curiosity here, tinged with some practical concerns because I get caught out by this occasionally. How come Color.DarkGray is lighter than Color.Gray?
13
votes
1answer
856 views

.net2.0 vs .net 4.0 gdi+ difference?

I have a really weird problem where I have an application that does a lot of involved GDI+ manipulation of pictures. Such as cropping zooming etc. My application works fine in .net 2.0, but in .net ...
12
votes
2answers
379 views

I can't break out of my ClipRectangle and I want to cry

When overriding the OnPaint method of a custom control I'm supplied with a PaintEventArgs, which contains a Graphics object and a ClipRectangle. The ClipRectangle is too small for my tastes and so I ...
10
votes
3answers
1k views

Alternatives to System.Drawing for use with ASP.NET?

After several days of tracking down bizarre GDI+ errors, I've stumbled across this little gem on MSDN: Classes within the System.Drawing namespace are not supported for use within a Windows or ...
9
votes
1answer
985 views

Screen capture with C# and Remote Desktop problems

I have a C sharp console application that captures a screenshot of a MS Word document serveral times. It works great, but when I place this application on a remote windows XP machine it works fine ...
8
votes
5answers
3k views

System.Drawing in Windows or ASP.NET services

According to MSDN, it is not a particularly good idea to use classes within the System.Drawing namespace in a Windows Service or ASP.NET Service. Now I am developing a class library which might need ...
7
votes
3answers
2k views

C# Drawstring Letter Spacing

Is is somehow possible to control letter spacing when using Graphics.DrawString? I cannot find any overload to DrawString or Font that would allow me to do so. g.DrawString("MyString", ...
7
votes
3answers
10k views

Silverlight 4.0: How to convert byte[] to image?

public Image Base64ToImage(string base64String) { // Convert Base64 String to byte[] byte[] imageBytes = Convert.FromBase64String(base64String); MemoryStream ms = new ...
7
votes
3answers
8k views

Convert Pixels to Inches and vice versa in C#

I am looking to convert pixes to inches and vice versa. I understand that I need DPI, but I am not sure how to get this information (e.g. I don't have the Graphics object, so that's not an option). ...
6
votes
6answers
199 views

Avoiding disposing system-defined Pen and Brush instances

I understand it is best practise to call Dispose() on instances of Pen and Brush, except if they've been set to the system-predefined values (eg. System.Drawing.Brushes, System.Drawing.Pens or ...
6
votes
1answer
147 views

In the .NET framework, why are there PointF (float) and no “PointD” (double)?

Can anyone explain why, in the .NET framework, there are PointF structures (using the single-precision float type) and no "PointD" (using the double-precision double type)? Did they establish that ...
6
votes
2answers
1k views

System.Drawing - bad text rendering using DrawString on top of transparent pixels

When rendering text into a bitmap, I find that text looks very bad when rendered on top of an area with non-opaque alpha. The problem is progressively worse as the underlying pixels become more ...
6
votes
5answers
349 views

Using System.Drawing, how can I draw something that imitates the effect of a yellow highlighting marker?

I want what's "behind" the yellow to show through. EDIT 1: But, if I'm drawing on "white", I'd like the marker color to retain its pure yellowness. EDIT 2: @Kevin's answer is probably correct, ...
6
votes
4answers
7k views

How do you Draw Transparent Image using System.Drawing?

I'm trying to return a transparent GIF from an .aspx page for display within a web page. I am trying to get the image to have transparency, but I just keep getting Black being where the image should ...
5
votes
6answers
379 views

How to make Silverlight version of existing C# code that relies on System.Drawing namespace

We have pretty much C# 2.0 code that heavily relies on System.Drawing namespace. Also there is some WinGDI dependencies (via interop). How would you recommend to tackle the problem of making ...
5
votes
2answers
276 views

MSChart Unhandled Overflow exception after zooming

This Question has been languishing un-answered on the MSChart forum for over a year. I'm continually getting an overflow exception on a chart. I'm setting up my chart as follows: ...
5
votes
2answers
824 views

How can I iterate through each pixel in a .gif image in C#?

I need to step through a .gif image and determine the RGB value of each pixel, x and y coordinates. Can someone give me an overview of how I can accomplish this? (methodology, which namespaces to ...
4
votes
1answer
36 views

c# system.drawing calculate size of font for 1 character to fill a square image

If I have a System.Drawing.Bitmap with equal dimensions e.g. 100x100, 50x50 and I wanted to use this code to draw in a single character: StringFormat stringFormat = new StringFormat(); ...
4
votes
3answers
136 views

C# WinForms: Drawing with one or more additional threads. How?

In case I have a big drawing with all kinds of geometric forms (lines, rectangles, circles, e.t.c.) it takes a lot of time for the thread to draw everything. But in real life, one building is built by ...
4
votes
1answer
226 views

Possible memory leak in Zxing's System.Drawing.Bitmap

I am currently working with Monotouch. I have an application which opens the camera and then needs to process the image that is currently being captured. I am using code which is very similar to ...
4
votes
2answers
1k views

Help to resolve 'Out of memory' exception when calling DrawImage

About one percent of our users experience sudden crash while using our application. The logs show below exception, the only thing in common that I've seen so far is that, they all have XP SP3. Thanks ...
4
votes
2answers
495 views

How to know if a GraphicsPath contains a point in C#

I'm using .NET to draw a diagram, and I want to highlight objects when the user performs a click on them. It is easy when a figure is fully contained in a rectangle: if (figure.Bounds.Contains(p)) // ...
4
votes
2answers
450 views

Calculating Text Wrapping in the .NET DrawingContext DrawText method

I'm working on a project that has me approximating text rendered as an image and a DHTML editor for the text. The images are rendered using the .NET 4 DrawingContext object's DrawText method. The ...
4
votes
2answers
657 views

System.Drawing.Color => System.Windows.Media.Color

System.Drawing.Color drawRedColor = System.Drawing.Color.Red; System.Windows.Media.Color mediaColor = ?drawRedColor.ToMediaColor();?
4
votes
1answer
260 views

.net DrawString / StringFormat problem

I'm developing a .net 3.5 Win Forms program and I've run into an "interesting" problem with text drawing. I'm implementing a text editing control and it draws text with DrawString() and ...
4
votes
4answers
451 views

Loading a file to a Bitmap but leaving the original file intact

How to do this in C#? If I use Bitmap.FromFile(), the original file is locked. If I use Bitmap.FromStream(), the original file is not locked, but the documentation says "You must keep the stream ...
4
votes
1answer
453 views

Write metadata to PNG image in .NET

I see more than a few questions asking how to read metadata from an image, but I haven't seen as many asking how to write metadata. Basically, I need to add one item of metadata ("ImageDescription") ...
4
votes
1answer
635 views

When constructing a Bitmap with Image.FromHbitmap(), how soon can the original bitmap handle be deleted?

From the documentation of Image.FromHbitmap() at http://msdn.microsoft.com/en-us/library/k061we7x%28VS.80%29.aspx : The FromHbitmap method makes a copy of the GDI bitmap; so you can release the ...
4
votes
4answers
932 views

System.Drawing.Icon constructor throwing “Operation completed successfully” exception

On a Windows XP machine, the following code is throwing a System.ComponentModel.Win32Exception with the message "The operation completed successfully" System.Drawing.Icon icon = new ...
4
votes
4answers
382 views

Drawing vertically stacked text in WinForms

Preferably using a Graphics object, how do you draw a string so that the characters are still oriented normally, but are stacked vertically? Hopefully this rough picture conveys what I mean:
4
votes
4answers
6k views

Cannot render image to HttpContext.Response.OutputStream

Basically I am trying to render a simple image in an ASP.NET handler: public void ProcessRequest (HttpContext context) { Bitmap image = new Bitmap(16, 16); Graphics graph = ...
4
votes
1answer
631 views

Image.FromHbitmap WPF equivalent

Is there a System.Drawing.Image.FromHbitmap equivalent in WPF? Also, is it possible to dispose the handle properly after creating an image? Thank you.
3
votes
4answers
57 views

how can I convert System.Drawing.Icon to System.Drawing.Image?

I'm getting icon from another application using this: Icon IEIcon = Icon.ExtractAssociatedIcon(@"C:\Program Files\Internet Explorer\iexplore.exe"); how to convert it to System.Drawing.Image? ...
3
votes
0answers
56 views

How correct Bug drawing rectangle in desktop

I would like to capture a desktop area drawing a rectangle in desktop. For achieve this, I have developed a class called MouseHooker which install a global mouse hook , process mouse messages and ...
3
votes
1answer
52 views

How can I save a Panel in my form as a picture?

I have a form that has 2 panels. I'm trying to save the contents of Panel2 as an image. I saw a thread that talked about using the screen capture to do this, but I can't find the thread anymore. Also ...
3
votes
1answer
76 views

.NET: What does Graphics.DrawImageUnscaled do?

It is not well known, that if you draw an image, e.g.: graphics.DrawImage(image, top, left); the image will be scaled. This is because DrawImage looks at the dpi setting of the image (e.g. 72dpi ...
3
votes
1answer
84 views

Isolating unmanaged crashes under Mono

We have a Mono application under Linux that does image processing on a bunch of files. For this we (among other things) use System.Drawing, and for the most part it serves us well. Occasionally ...
3
votes
1answer
201 views

Adding text to the Tool Strip Progress Bar

I am trying to add some text to a Tool Strip Progress Bar but I have thus far been unsucessful, here is some code I found HERE: private void pbPrecentage(ToolStripProgressBar pb) { ProgressBar p ...
3
votes
2answers
229 views

Is there any reason GDI+ would be slower on a 64-bit Operating System (or maybe it's Windows 7 related)

Background I'm working on an application that is supposed to work on every windows platform from XP onwards in the same manner. Through the .NET framework this has been very easy, for the most part. ...
3
votes
1answer
100 views

Window dimming in WinForms .NET

Many times I've seen an effect in Adobe Flash that gradually reduces visibility of the background window, for example when you preview a video or image (in Lightbox). It would be great to have such ...
3
votes
2answers
446 views

How to draw a rotated string as an image with System.Drawing?

I am drawing strings to images. The size of the images is dynamic, or in other words, the images are as large as necessary to display the strings. To achieve that I am measuring the size with ...
3
votes
1answer
412 views

Create a polygon filled with a tiled image in c#

I'm creating an application which visualises a picture frame as the user designs it. To create the frame I am drawing 4 polygons which represent the physical bits of wood and using a TextureBrush to ...
3
votes
1answer
506 views

Outline text with System.Drawing?

I have the following code. Is there an easy way to put an outline on the text I am writing? var imageEncoder = Encoder.Quality; var imageEncoderParameters = new EncoderParameters(1); ...
3
votes
4answers
525 views

How to Create Subset Fonts in .NET?

I have a Silverlight application that I need to embed some less-than-common fonts in. It's simple enough for me to just copy over the TTF/OTF and compile that with my app. However, in many cases, only ...
3
votes
3answers
558 views

Undo button for System.Drawing?

I am making a image editor kinda for own enjoyment and was wondering how could I make a undo button to undo the last paints I did? I want to know how I would about this, a tutorial or sample code ...
3
votes
3answers
1k views

Graphics.MeasureCharacterRanges giving wrong size calculations in C#.Net?

I'm trying to render some text into a specific part of an image in a Web Forms app. The text will be user entered, so I want to vary the font size to make sure it fits within the bounding box. I have ...
3
votes
3answers
2k views

C# graphics flickering

I am working on kind of drawing program but I have a problem with flickering while moving a mouse cursor while drawing a rubberband line. I hope you can help me to remove that flickering of line, here ...
3
votes
1answer
281 views

Convert an Icon to IPicture in .NET 4.0?

One of the standard and (somewhat) supported answers was to use Support.IconToIPicture from the Microsoft.VisualBasic.Compatibility assembly. However, in .NET 4.0, "This API is now obsolete". Yes, ...
3
votes
3answers
838 views

Optimising PNG output from System.Drawing in .Net

I have a routine which reads in an image, resizes it and positions it on a new background (brand new bitmap, just the size is set). This all works absolutely perfectly, but now I would like to reduce ...
3
votes
1answer
414 views

Can I “draw”/create an image with a given text with powershell?

I just wondered if it would be possible to create a small, simple jpg, png, gif with a given Text in powershell: e.g: a small square, 250px × 61px, yellow background and black text on it: "Test" ...

1 2 3 4 5 6