dxf-viewer-example-src
dxf-viewer-example-src copied to clipboard
Is there a file size limit
I encountered an exception when uploading DXF files larger than 500MB
There is actually a limitation of the parser, which reads the entire file into a string, which in turn has some size limit, depending on JS engine. This is a thing which should be reimplemented in proper way. The current parser is a legacy from 3rd party project (dxf-parser, I think).
I agree with you. I am thinking about how to present large files.