A Python package to create/manipulate DXF drawings.
Project description
ezdxf
Abstract
A Python package to create and modify DXF drawings, independent from the DXF version. You can open/save every DXF file without losing any content (except comments), Unknown tags in the DXF file will be ignored but preserved for saving. With this behavior it is possible to open also DXF drawings that contains data from 3rd party applications.
Quick-Info
- ezdxf is a Python package to create new DXF files and read/modify/write existing DXF files
- the intended audience are developers
- requires at least Python 3.6
- OS independent
- tested with CPython & pypy3 on Windows 10 & ubuntu-latest by GitHub Actions
- additional required packages: pyparsing
- MIT-License
- read/write/new support for DXF versions: R12, R2000, R2004, R2007, R2010, R2013 and R2018
- additional read support for DXF versions R13/R14 (upgraded to R2000)
- additional read support for older DXF versions than R12 (upgraded to R12)
- read/write support for ASCII DXF and Binary DXF
- preserves third-party DXF content
Included extensions:
r12writeradd-on to write basic DXF entities direct and fast into a DXF R12 file or streamiterdxfadd-on to iterate over DXF entities of the modelspace of really big (> 5GB) DXF files which do not fit into memoryImporteradd-on to import entities, blocks and table entries from another DXF documentdxf2codeadd-on to generate Python code for DXF structures loaded from DXF documents as starting point for parametric DXF entity creation- Plot Style Files (CTB/STB) read/write add-on
A simple example:
import ezdxf
# Create a new DXF document.
doc = ezdxf.new(dxfversion='R2010')
# Create new table entries (layers, linetypes, text styles, ...).
doc.layers.new('TEXTLAYER', dxfattribs={'color': 2})
# DXF entities (LINE, TEXT, ...) reside in a layout (modelspace,
# paperspace layout or block definition).
msp = doc.modelspace()
# Add entities to a layout by factory methods: layout.add_...()
msp.add_line((0, 0), (10, 0), dxfattribs={'color': 7})
msp.add_text(
'Test',
dxfattribs={
'layer': 'TEXTLAYER'
}).set_pos((0, 0.2), align='CENTER')
# Save DXF document.
doc.saveas('test.dxf')
Example for the r12writer, which writes a simple DXF R12 file without in-memory structures:
from random import random
from ezdxf.addons import r12writer
MAX_X_COORD = 1000
MAX_Y_COORD = 1000
with r12writer("many_circles.dxf") as doc:
for _ in range(100000):
doc.add_circle((MAX_X_COORD*random(), MAX_Y_COORD*random()), radius=2)
The r12writer supports only the ENTITIES section of a DXF R12 drawing, no HEADER, TABLES or BLOCKS section is present, except FIXED-TABLES are written, than some additional predefined text styles and line types are available.
Installation
Install with pip for Python 3.6 and later:
pip install ezdxf
Install latest development version with pip from GitHub:
pip install git+https://github.com/mozman/ezdxf.git@master
or from source:
python setup.py install
Website
Documentation
Documentation of development version at https://ezdxf.mozman.at/docs
Documentation of latest release at http://ezdxf.readthedocs.io/
Contribution
The source code of ezdxf can be found at GitHub, target your pull requests to the master branch:
http://github.com/mozman/ezdxf.git
Feedback
Questions and feedback at Google Groups:
https://groups.google.com/d/forum/python-ezdxf
Questions at Stack Overflow:
Post questions at stack overflow and use the tag dxf or ezdxf.
Issue tracker at GitHub:
http://github.com/mozman/ezdxf/issues
Contact
Please post questions at the forum or stack overflow to make answers available to other users as well.
Feedback is greatly appreciated.
Manfred
News
Version 0.12 - 2020-04-12
- Release notes: https://ezdxf.mozman.at/release-v0-12.html
- NEW:
Insert.block()returns associatedBlockLayout()orNoneif block not exist or is an XREF - NEW:
Insert.has_scalingreturnsTrueif any axis scaling is applied - NEW:
Insert.has_uniform_scalingreturnsTrueif scaling is uniform in x-, y- and z-axis. - NEW:
Insert.scale(factor)set uniform scaling. - NEW:
Insert.virtual_entities()yields 'virtual' entities of a block reference (experimental) - NEW:
Insert.explode()explode block reference entities into target layout (experimental) - NEW:
Insert.add_auto_attribs()add ATTRIB entities defined as ATTDEF in the block layout and fill tags with values defined by adict(experimental) - NEW:
LWPolyline.virtual_entities()yields 'virtual' LINE and ARC entities - NEW:
LWPolyline.explode()explode LWPOLYLINE as LINE and ARC entities into target layout - NEW:
Polyline.virtual_entities()yields 'virtual' LINE, ARC or 3DFACE entities - NEW:
Polyline.explode()explode POLYLINE as LINE, ARC or 3DFACE entities into target layout - NEW:
Dimension.virtual_entities()yields 'virtual' DXF entities - NEW:
Dimension.explode()explode DIMENSION as basic DXF entities into target layout - NEW:
Dimension.transform_to_wcs()support for UCS based entity transformation - NEW:
Dimension.override()returnsDimStyleOverride()object - NEW:
Dimension.render()render graphical representation as anonymous block - NEW:
Block()propertiesis_anonymous,is_xrefandis_xref_overlay - NEW:
R12FastStreamWriter.add_polyline_2d(), add 2D POLYLINE with start width, end width and bulge value support - NEW:
Ellipse.minor_axisproperty returns minor axis asVector - NEW: Option
ezdxf.options.write_fixed_meta_data_for_testing, writes always same timestamps and GUID - NEW: Support for loading and exporting proxy graphic encoded as binary data, by default disabled
- NEW:
ezdxf.proxygraphic.ProxyGraphic()class to examine binary encoded proxy graphic (Need more example data for testing!) - NEW: Get/set hyperlink for graphic entities
- NEW:
odafcadd-on to use an installed ODA File Converter for reading and writing DWG files - NEW: Support for reading and writing Binary DXF files
- NEW: Binary DXF support for
r12writeradd-on - CHANGE:
R12FastStreamWriter.add_polyline(), add 3D POLYLINE only, closed flag support - CHANGE: renamed
Insert.ucs()toInsert.brcs()which now returns aBRCS()object - CHANGE:
Polyline.close(),Polyline.m_close()andPolyline.n_close()can set and clear closed state. - BUGFIX:
Dimension.destroy()should not not destroy associated anonymous block, because if DIMENSION is used in a block, the anonymous block may be used by several block references - BUGFIX: floating point precision error in
intersection_line_line_2d() - BUGFIX: attribute error in
Polyline.transform_to_wcs()for 2d polylines - BUGFIX: LWPOLYLINE was always exported with
const_width=0 - BUGFIX:
Face3d.set_edge_visibility()set inverted state (visible <-> invisible) - BUGFIX: Load
AcDbEntitygroup codes from base class
Version 0.11.2 - 2020-04-03
- BUGFIX: upgrade error from DXF R13/14 to R2000
Version 0.11.1 - 2020-02-29
- NEW:
Meshbuilder.from_polyface()to interface toPOLYFACEandPOLYMESH - NEW:
Meshbuilder.render_polyface()createPOLYFACEobjects - NEW:
MeshAverageVertexMerger()an extended version ofMeshVertexMerger(), location of merged vertices is the average location of all vertices with the same key - NEW:
ezdxf.addons.iterdxfiterate over modelspace entities of really big DXF files (>1 GB) without loading them into memory - NEW:
ezdxf.addons.r12writersupportsPOLYFACEandPOLYMESHentities - NEW:
Layout.add_foreign_entity()copy/move simple entities from another DXF document or add unassigned DXF entities to a layout - NEW:
MText.plain_text()returns text content without formatting codes - CHANGE: refactor Auditor() into a DXF document fixer, fixes will be applied automatically (work in progress)
- CHANGE: moved
r12writerintoaddonssubpackage - CHANGE: moved
acadctbintoaddonssubpackage
Version 0.11 - 2020-02-15
- Release notes: https://ezdxf.mozman.at/release-v0-11.html
- Using standard git branches:
master: development statestable: latest stable release
- Requires Python 3.6
- NEW:
Dimension.get_measurement()supports angular, angular3p and ordinate dimensions - NEW:
Layout.add_radius_dim()implemented - NEW: shortcut calls
Layout.add_radius_dim_2p()andLayout.add_radius_dim_cra() - NEW:
Layout.add_diameter_dim()implemented - NEW: shortcut
Layout.add_diameter_dim_2p() - NEW:
Circle.vertices(angles)yields vertices for iterable angles in WCS - NEW:
Ellipse.vertices(params)yields vertices for iterable params in WCS - NEW: Arc properties
start_pointandend_pointreturns start- and end point of arc in WCS - NEW: Ellipse properties
start_pointandend_pointreturns start- and end point of ellipse in WCS - NEW: user defined point format support for 2d POLYLINE entities:
add_polyline2d([(1, 2, 0.5), (3, 4, 0)], format='xyb') - NEW:
Polyline.append_formatted_points()with user defined point format support - NEW:
Drawing.set_modelspace_vport(height, center)set initial view/zoom location for the modelspace - NEW: support for associating HATCH boundary paths to geometry entities
- NEW:
Drawing.output_encodingreturns required output encoding - NEW: User Coordinate System (UCS) based entity transformation, allows to work with UCS coordinates, which are
simpler if the UCS is chosen wisely, and transform them later into WCS coordinates. Entities which have a
transform_to_wcs(ucs)method, automatically take advantage of the new UCS transformation methods, but not all entity types are supported, embedded ACIS entities like 3DSOLID, REGION, SURFACE and so on, do not expose their geometry. - NEW:
transform_to_wcs(ucs)implemented for: 3DFACE, ARC, ATTDEF, ATTRIB, CIRCLE, ELLIPSE, HATCH, IMAGE, INSERT, LEADER, LINE, LWPOLYLINE, MESH, MTEXT, POINT, POLYLINE, RAY, SHAPE, SOLID, SPLINE, TEXT, TRACE, XLINE - NEW:
UCS.rotate(axis, angle)returns a new UCS rotated around WCS vectoraxis - NEW:
UCS.rotate_local_x(angle)returns a new UCS rotated around local x-axis - NEW:
UCS.rotate_local_y(angle)returns a new UCS rotated around local y-axis - NEW:
UCS.rotate_local_z(angle)returns a new UCS rotated around local z-axis - NEW:
UCS.copy()returns a new copy of UCS - NEW:
UCS.shift(delta)shifts UCS inplace by vectordelta - NEW:
UCS.moveto(location)set new UCS origin tolocationinplace - NEW:
sizeandcenterproperties for bounding box classes - NEW:
Insert.ucs()returns an UCS placed in block referenceinsertlocation, UCS axis aligned to the block axis. - NEW:
Insert.reset_transformation()reset block reference location, rotation and extrusion vector. - CHANGE: renamed
ezdxf.math.left_of_linetoezdxf.math.is_point_left_of_line - NEW:
ezdxf.math.point_to_line_relation()2D function returns-1for left oft line,+1for right oif line ,0on the line - NEW:
ezdxf.math.is_point_on_line_2d()test if 2D point is on 2D line - NEW:
ezdxf.math.distance_point_line_2d()distance of 2D point from 2D line - NEW:
ezdxf.math.is_point_in_polygon_2d()test if 2D point is inside of a 2D polygon - NEW:
ezdxf.math.intersection_line_line_2d()calculate intersection for 2D lines - NEW:
ezdxf.math.offset_vertices_2d()calculate 2D offset vertices for a 2D polygon - NEW:
ezdxf.math.normal_vector_3p()returns normal vector for 3 points - NEW:
ezdxf.math.is_planar_face()test if 3D face is planar - NEW:
ezdxf.math.subdivide_face()linear subdivision for 2D/3D faces/polygons - NEW:
ezdxf.math.intersection_ray_ray_3d()calculate intersection for 3D rays - NEW:
ezdxf.math.Plane()3D plane construction tool - NEW:
ezdxf.render.MeshTransformer()inplace mesh transformation class, subclass ofMeshBuilder() - NEW:
MeshBuilder.render()added UCS support - NEW:
MeshBuilder.render_normals()render face normals as LINE entities, useful to check face orientation - NEW:
ezdxf.render.forms.cone_2p()create 3D cone mesh from two points - NEW:
ezdxf.render.forms.cylinder_2p()create 3D cylinder mesh from two points - NEW:
ezdxf.render.forms.sphere()create 3D sphere mesh - NEW:
pycsgadd-on, a simple Constructive Solid Geometry (CSG) kernel created by Evan Wallace (Javascript) and Tim Knip (Python) - CHANGE: Changed predefined pattern scaling to BricsCAD and AutoCAD standard, set global option
ezdxf.options.use_old_predefined_pattern_scalingto True, to use the old pattern scaling before v0.11 - CHANGE: removed
ezdxf.PATTERNconstant, usePATTERN = ezdxf.pattern.load()instead, set argumentold_pattern=Trueto use the old pattern scaling before v0.11 - CHANGE:
Table.key()accepts only strings, therefore tables checkinaccepts also only strings likeentity.dxf.name - NEW: load DXF comments from file (
ezdxf.comments.from_file) or stream (ezdxf.comments.from_stream) - BUGFIX: fixed incorrect HATCH pattern scaling
- BUGFIX: fixed base point calculation of aligned dimensions
- BUGFIX: fixed length extension line support for linear dimensions
- BUGFIX:
UCS.to_ocs_angle_deg()andUCS.to_ocs_angle_rad() - BUGFIX: check for unsupported DXF versions at
new() - BUGFIX: fixed dxf2src error for the HATCH entity
- BUGFIX:
is_point_left_of_line()algorithm was incorrect - BUGFIX: default
dimtxstyisStandardifoptions.default_dimension_text_styleis not defined - BUGFIX: default arrows for minimal defined dimstyles are closed filled arrows
- BUGFIX: use
Standardas default for undefined dimension styles, e.g.EZDXFwithout setup
Version 0.10.4 - 2020-01-31
- BUGFIX: height group code (40) for TEXT, ATTRIB and ATTDEF is mandatory
Version 0.10.3 - 2020-01-29
- BUGFIX: min DXF version for VISUALSTYLE object is R2000
Version 0.10.2 - 2019-10-05
- NEW:
Dimension.get_measurement()returns the actual dimension measurement in WCS units, no scaling applied; angular and ordinate dimension are not supported yet. - BUGFIX: ordinate dimension exports wrong feature location
- BUGFIX:
Hatch.set_pattern_fill()did not set pattern scale, angle and double values
Version 0.10.1 - 2019-09-07
- BUGFIX: group code for header var $ACADMAINTVER is 90 for DXF R2018+ and 70 for previous DXF versions. This is a critical bug because AutoCAD 2012/2013 (and possibly earlier versions) will not open DXF files with the new group code 90 for header variable $ACADMAINTVER.
Version 0.10 - 2019-09-01
- Release notes: https://ezdxf.mozman.at/release-v0-10.html
- unified entity system for all DXF versions
- saving as later DXF version than the source DXF version is possible, but maybe data loss if saving as an older DXF version than source DXF version (ezdxf is not a DXF converter)
- templates no more needed and removed from package
- CHANGE:
DXFEntity- renamed
DXFEntity.drawingtoDXFEntity.doc DXFEntity.get_xdata()keywordxdata_tagrenamed totagsDXFEntity.set_xdata()keywordxdata_tagrenamed totags- renamed
DXFEntity.remove_reactor_handle()renamed toDXFEntity.discard_reactor_handle() DXFEntity.get_extension_dict()returnsExtensionDictobject instead of the raw DICTIONARY object- renamed
DXFEntity.supports_dxf_attrib()toDXFEntity.is_supported_dxf_attrib() - renamed
DXFEntity.dxf_attrib_exists()toDXFEntity.has_dxf_attrib()
- renamed
- CHANGE:
Layerentity- removed
Layer.dxf.line_weightas synonym forLayer.dxf.lineweight - renamed
Layer.dxf.plot_style_nametoLayer.dxf.plotstyle_handle - renamed
Layer.dxf.materialtoLayer.dxf.material_handle
- removed
- CHANGE: same treatment of
Viewportentity for all DXF versions - CHANGE:
Polyline.vertices()is now an attributePolyline.vertices, implemented as regular Python list. - CHANGE:
Insert.attribs()is now an attributeInsert.attribs, implemented as regular Python list. - CHANGE: renamed
Viewport.dxf.center_pointtoViewport.dxf.center - CHANGE: renamed
Viewport.dxf.target_pointtoViewport.dxf.target - CHANGE: direct access to hatch paths (
Hatch.paths), pattern (Hatch.pattern) and gradient (Hatch.gradient), context manager to edit this data is not needed anymore, but still available for backward compatibility - CHANGE: Options
- removed
template_dir, no more needed - new
log_unprocessed_tagsto log unprocessed (unknown) DXF tags
- removed
- CHANGE:
Dimension()removes associated anonymous dimension block at deletion - CHANGE: safe block deletion protects not explicit referenced blocks like anonymous dimension blocks and arrow blocks
- CHANGE:
Importeradd-on rewritten, API incompatible to previous ezdxf versions, but previous implementation was already broken - CHANGE: moved
add_attdef()to generic layout interface, adding ATTDEF to model- and paperspace is possible - CHANGE: entity query - exclude DXF types from
'*'search, by appending type name with a preceding '!' e.g. query for all entities except LINE ="* !LINE" - CHANGE: entity query - removed regular expression support for type name match
- CHANGE: integration of
MTextDatamethods intoMText - CHANGE: removed
edit_data,get_text,set_textmethods fromMText - restructured package, module and test file organization
- NEW: support for
Layer.dxf.true_colorandLayer.dxf.transparencyattributes (DXF R2004+, undocumented) - NEW:
Layer.rgb,Layer.color,Layer.descriptionandLayer.transparencyproperties - NEW: renaming a
Layeralso renames references to this layer, but use with care - NEW: support for adding LEADER entities
- NEW:
Dimension.get_geometry_block(), returns the associated anonymous dimension block orNone - NEW:
EntityQuery()gotfirstandlastproperties, to get first or last entity orNoneif query result is empty - NEW: added
ngon(),star()andgear()toezdxf.render.forms - NEW: Source code generator to create Python source code from DXF entities, to recreate this entities by ezdxf. This tool creates only simple structures as a useful starting point for parametric DXF entity creation from existing DXF files. Not all DXF entities are supported!
- NEW: support for named plot style files (STB)
- NEW: can open converted Gerber DXF files tagged as "Version 1.0, Gerber Technology."
- BUGFIX: fixed MTEXT and GEODATA text splitting errors (do not split at '^')
- BUGFIX: fixed some subclass errors, mostly DXF reference errors
- BUGFIX: VERTEX entity inherit
ownerandlinetypeattribute from POLYLINE entity - BUGFIX: MTEXT - replacement of
\nby\Pat DXF export to avoid invalid DXF files. - tested with CPython 3.8
- removed batch files (.bat) for testing, use
toxcommand instead
Version 0.9 - 2019-02-24
- Release notes: https://ezdxf.mozman.at/release-v0-9.html
- IMPORTANT: Python 2 support REMOVED, if Python 2 support needed: add
ezdxf<0.9to yourrequirements.txt - NEW: testing on Manjaro Linux in a VM by tox
- CHANGE: converted NEWS.rst to NEWS.md and README.rst to README.md
- CHANGE: moved
Importer()fromezdxf.toolstoezdxf.addons- internal structures of modern DXF files are too complex and too undocumented to support importing data in a reliable way - usingImporter()may corrupt your DXF files or just don't work! - NEW: type annotations to core package and add-ons.
- NEW: argument
setupinezdxf.new('R12', setup=True)to setup default line types, text styles and dimension styles, this feature is disabled by default. - NEW: Duplicate table entries:
dwg.styles.duplicate_entry('OpenSans', new_name='OpenSansNew'), this works for all tables, but is intended to duplicate STYLES and DIMSTYLES. - CHANGED: replaced proprietary fonts in style declarations by open source fonts
- NEW: open source fonts to download https://github.com/mozman/ezdxf/tree/master/fonts
- OpenSansCondensed-Light font used for default dimension styles
- NEW: subpackage
ezdxf.render, because of DIMENSION rendering - NEW: support for AutoCAD standard arrows
- NEW: support for creating linear DIMENSION entities
- NEW: background color support for MTEXT
- CHANGE: DXF template cleanup, removed non standard text styles, dimension styles, layers and blocks
- CHANGE: text style STANDARD uses
txtfont - CHANGE: renamed subpackage
ezdxf.algebratoezdxf.math - CHANGE: moved
addons.curvestorender.curves - CHANGE: moved
addons.meshtorender.mesh - CHANGE: moved
addons.r12splinetorender.r12spline - CHANGE: moved
addons.formstorender.forms - CHANGE: renamed construction helper classes into Construction...()
Ray2D()renamed toConstructionRay()Circle()renamed toConstructionCircle()Arc()renamed toConstructionArc()
- NEW: construction tools
ConstructionLine()andConstructionBox() - REMOVED:
almost_equalusemath.isclose - REMOVED:
almost_equal_pointsuseezdxf.math.is_close_points - BUGFIX: closed LWPOLYLINE did not work in AutoCAD (tag order matters), introduced with v0.8.9 packed data structure
- BUGFIX:
UCS.to_ocs_angle_deg()corrected
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ezdxf-0.12.zip.
File metadata
- Download URL: ezdxf-0.12.zip
- Upload date:
- Size: 926.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f1d76e7b6e5b2b603ef3eb3bb1f063a9bde52e7a4406826e8791c45fbb9fc24
|
|
| MD5 |
add8357df01ec42a5da0581b55fa0101
|
|
| BLAKE2b-256 |
d489c4259e1b79e3880790ab6f3ada830f03de58c784c7c516ea4125e4add0ca
|
File details
Details for the file ezdxf-0.12-py3-none-any.whl.
File metadata
- Download URL: ezdxf-0.12-py3-none-any.whl
- Upload date:
- Size: 545.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fd429709646deb1d5cbdab018a14db5b3e8acc8cbb5f686a49978d21fe5218c
|
|
| MD5 |
e413383f917dc521c2470c3349bfb3bb
|
|
| BLAKE2b-256 |
1134d7e372810a3897c1c51c398c4ad8320dec3d7ff119014792e8f57fb00c46
|