Drawing 2D lines using c#
-
Hai i have a doubt were can i draw 2D lines rather than bitmap and window form,can any one suggest me the better way to draw and save them
-
Hai i have a doubt were can i draw 2D lines rather than bitmap and window form,can any one suggest me the better way to draw and save them
The best way, is just to draw to a new Bitmap / Image, and then use its save method. And there's only 2 places you can draw: The Screen, and an offscreen image.
My current favourite word is: Bauble!
-SK Genius
-
Hai i have a doubt were can i draw 2D lines rather than bitmap and window form,can any one suggest me the better way to draw and save them
If you want to conserve space you could create a vector file. That is a file that saves the coordinates of the line (start point, end point, line thickness, line colour, anti-aliasing etc) and then just read the file each time you need to a draw the line(s) according to the vectors in the file. Regards Guy
You always pass failure on the way to success.