Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drawing with .NET

Tags:

I am looking for some Drawing class (Package) that will enable me in a easy way to draw images like the following.

alt text http://www.freeimagehosting.net/uploads/e96ab74410.jpg

I have no Experience with Drawing so I will be glad to hear suggestions.

My pic link

like image 889
Night Walker Avatar asked Feb 04 '10 09:02

Night Walker


1 Answers

Have a look at the GDI+ classes in the System.Drawing namespace.

Edit: I am really not sure what you mean when you keep asking for more abstract libraries. How are these classes not abstract enough? Graphics.DrawLine(), Graphics.FillEllipse() and so on.

Unless you are looking to do something very specific, like charting for instance, there is no other abstraction on top of this. You do want to draw lines, polygons, rectangles etc., don't you?

Can you explain what abstraction you would want? In pseudo code?

like image 50
Wim Avatar answered Oct 13 '22 08:10

Wim