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

learn more… | top users | synonyms

5
votes
4answers
105 views

Shake form on screen

I would like to 'shake' my winforms form to provide user feedback, much like the effect used on a lot of mobile OS's. I can obviously set the location of the window and go back and forth with ...
0
votes
1answer
41 views

c# draw - Add random lines in a image

I have an image which I just want to add some random lines in. I am not so familiar with c# draw features. Is there any simple way to add somewhere between 4-7 different length lines different places ...
0
votes
1answer
59 views

How to save an image from a picturebox to jpg

I have been able to save a file as a .jpeg, but the image won't load, has anyone got a suggestion? Private Sub Btnconfirm_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ...
0
votes
2answers
28 views

Draw persistent grid in TabPage (.Net, C#)

I need to display a persistent grid in a TabPage. My problems would be instantly solved if I could draw to the entire non-visible portion of the TabPage and prevent graphics from being erased when ...
0
votes
1answer
42 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 ...
0
votes
1answer
36 views

panel1.DrawToBitmap doesn't draw lines from DrawLine

I have a panel on which I'm drawing lines using: Point PreviousPoint = new Point (0,0); Point NewPoint = new Point (10,10); Pen MyPen = new Pen(Color.Black, 2); Graphics MyGraphics = ...
1
vote
1answer
44 views

GetPixel method is not found

I have a simple program, and ive included System.Drawing and I do not have an ability to use the GetPixel() method. It says its not found. What could be the reason for this? using System.Drawing; ...
0
votes
1answer
37 views

Global Project Static Variables

I have three windows libraries that are for drawing different types of bitmaps. The one thing that they all share in common is the: Font, colors, and pens. I would like to design a library that I ...
1
vote
1answer
24 views

Creating an array of graphic paths in vb.net

I dont know Why I am having trouble with this, but I keep getting 'not set to an instance of an object' exception every time. Does this make sense? I have this declared in the main form Private ...
0
votes
0answers
54 views

Thick line between labels (C#)

I want to make a sudoku field of labels, for which I have the code. Now I want thick lines between some labels so you can see which block of labels are together. This code makes the labels: const ...
0
votes
2answers
32 views

C# Custom color turning black

I've never used System.Drawing before so bear with me as this is a mich-mach of code I've found and put together. I'm trying to create an image with a top portion white and bottom portion another ...
11
votes
6answers
401 views

Add color options to System.Drawings.Color

In visual studio, when creating controls in the markup(or in code-behind) you can specify colors in HEX format like this: "#FFFFFF", but you also can select from the list of preset colors like: White, ...
0
votes
3answers
59 views

vb.net unused local variable

Updated to include more code. vb.net 2012 is giving me three warnings for the code below, saying unused variables. temp, filetype, and inde are all being warned as unused. Private Sub Next_Image() ...
0
votes
2answers
55 views

How to create a custom ToolTip with an image?

I want to create a custome tooltip with the folllowing contents: Image at the top right corner Text at the left side Currently I have a class who inherits from the ToolTip Objekt. class ...
0
votes
1answer
122 views

Graphics.DrawImage: Out of memory exception

I just can't for the life of me figure out why I'm getting an out of memory exception here, even after much research on various websites and forums. Is anyone able to shed some light on the root of ...
2
votes
1answer
34 views

Anti alias mode differences?

Is there a difference between these two Anti Alias modes? e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality I've tested ...
0
votes
3answers
109 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
2answers
43 views

How to clone a RectangleF

How do you easily clone (copy) a RectangleF in C#? There are obviously inelegant ways to do it, such as new RectangleF(r.Location, r.size), but surely there's a .Copy or .Clone method hiding ...
0
votes
2answers
38 views

Detecting mouse click on the node of polygone

I am creating a WindowsForms application. In this application I need to draw polygone, using the array with coordinates of polygone's vertexes(nodes). When user click on one of polygone's nodes, I ...
0
votes
2answers
95 views

gif image file displays red “x” on IE

To start off, I have searched google & SO (Images are showing up as red x's on IE, shows up fine in other browsers), tried out the suggestions, but they did not resolve my issue. I am trying to ...
0
votes
1answer
63 views

How to draw a multi-line string with trailing spaces in .NET

I am drawing strings using Graphics.DrawString and want trailing spaces to be included so I use StringFormatFlags.MeasureTrailingSpaces. For single line strings this works fine but I noticed that new ...
0
votes
2answers
114 views

How to find reason for Generic GDI+ error when saving an image?

Having a code that works for ages when loading and storing images, I discovered that I have one single image that breaks this code: const string i1Path = @"c:\my\i1.jpg"; const string i2Path = ...
0
votes
2answers
127 views

WinForms too many handles

I our production, my application caused two different exceptions: System.ArgumentException: Invalid Parameter. at System.Drawing.Image.get_RawFormat() at ...
1
vote
1answer
107 views

A generic error occurred in GDI+ again

I understand, what this message means (need to do Dispose for unmanaged resources), but really don't understand why it happens in my case: System.Drawing.Image imgAnimaha, imgNoanimaha; ...
0
votes
1answer
119 views

.NET System.Drawing differences in Windows Server 2008R2 64bit compared to all other windows (image is broken in 2008R2-64 but not other Windows)

I have been given a development PC that has Windows Server 2008R2 64bit (x86) installed, so it is used as a workstation. My development environment is VS2008 targeting .NET3.5 (YES, 2008!!!) In our ...
0
votes
1answer
62 views

Trouble displaying an Image on my Panel

I'm trying to draw images for a game on to a Panel in C#. I get no images being drawn and I can't figure out why this method is never called: private void playerPanel_Paint(object sender, ...
0
votes
3answers
67 views

Can this method be made static?

Can I make this method static with non problem in an asp.net page (request queuing and thread safety)? public Image MakeImage() { Image objImage = new Bitmap(100, 100); Bitmap bitmapimage = ...
0
votes
0answers
111 views

draw rectangle emguCv

i want to draw rectangle around circle with emgu cv.. My matlab code: [B,L] = bwboundaries(binarea,'noholes'); stats = regionprops(L,'Area','Centroid','BoundingBox'); figure,imshow(im); hold on ...
1
vote
2answers
40 views

Compare ColorBlends

How can I check if two ColorBlends have different Colors values? I tried the following code ColorBlend Blend1 = new ColorBlend(); Blend1.Colors = new Color[] { Color.White, Color.Black }; ...
0
votes
1answer
52 views

Memory allocated with Marshal.AllocHGlobal is getting corrupted?

I need to create Bitmap objects with direct access to their pixel data. LockBits is too slow for my needs - its no good for rapidly recreating (sometimes large) bitmaps. So I have a custom ...
1
vote
1answer
122 views

properly using the Drawing.Rectangle with specified points c# winforms

I am trying to get an image for every corner of a scanned document ( top left and right, bottom left and right). Below is how i attempted to implement that but when i looked at the saved images they ...
0
votes
1answer
133 views

drawing a rectangle for a bitmap clone

I have a bitmap in which i clone and specify a rectangle - the current rectangle has certain width and height values which i've used for checking the rectangle for a QR code. I noticed this checks the ...
1
vote
2answers
193 views

Flip text in Vb.net

I have a problem in flipping text in VB.NET It is flipped but with no line brake See the Link: http://www.spider-news.net/Flip_Text_question.JPG Imports System.Drawing.Drawing2D Imports ...
0
votes
2answers
123 views

How would I go about drawing in a paint program with pressure sensitivity?

I am writing a paint program of sorts, using C# .Net/WinForms and pressure sensitivity is a must. I have everything set up and am getting pressure information from the tablet pen. None of this is an ...
1
vote
1answer
96 views

Most efficient way to draw on the top of the Screen (Overlay layer). in .Net?

I want to draw elements and move them on the top of the screen whatever the user is doing. If I go in C# with Windows Forms I have 2 solutions : Create a transparent-background Form and Draw on ...
1
vote
0answers
135 views

Saving an Image in VB.NET

I have a little code for saving an image from an URL in VB.NET but im not finding the location where it saves the image, i added a location string but i dont know how to use it in the code. How do i ...
1
vote
1answer
203 views

Graphics Object in vb.net

I just started creating graphics in vb.net. I created a windows form and double clicked on it. I then got a method which was Form Load method. In this method i wrote the following code. Dim g As ...
0
votes
2answers
148 views

Out of memory exception in (System.Drawing())

I am having trouble rotating an image. The size of the image I'm trying to rotate is around 300kB. When I rotate it from the zero degree to 360, increasing the angle one degree at a time, I get an out ...
0
votes
1answer
87 views

Optimal 2D Tile rendering in C#

So I'm making a simple 2D Sidescrolling game in C# however I've found that using Graphics.drawImage doesn't particularly allow me to update the tiles as I wish. For example, I tell it to draw the ...
0
votes
0answers
60 views

ImageLayout in e.DrawImage()

I have a Imageobject and when I want to draw it via DrawImage, I want to use ImageLayout to draw strech, tile, center or something like that. But I can't find a overloaded method in ...
2
votes
1answer
482 views

Can't reference system.drawing.dll

i'm trying to resize images with ImageResizer, but keep getting a compilation error "Error 1 The type 'System.Drawing.Bitmap' is defined in an assembly that is not referenced. You must add a ...
0
votes
1answer
556 views

Printing multiple document in c# window application

In c# window application I having a trouble with printing documents, when its become more than 1 page. See the following code which I am using for printing document and its working fine, while there ...
0
votes
0answers
82 views

Add Image Layer on top of Chart in C#

I am using the System.Web.UI.DataVisualization namespace in C# to generate a Chart. I want to add a layer of text on top of the Chart that I've already created. However, I can't seem to figure out how ...
0
votes
0answers
171 views

printing the content of textboxes and listview

I was able to print the content of my textboxes and listview using the following codes... \ for my form RectangleF srcRect = new Rectangle(0, 0, this.BackgroundImage.Width, ...
0
votes
0answers
81 views

mono-test-install reveals I have a broken System.Drawing

I've gotten the tarball of Mono 3.0.3 from the mono project and compiled it on an Ubuntu 12.10 distro. The configure, make and make install commands all ran without errors. I ran the ...
0
votes
2answers
138 views

When converting an uploaded jpeg to byte array it finishes as png?

I am uploading a jpeg image and storing it in a database as a byte array. However when i retrieve the image and select 'save as' the image is now a PNG and the file size is 60-70% larger. Here is the ...
0
votes
0answers
137 views

White pixels when resizing semi-transparent bitmap

Sometimes when I resize semi-transparent png's I get weird white pixels on shapes edges. This happens only with images that have shapes (not photos) and when InterpolationMode is set to ...
1
vote
1answer
160 views

Create jpg and insert into word document

I'm starting to do my first drawing (jpg) with c#. I'd like to insert it directly into a word document. Could I do that without saving my jpg into a temporary directory? in this moment, I can only ...
1
vote
2answers
205 views

how to draw string to an image from left bottom corner to right upper corner

Here is my code: Graphics g = Graphics.FromImage(newImage); var myBrush = new SolidBrush(Color.FromArgb(32, 205, 205, 205)); g.DrawString(label, new Font("verdana", 10, GraphicsUnit.Pixel), ...
0
votes
0answers
127 views

How to Rotate a Bitmap and add to another non-rotated image (GDI+, Graphics)

I have a base image (baseImage.jpg) and I want to add another image to it (addImage.jpg), but I want to rotate the addImage.jpg first. Because the user can change the location and rotation of ...

1 2 3 4 5 9