我尝试用C#编程的netDxf .net library来读写AutoCAD dxf文件。
此刻我只需要从网络服务器上读取AutoCAD dxf文件,但没有成功,因为我没有错误,只有白色和空白的网页。
如何解决这个问题?
你能帮助我吗?
提前感谢您,我的代码如下。
DxfDocument allImages = DxfDocument.Load("C:\\inetpub\\wwwroot\\web220000.dxf");
int counter = 1;
foreach (netDxf.Entities.Image image in allImages.Images)
{
DxfDocument doc = new DxfDocument();
netDxf.Entities.Image copy = (netDxf.Entities.Image)image.Clone();
doc.AddEntity(copy);
string fileName = string.Format("Image{0}.dxf", counter++);
doc.Save(fileName);
}