xbdr419
Results
2
issues of
xbdr419
Hello, after I read a DWG file and save it directly, the dimension elements are lost. Here is the code. I hope to get some optimization. My current version is...
bug
**My code** ``` doc = ezdxf.readfile(r'./test.dxf') msp = doc.modelspace() for dim in msp: if dim.dxftype()== 'DIMENSION': override = dim.override() override.set_text_format(prefix="AAAA ", postfix=" BBBB") override.render() doc.saveas('new.dxf') ``` ** The position of...