谢谢老兄,你太伟大了,以后还请多多指教

2006-01-18 10:42
|
|

2006-01-18 11:17
2006-01-18 14:01
2006-01-18 14:52
你查下文档就知道了,jackey163的程序没问题
另外画曲线是可以的用Graphics.DrawCurve,控制张力就行
[此贴子已经被作者于2006-1-18 15:04:25编辑过]

2006-01-18 15:04
2006-01-18 23:39
|
|
行 128: string strFilePath = @"d:\1.gif"; //这是要保存图片的路径,你可以自己设定
行 129: bitmap.Save(strFilePath, ImageFormat.Gif); //这是保存图片命令
有绝对路径和相对路径,我写的是绝对路径,
B/S 里相对路径可以用:bitmap.Save(Server.MapPath("/mypic.gif"),ImageFormat.Gif);
C/S :
string strFilePath = Directory.GetCurrentDirectory(); //获取当前程序所在目录
strFilePath += @"\jackey.gif";
bitmap.Save(strFilePath, ImageFormat.Gif);
[此贴子已经被作者于2006-1-19 18:10:41编辑过]

2006-01-19 16:19
2011-06-07 11:45