Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there anyway to get a graphics object within console program?

Tags:

c#

gdi+

I am wondering how to create a graphics object from console program rather than windows form? Anyway to do it?

like image 982
Jack Lee Avatar asked Oct 09 '22 19:10

Jack Lee


1 Answers

It depends what you want to draw on.

You could call Graphics.FromImage().

like image 86
SLaks Avatar answered Oct 12 '22 12:10

SLaks