libredwg icon indicating copy to clipboard operation
libredwg copied to clipboard

Official mirror of libredwg. With CI hooks and nightly releases. PR's ok

Results 172 libredwg issues
Sort by recently updated
recently updated
newest added

See e.g. http://help.autodesk.com/view/OARX/2018/ENU/?guid=GUID-6A4C31C0-4988-499C-B5A4-15582E433B0F Dimension, leader, and tolerance entities may need to store overrides in xdata. Check if we need to create this xdata from/to dxf by ourself.

enhancement

Same as with indxf. No need for a free exception then, and needs much less memory.

enhancement

use vtables, like dxf_read_pair or such. for dxf, dxfb, json, ... (all possible import formats) first seperate dxfb from dxf ascii but keep json in mind. using the spec just...

enhancement

to enable prettier ref -> TYPE (name) logging, and also to calloc the dwg->objects array earlier, and get away with much less dirty_refs, which helps the importers greatly. also doable...

enhancement

I would like to thank you for your effort in liberating dwg format. I would like to request a tool to clean dwg files taking this measures: 1- Remove the...

enhancement
good first issue

libxml2 is outdated, py*-lxml is packaged everywhere. ``` -import libxml2 +import lxml - doc = libxml2.parseFile(ideal) + doc = etree.parse(ideal) - root = doc.getRootElement() + root = doc.getroot() ```

enhancement
good first issue

Hi, developers of libredwg: I also find an assertion failed in binay **dwglayers**. The input and the information are as follows. Any help would be greatly appreciated from you :D...

Hi, developers of libredwg: Recently, I test some binaries instrumented with ASAN in libredwg . Unfortunately, some incurred crashes with the following error information. Any help would be greatly appreciated...

The conversion from JSON to DWG is not same on Windows as on Linux. Examples on libredwg.0.13.3: [linux.tar.gz](https://github.com/LibreDWG/libredwg/files/14424125/linux.tar.gz) [wine.tar.gz](https://github.com/LibreDWG/libredwg/files/14424126/wine.tar.gz) Diff between dwgread output of Windows dwgrewrite and conversion versions: ```...