日期:2014-05-17  浏览次数:20627 次

Graphics g = e.Graphics 这种在WEB里应怎么表示呀~
Graphics g = e.Graphics 这种在WEB里应怎么表示呀~

------解决方案--------------------
web程序的结果都是HTML。不用e.Graphics,Web画图使用
Bitmap objBitMap = new Bitmap(400, 200); 
Graphics objGraphics; 
objGraphics = Graphics.FromImage(objBitMap); 
之类的,参见

http://dotnet.aspx.cc/article/221bc601-1a1b-4e1f-883d-04b043659703/read.aspx