I found a .dwg file that is not saved.
Could you please check why the method SaveAsDWG() returns false?
http://magzog.com/input.zip
Code: Select all
string filepath = @"../input.dwg";
var cadImage = CADImage.CreateImageByExtension(filepath);
cadImage.LoadFromFile(filepath);
if(CADImport.Export.CADtoDWG.SaveAsDWG(cadImage, "output.dwg"))
{
;
}
else
{
;
}