不知有没有办法解决?Bitmap bp=new Bitmap(600,600);
Graphics g=Graphics.FromImage(bp);
FlowGraph.Flow flow=new FlowGraph.Flow();
flow.GraphObject=new ArrayList();
flow.LoadFromFile(Server.MapPath"FlowGraph/12_quexian.graph"));
flow.DrawGraph(g,30);
Response.ContentType="image/gif";
bp.Save(Response.OutputStream,System.Drawing.Imaging.ImageFormat.Gif);