Replies: 1 comment
-
from the
and the version strings for most DXF versions: DXF9 = "AC1004"
DXF10 = "AC1006"
DXF12 = "AC1009"
DXF13 = "AC1012"
DXF14 = "AC1014"
DXF2000 = "AC1015"
DXF2004 = "AC1018"
DXF2007 = "AC1021"
DXF2010 = "AC1024"
DXF2013 = "AC1027"
DXF2018 = "AC1032" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was investigating how to do unit testing on some generated dxf files (example file here: frominkscape.dxf.zip ). For instance, I simply want to get the value of
$ACADVER
for a given file, and I was going to use ezdxf for extracting that value.However, the actual value in the file seems to be AC1014:
Could you please explain the intention/logic behind changing this to AC1015?
Will it do so for any AC1014 file, or just for some?
Can you recommend any tool/method for extracting the value of the header as is?
Sincerely
Beta Was this translation helpful? Give feedback.
All reactions