You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please help.
Autocad returns error as " DXF read error on line 122. Invalid or incomplete DXF input - - drawing discarded."
Any suggestion how to fix this? dxf file is attached.
I can't find anything obviously incorrect with the file you provided, but AutoCAD is notoriously picky with what it will accept. I was able to open your drawing in AutoCAD 2016 by doing the following:
DxfFiledxfFile= ...;// however you're opening/creating the drawingdxfFile.Header.Version=DxfAcadVersion.R14;// AutoCAD seems more tolerant of R14 filesdxfFile.Normalize();// AutoCAD is very pick about the relationships between objects, and this sets thosedxfFile.Save("path/to/TEST_TOWER.dxf");
Please help.
Autocad returns error as " DXF read error on line 122. Invalid or incomplete DXF input - - drawing discarded."
Any suggestion how to fix this? dxf file is attached.
TEST_TOWER.zip
Thanks.
The text was updated successfully, but these errors were encountered: