So I Tried Graphics Tonight For The First Time
-
While Pete had explained that dispose should be used, he hadn't explained why, or how to best do it. I felt it worth a (slightly) more detailed response. The only problem with drawing in the Click event for learning purposes is that it can confuse more than elucidate - look at the number of "I drew it and it disappeared" questions we get. Starting off with drawing into the Paint event, with an existing Graphics context just makes it a bit easier for beginners. They can them be introduced to the concept of graphics contexts for other objects. :-D
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.
Hey, lemme say sorry for not writing in the correct grammar. What i said was:
Som wrote:
Wise men have already spoken. So, no need to answer the question asked about disposing.
and what i meant
Wise men have already spoken. So, I do not need to answer the question asked about disposing.
he he he. I was talking about both of you. I do not deny that writing in Paint event is incorrect. I am only saying that it is not necessary and shouldn't be considered as a norm. Thats all. By the way, our so long discussion might be confusing the poor guy who wrote the code for the first time :laugh: -
Big mistake... I've avoided it for decades, as Windows makes it so hard to do - at least through the eyes of a tyro. But it's time I learned it, and I sat down tonight intending to do so. I thought I'd start with drawing a simple circle on a form, and searching in Help returned a likely bit with sample code for drawing a rectangle and a circle within it, along with a button_Click handler to call the drawing function. I copied and pasted the sample code into my 800x600 form, just to try it out. Then I added a button1 object to provide the event. The code is:
public partial class FlowCalcs : Form
{
public FlowCalcs()
{
InitializeComponent();
}
private void DrawIt()
{
System.Drawing.Graphics graphics = this.CreateGraphics();
System.Drawing.Rectangle rectangle = new System.Drawing.Rectangle(
100, 100, 200, 200);
graphics.DrawEllipse(System.Drawing.Pens.Black, rectangle);
graphics.DrawRectangle(System.Drawing.Pens.Red, rectangle);
}
private void button1_Click(object sender, EventArgs e)
{
DrawIt();
}
}When I debugged it, absolutely nothing happened - no rectangle, no circle, and no errors. I would welcome an error message, since occasionally Microsoft divulges some tiny bit of information that Google can find a solution for. But no such luck this time - it executes perfectly and does nothing. Can someone lend a clue to the clueless? I haven't any idea where to go next...
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
Hi Roger, I agree with what the others have said. And I add an example[^] that contains the relevant bits. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
Hi Roger, I agree with what the others have said. And I add an example[^] that contains the relevant bits. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
Now I remember why I gave up trying to do any graphics work when Windows came out. :sigh:
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
-
Wise men have already spoken. So, no need to answer the question asked about disposing. Your suggestion is right about doing the paint part in Form.Paint event. However, I don't see anything wrong in doing it in Button_Click for learning purposes. Doing all drawing during paint may become an herculean task. I prefer doing my drawing on a bitmap at different occasions and draw the bitmap during Form.Paint. This imitates double buffering and saves from doing any calculations that may be required in Form.Paint every time the form is painted.
Som Shekhar wrote:
I don't see anything wrong in doing it in Button_Click for learning purposes
For the most part yes, but many beginners get the idea that that is a "best practice" and never progress -- much like all the books that show data access in click handlers.
-
Hi Roger, I agree with what the others have said. And I add an example[^] that contains the relevant bits. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
Hey Luc, Is there any Graphics Library available for .Net which does more than what GDI+ does? I mean something that takes care of some advanced functions like layering? I have an interest in printing multiple png images with transparency, being able to drag and drop them. Also, having multiple layers like in Adobe Photoshop? Ofcourse I mean open source/free. Som
-
Big mistake... I've avoided it for decades, as Windows makes it so hard to do - at least through the eyes of a tyro. But it's time I learned it, and I sat down tonight intending to do so. I thought I'd start with drawing a simple circle on a form, and searching in Help returned a likely bit with sample code for drawing a rectangle and a circle within it, along with a button_Click handler to call the drawing function. I copied and pasted the sample code into my 800x600 form, just to try it out. Then I added a button1 object to provide the event. The code is:
public partial class FlowCalcs : Form
{
public FlowCalcs()
{
InitializeComponent();
}
private void DrawIt()
{
System.Drawing.Graphics graphics = this.CreateGraphics();
System.Drawing.Rectangle rectangle = new System.Drawing.Rectangle(
100, 100, 200, 200);
graphics.DrawEllipse(System.Drawing.Pens.Black, rectangle);
graphics.DrawRectangle(System.Drawing.Pens.Red, rectangle);
}
private void button1_Click(object sender, EventArgs e)
{
DrawIt();
}
}When I debugged it, absolutely nothing happened - no rectangle, no circle, and no errors. I would welcome an error message, since occasionally Microsoft divulges some tiny bit of information that Google can find a solution for. But no such luck this time - it executes perfectly and does nothing. Can someone lend a clue to the clueless? I haven't any idea where to go next...
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
I tried a little of that a while back, and found it not to be as straight-forward as I had hoped. I only needed to draw some lines and I got it working.
-
Now I remember why I gave up trying to do any graphics work when Windows came out. :sigh:
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
Really? I don't find it hard at all, and Windows does a lot of things for you. You don't have to care about windows being partly hidden, getting uncovered, minimized, etc. It will repaint for you, assuming you did it right to start with. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
I tried a little of that a while back, and found it not to be as straight-forward as I had hoped. I only needed to draw some lines and I got it working.
Then don't stop; the first line is the hardest :laugh:
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
Hey Luc, Is there any Graphics Library available for .Net which does more than what GDI+ does? I mean something that takes care of some advanced functions like layering? I have an interest in printing multiple png images with transparency, being able to drag and drop them. Also, having multiple layers like in Adobe Photoshop? Ofcourse I mean open source/free. Som
I'm not experienced with any additional library, I tend to write the code I use myself. Mostly from reading forums like this one, I must warn you transparancy is a bit tricky in Windows. You may want to look to some of the graphics articles at CodeProject; and then there is GIMP which could inspire you. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
-
Then don't stop; the first line is the hardest :laugh:
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
naah.. the hardest part is to fight flickering ;) when anything u do in windows doesn't work :D
-
While Pete had explained that dispose should be used, he hadn't explained why, or how to best do it. I felt it worth a (slightly) more detailed response. The only problem with drawing in the Click event for learning purposes is that it can confuse more than elucidate - look at the number of "I drew it and it disappeared" questions we get. Starting off with drawing into the Paint event, with an existing Graphics context just makes it a bit easier for beginners. They can them be introduced to the concept of graphics contexts for other objects. :-D
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.
He wasn't talking about me. He said wise. ;) Good explanation though and you might want to consider posting it as a tip/trick so that it can be easily linked to in response to other questions.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Hey Luc, Is there any Graphics Library available for .Net which does more than what GDI+ does? I mean something that takes care of some advanced functions like layering? I have an interest in printing multiple png images with transparency, being able to drag and drop them. Also, having multiple layers like in Adobe Photoshop? Ofcourse I mean open source/free. Som
-
I'm not experienced with any additional library, I tend to write the code I use myself. Mostly from reading forums like this one, I must warn you transparancy is a bit tricky in Windows. You may want to look to some of the graphics articles at CodeProject; and then there is GIMP which could inspire you. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
GIMP is what drove me to try drawing in Windows. :-O
"A Journey of a Thousand Rest Stops Begins with a Single Movement"
-
naah.. the hardest part is to fight flickering ;) when anything u do in windows doesn't work :D
The hardest part was keeping them where I want them as the underlying control scrolls, horizontally and vertically. :sigh:
-
Then don't stop; the first line is the hardest :laugh:
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read formatted code with indentation, so please use PRE tags for code snippets.
I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).
Just don't go one toke over the line.
-
This gets a little complex, but: The Graphics object is a limited resource, which contains unmanaged memory. What that means is that it uses memory which is not on the normal C# heap, or the stack - it is in a different area completely, and the .NET garbage collector will not process it. When your method ends, the last reference to the object is destroyed, so it becomes available to be garbage collected - which is fine. But, the GC will only try to dispose of it when it runs short of managed memory - which could be in a few weeks time, you just don't know! In the meantime, all that unused, unmanaged memory is sitting there, being wasted. If you manually call Dispose() on your object when you are finished with it, the resources are released immediately, and all is well. The easiest way to do this is to wrap you object in a
using
block:using(Graphics g = CreateGraphics())
{
... use the Graphics object
}The system will then call Dispose at the end. I probably haven't explained this too well, but if you look in any reasonable book on C#, it will talk about it in loads more detail! BTW: I wouldn't do the drawing in the Button.Click event - do it in the Form.Paint event - which supplies you with a graphics context in e.Graphics - and use the Button.Click to set any parameters (such as where you want it, what color, etc.) then call Invalidate() to force a re-draw.
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.
I'm not sure it's a big deal. This seems to work fine:
private void button1_Click(object sender, EventArgs e)
{
Random rnd = new Random((int)(DateTime.Now.Ticks % int.MaxValue));
for (int i = 0; i < 100000; i++)
{
Graphics g = this.CreateGraphics();
g.DrawEllipse(Pens.Blue, new Rectangle(rnd.Next(0, 50),
rnd.Next(0, 50), rnd.Next(55, 100), rnd.Next(55, 100)));
}
}I'm sure it's not a bad idea to manually dispose of the Graphics object, but I'm not sure it's entirely necessary to make sure one does so.
-
I'm not sure it's a big deal. This seems to work fine:
private void button1_Click(object sender, EventArgs e)
{
Random rnd = new Random((int)(DateTime.Now.Ticks % int.MaxValue));
for (int i = 0; i < 100000; i++)
{
Graphics g = this.CreateGraphics();
g.DrawEllipse(Pens.Blue, new Rectangle(rnd.Next(0, 50),
rnd.Next(0, 50), rnd.Next(55, 100), rnd.Next(55, 100)));
}
}I'm sure it's not a bad idea to manually dispose of the Graphics object, but I'm not sure it's entirely necessary to make sure one does so.
Don't forget that the Graphics object (along with Pens, Brushes, etc.) do not just allocate unmanaged memory - they also allocate GDI handles, which are a limited system resource. If you do not release them, there is no guarantee that your software will continue to work in all environments. Using Dispose on all applicable objects is considered good practice because it does reduce the chances of unpredictable failures now or in the future. On a side note: If your code executed only once a second, it would execute 100000 Graphics object creations in just over a day. How long would it last before it started to get problems? I dunno; that is the fun of memory leaks!
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.
-
Don't forget that the Graphics object (along with Pens, Brushes, etc.) do not just allocate unmanaged memory - they also allocate GDI handles, which are a limited system resource. If you do not release them, there is no guarantee that your software will continue to work in all environments. Using Dispose on all applicable objects is considered good practice because it does reduce the chances of unpredictable failures now or in the future. On a side note: If your code executed only once a second, it would execute 100000 Graphics object creations in just over a day. How long would it last before it started to get problems? I dunno; that is the fun of memory leaks!
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.
OriginalGriff wrote:
If your code executed only once a second, it would execute 100000 Graphics object creations in just over a day.
Did you see the for loop? That's how many it creates per button click. There was not much of an increase in memory usage.
OriginalGriff wrote:
they also allocate GDI handles, which are a limited system resource
That might be a valid concern.
-
OriginalGriff wrote:
If your code executed only once a second, it would execute 100000 Graphics object creations in just over a day.
Did you see the for loop? That's how many it creates per button click. There was not much of an increase in memory usage.
OriginalGriff wrote:
they also allocate GDI handles, which are a limited system resource
That might be a valid concern.
aspdotnetdev wrote:
Did you see the for loop?
I did - but I've only had one cup of coffee this morning, and explained what I meant badly. What I meant was: In the real world, your code would not necessarily sit on a button click, but would react to what else is going on. If you had your drawing code in a method that was executed frequently (by a timer update, or other external event) then at a rate of one execution per second, 100000 Graphics object creations would happen in just over a day.
I have learnt that you can not make someone love you, all you can do is stalk them and hope they panic and give in. Apathy Error: Don't bother striking any key.