I want to born a file which can be open by CAD software.
I choose the library named 'ezdxf'.
I get trouble when I want to add a label(or tagging, I mean,the function provide by CAD software to show the begin and end point of a line segment).
I had tried to read the documents of the 'ezdxf',but did not found anything about the label or tagging(en,with my poor English and the Google translation).
So, the question:
If I want to born a file like 'XXX.dxf',which library of python has more function(s) and provide the function above ---- add a label or tagging?
Create a new Drawing with ezdxf:
import ezdxf
drawing = ezdxf.new(dxfversion='AC1009')
Supported DXF versions:
The title of dxfwrite at github is:
Outdated DXF R12 writer, please switch to ezdxf
There exists no library which provides exact what you need, ezdxf is just an interface to the DXF format not a CAD application.