在问我想问的问题之前,让我先介绍一下我的问题。
我的公司在我们正在使用 ASP.NET MVC 开发的网站上工作。其中一个页面需要显示一个显示有向图的图像(该图是使用Microsoft.Glee图形库创建的)。创建图表的方法如下:
private bool CreateGraph(XDocument document, string graphPath)
{
try
{
if (document.Descendants("Nodes").Count() == 0)
return false;
Microsoft.Glee.Drawing.Graph graph = new Microsoft.Glee.Drawing.Graph("graph");
string id, parent;
foreach (var node in document.Descendants("Nodes"))
{
id = node.Attribute("Id").Value;
parent = node.Attribute("Parent").Value;
Microsoft.Glee.Drawing.Edge edge = graph.AddEdge(parent, id);
edge.TargetNode.Attr.Shape = Microsoft.Glee.Drawing.Shape.Circle;
edge.SourceNode.Attr.Shape = Microsoft.Glee.Drawing.Shape.Circle;
}
Microsoft.Glee.GraphViewerGdi.GraphRenderer renderer = new Microsoft.Glee.GraphViewerGdi.GraphRenderer(graph);
renderer.CalculateLayout();
Bitmap bitmap = new Bitmap((int)graph.Width, (int)graph.Height, PixelFormat.Format32bppPArgb);
renderer.Render(bitmap);
bitmap.Save(graphPath);
return true;
}
catch
{
throw;
}
}
我不是这段代码的原始作者,即它是由我公司的另一位程序员编写的,所以我不能真正证明代码中做出的决定是正确的。
无论如何,我遇到的问题如下:当我在本地测试页面时,图像创建成功并显示在页面上。但是,当我部署网站(我们使用 Windows Azure 进行托管)时,出现以下异常:
The type initializer for 'Microsoft.Glee.GraphViewerGdi.GViewer' threw an exception.
System.TypeInitializationException: The type initializer for 'Microsoft.Glee.GraphViewerGdi.GViewer' threw an exception. --->
System.ComponentModel.Win32Exception: Error creating window handle.
at System.Windows.Forms.NativeWindow.CreateHandle(CreateParams cp)
at System.Windows.Forms.Control.CreateHandle()
at System.Windows.Forms.Form.CreateHandle()
at System.Windows.Forms.Control.get_Handle()
at System.Windows.Forms.Control.CreateGraphicsInternal()
at System.Windows.Forms.Control.CreateGraphics()
at Microsoft.Glee.GraphViewerGdi.GViewer.GetDotsPerInch()
at Microsoft.Glee.GraphViewerGdi.GViewer..cctor()
--- End of inner exception stack trace ---
at Microsoft.Glee.GraphViewerGdi.GViewer..ctor()
at Microsoft.Glee.GraphViewerGdi.GraphRenderer.CalculateLayout()
我想这是一些内存问题,但您能告诉我您对此有何看法以及问题的原因可能是什么?搜索网络并没有真正帮助我。
提前致谢。