What Versions of AutoCAD does dxflib work with?
Moderator: andrew
-
pricecreations
- Newbie Member
- Posts: 7
- Joined: Thu Aug 02, 2007 2:34 pm
What Versions of AutoCAD does dxflib work with?
Is dxflib compatible with AutoCAD 2004?
- andrew
- Site Admin
- Posts: 8786
- Joined: Fri Mar 30, 2007 6:07 am
When reading a DXF file, dxflib handles all entities that are supported by dxflib regardless of the DXF version of the file.
When writing, you can specify the version to write, e.g.:
dxflib supports the Autocad R12 and Autocad 2000 DXF specifications.
When writing, you can specify the version to write, e.g.:
Code: Select all
DL_WriterA* dw = dxf.out("myfile.dxf", DL_Codes::AC1015);
-
xelecara