This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Is there any type of log output or toggle to see why a dxf file couldn't be open? Usually the load() just returns null with no reason why. |
Beta Was this translation helpful? Give feedback.
Answered by
haplokuon
Dec 23, 2020
Replies: 1 comment
-
Use the debug build of the library or much better the source code. The release build will catch any exception an return null in case of an error in the DXF, the debug build will also throw assertions under some circumstances like incorrect value-code pairs, names, etc. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
haplokuon
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use the debug build of the library or much better the source code. The release build will catch any exception an return null in case of an error in the DXF, the debug build will also throw assertions under some circumstances like incorrect value-code pairs, names, etc.
You can also read older post as this and this.