- BUGFIX: DXF R2010+ requires zero length tag 97 for HATCH/SplineEdge if no fit points exist (vshu3000)
- BUGFIX: Export order of XDATA and embedded objects (vshu3000)
- BUGFIX: ATTRIB and ATTDEF did not load basic DXF attributes
- NEW:
BlockLayout()
propertiescan_explode
andscale_uniformly
- NEW:
Hatch.remove_association()
- BUGFIX:
XData.get()
now raisesDXFValueError
for not existing appids, like all other methods of theXData()
class - BUGFIX:
Layer.description
returns an empty string for unknown XDATA structure inAcAecLayerStandard
- BUGFIX: Initialize/Load
Hatch
edge coordinates asVec2()
objects - BUGFIX: typo in 3 point angular dimension subclass marker (vshu3000)
- BUGFIX: HATCH/SplineEdge did export length tag 97 if no fit points exist, creates invalid DXF for AutoCAD/BricsCAD (vshu3000)
- BUGFIX: Ellipse handling in
virtual_block_reference_entities()
(Matt Broadway)
- BUGFIX: fixed uniform scaled ellipse handling in
explode.virtual_block_reference_entities()
- BUGFIX: fixed crash caused by floating point inaccuracy in
Vector.angle_between()
(Matt Broadway) - BUGFIX: fixed crash for axis transformation of nearly perpendicular ellipse axis
- BUGFIX: fixed
Hatch.has_critical_elements()
- Release notes: https://ezdxf.mozman.at/release-v0-12.html
- NEW:
Insert.block()
returns associatedBlockLayout()
orNone
if block not exist or is an XREF - NEW:
Insert.has_scaling
returnsTrue
if any axis scaling is applied - NEW:
Insert.has_uniform_scaling
returnsTrue
if 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_xref
andis_xref_overlay
- NEW:
R12FastStreamWriter.add_polyline_2d()
, add 2D POLYLINE with start width, end width and bulge value support - NEW:
Ellipse.minor_axis
property 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:
odafc
add-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
r12writer
add-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
AcDbEntity
group codes from base class
- BUGFIX: upgrade error from DXF R13/14 to R2000
- NEW:
Meshbuilder.from_polyface()
to interface toPOLYFACE
andPOLYMESH
- NEW:
Meshbuilder.render_polyface()
createPOLYFACE
objects - NEW:
MeshAverageVertexMerger()
an extended version ofMeshVertexMerger()
, location of merged vertices is the average location of all vertices with the same key - NEW:
ezdxf.addons.iterdxf
iterate over modelspace entities of really big DXF files (>1 GB) without loading them into memory - NEW:
ezdxf.addons.r12writer
supportsPOLYFACE
andPOLYMESH
entities - 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
r12writer
intoaddons
subpackage - CHANGE: moved
acadctb
intoaddons
subpackage
- 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_point
andend_point
returns start- and end point of arc in WCS - NEW: Ellipse properties
start_point
andend_point
returns 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_encoding
returns 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 tolocation
inplace - NEW:
size
andcenter
properties for bounding box classes - NEW:
Insert.ucs()
returns an UCS placed in block referenceinsert
location, 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_line
toezdxf.math.is_point_left_of_line
- NEW:
ezdxf.math.point_to_line_relation()
2D function returns-1
for left oft line,+1
for right oif line ,0
on 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:
pycsg
add-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_scaling
to True, to use the old pattern scaling before v0.11 - CHANGE: removed
ezdxf.PATTERN
constant, usePATTERN = ezdxf.pattern.load()
instead, set argumentold_pattern=True
to use the old pattern scaling before v0.11 - CHANGE:
Table.key()
accepts only strings, therefore tables checkin
accepts 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
dimtxsty
isStandard
ifoptions.default_dimension_text_style
is not defined - BUGFIX: default arrows for minimal defined dimstyles are closed filled arrows
- BUGFIX: use
Standard
as default for undefined dimension styles, e.g.EZDXF
without setup
- BUGFIX: height group code (40) for TEXT, ATTRIB and ATTDEF is mandatory
- BUGFIX: min DXF version for VISUALSTYLE object is R2000
- 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
- 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.
- 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.drawing
toDXFEntity.doc
DXFEntity.get_xdata()
keywordxdata_tag
renamed totags
DXFEntity.set_xdata()
keywordxdata_tag
renamed totags
- renamed
DXFEntity.remove_reactor_handle()
renamed toDXFEntity.discard_reactor_handle()
DXFEntity.get_extension_dict()
returnsExtensionDict
object 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:
Layer
entity- removed
Layer.dxf.line_weight
as synonym forLayer.dxf.lineweight
- renamed
Layer.dxf.plot_style_name
toLayer.dxf.plotstyle_handle
- renamed
Layer.dxf.material
toLayer.dxf.material_handle
- removed
- CHANGE: same treatment of
Viewport
entity 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_point
toViewport.dxf.center
- CHANGE: renamed
Viewport.dxf.target_point
toViewport.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_tags
to 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:
Importer
add-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
MTextData
methods intoMText
- CHANGE: removed
edit_data
,get_text
,set_text
methods fromMText
- restructured package, module and test file organization
- NEW: support for
Layer.dxf.true_color
andLayer.dxf.transparency
attributes (DXF R2004+, undocumented) - NEW:
Layer.rgb
,Layer.color
,Layer.description
andLayer.transparency
properties - NEW: renaming a
Layer
also 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()
gotfirst
andlast
properties, to get first or last entity orNone
if 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
owner
andlinetype
attribute from POLYLINE entity - BUGFIX: MTEXT - replacement of
\n
by\P
at DXF export to avoid invalid DXF files. - tested with CPython 3.8
- removed batch files (.bat) for testing, use
tox
command instead
- Release notes: https://ezdxf.mozman.at/release-v0-9.html
- IMPORTANT: Python 2 support REMOVED, if Python 2 support needed: add
ezdxf<0.9
to 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.tools
toezdxf.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
setup
inezdxf.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
txt
font - CHANGE: renamed subpackage
ezdxf.algebra
toezdxf.math
- CHANGE: moved
addons.curves
torender.curves
- CHANGE: moved
addons.mesh
torender.mesh
- CHANGE: moved
addons.r12spline
torender.r12spline
- CHANGE: moved
addons.forms
torender.forms
- CHANGE: renamed construction helper classes into Construction...()
Ray2D()
renamed toConstructionRay()
Circle()
renamed toConstructionCircle()
Arc()
renamed toConstructionArc()
- NEW: construction tools
ConstructionLine()
andConstructionBox()
- REMOVED:
almost_equal
usemath.isclose
- REMOVED:
almost_equal_points
useezdxf.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
-
Release notes: https://ezdxf.mozman.at/release-v0-8-9.html
-
IMPORTANT: Python 2 support will be dropped in ezdxf v0.9.0, because Python 2 support get more and more annoying.
-
CHANGE: refactoring of internal tag representation for a smaller memory footprint, but with some speed penalty
-
NEW: packed data for LWPOLYLINE points, faster
__getitem__
; added__setitem__
,__delitem__
,insert()
andappend()
methods; renameddiscard_points()
inclear()
; removedget_rstrip_points()
and ctx managerrstrip_points()
; user defined point format; -
NEW: packed data for SPLINE, knots, weights, fit- and control points are stored as
array.array()
;Spline.get_knot_values()
,Spline.get_weights()
,Spline.get_control_points()
andSpline.get_fit_points()
are deprecated, direct access to this attributes bySpline.knot_values
,Spline.weights
,Spline.control_points
andSpline.fit_points
, all attributes with a list-like interface. Knot, control point and fit point counter updated automatically, therefore counters are read only now. -
NEW: packed data for MESH, vertices, faces, edges and edge crease values stored as
array.array()
, high level interface unchanged -
NEW:
Drawing.layouts_and_blocks()
, iterate over all layouts (mode space and paper space) and all block definitions. -
NEW:
Drawing.chain_layouts_and_blocks()
, chain entity spaces of all layouts and blocks. Yields an iterator for all entities in all layouts and blocks -
NEW:
Drawing.query()
, entity query over all layouts and blocks -
NEW:
Drawing.groupby()
, groups DXF entities of all layouts and blocks by an DXF attribute or a key function -
NEW:
Layout.set_redraw_order()
andLayout.get_redraw_order()
, to change redraw order of entities in model space and paper space layouts -
NEW:
BlockLayout.is_layout_block
,True
if block is a model space or paper space block definition -
NEW:
ezdxf.algebra.Arc
helper class to create arcs from 2 points and an angle or radius, or from 3 points -
NEW:
ezdxf.algebra.Arc.add_to_layout()
with UCS support to create 3D arcs -
NEW: rename paper space layouts by
Drawing.layouts.rename(old_name, new_name)
-
NEW: Basic support for embedded objects (new in AutoCAD 2018), ezdxf reads and writes the embedded data as it is, no interpretation no modification, just enough to not break DXF files with embedded objects at saving.
-
CHANGE:
Drawing.blocks.delete_block(name, safe=True)
, new parameter save, check if block is still referenced (raisesDXFValueError
) -
CHANGE:
Drawing.blocks.delete_all_blocks(safe=True)
, if parameter safe isTrue
, do not delete blocks that are still referenced -
BUGFIX: invalid CLASS definition for DXF version R2000 (AC1015) fixed, bug was only triggered at upgrading from R13/R14 to R2000
-
BUGFIX: fixed broken
Viewport.AcDbViewport
property -
BASIC read support for many missing DXF entities/objects
- ACAD_PROXY_GRAPHIC
- HELIX
- LEADER
- LIGHT
- MLEADER (incomplete)
- MLINE (incomplete)
- OLEFRAME
- OLE2FRAME
- SECTION
- TABLE (incomplete)
- TOLERANCE
- WIPEOUT
- ACAD_PROXY_OBJECT
- DATATABLE
- DICTIONARYVAR
- DIMASSOC
- FIELD (incomplete)
- FIELDLIST (not documented by Autodesk)
- IDBUFFER
- LAYER_FILTER
- MATERIAL
- MLEADERSTYLE
- MLINESTYLE
- SORTENTSTABLE
- SUN
- SUNSTUDY (incomplete) (no real world DXF files with SUNSTUDY for testing available)
- TABLESTYLE (incomplete)
- VBA_PROJECT (no real world DXF files with embedded VBA for testing available)
- VISUALSTYLE
- WIPEOUTVARIABLES
- for all unsupported entities/objects exist only raw DXF tag support
- Release notes: https://ezdxf.mozman.at/release-v0-8-8.html
- NEW: read/write support for GEODATA entity
- NEW: read/(limited)write support for SURFACE, EXTRUDEDSURFACE, REVOLVEDSURFACE, LOFTEDSURFACE and SWEPTSURFACE entity
- NEW: support for extension dictionaries
- NEW:
add_spline_control_frame()
, create and add B-spline control frame from fit points - NEW:
add_spline_approx()
, approximate B-spline by a reduced count of control points - NEW:
ezdxf.setup_linetypes(dwg)
, setup standard line types - NEW:
ezdxf.setup_styles(dwg)
, setup standard text styles - NEW:
LWPolyline.vertices()
yields all points as(x, y)
tuples in OCS,LWPolyline.dxf.elevation
is the z-axis value - NEW:
LWPolyline.vertices_in_wcs()
yields all points as(x, y, z)
tuples in WCS - NEW: basic
__str__()
and__repr__()
support for DXF entities, returns just DXF type and handle - NEW: bulge related function in module
ezdxf.algebra.bulge
- NEW: Object Coordinate System support by
DXFEntity.ocs()
andOCS()
class in module ezdxf.algebra - NEW: User Coordinate System support by
UCS()
class in moduleezdxf.algebra
- CHANGE:
DXFEntity.set_app_data()
andEntity.set_xdata
accept also list of tuples as tags,DXFTag()
is not required - BUGFIX: entity structure validator excepts group code >= 1000 before XDATA section (used in AutoCAD Civil 3D and AutoCAD Map 3D)
- Release notes: https://ezdxf.mozman.at/release-v0-8-7.html
- NEW: entity.get_layout() returns layout in which entity resides or None if unassigned
- NEW: copy any DXF entity by entity.copy() without associated layout, add copy to any layout you want, by layout.add_entity().
- NEW: copy entity to another layout by entity.copy_to_layout(layout)
- NEW: move entity from actual layout to another layout by entity.move_to_layout(layout)
- NEW: support for splines by control points: add_open_spline(), add_closed_spline(), add_rational_spline(), add_closed_rational_spline()
- NEW: bspline_control_frame() calculates B-spline control points from fit points, but not the same as AutoCAD
- NEW: R12Spline add-on, 2d B-spline with control frame support by AutoCAD, but curve is just an approximated POLYLINE
- NEW: added entity.get_flag_state() and entity.set_flag_state() for easy access to binary coded flags
- NEW: set new $FINGERPRINTGUID for new drawings
- NEW: set new $VERSIONGUID on saving a drawing
- NEW: improved IMAGE support, by adding RASTERVARIABLES entity, use Drawing.set_raster_variables(frame, quality, units)
- BUGFIX: closing user defined image boundary path automatically, else AutoCAD crashes
- Release notes: https://ezdxf.mozman.at/release-v0-8-6.html
- NEW: ezdxf project website: https://ezdxf.mozman.at/
- CHANGE: create all missing tables of the TABLES sections for DXF R12
- BUGFIX: entities on new layouts will be saved
- NEW: Layout.page_setup() and correct 'main' viewport for DXF R2000+; For DXF R12 page_setup() exists, but does not provide useful results. Page setup for DXF R12 is still a mystery to me.
- NEW: Table(), MText(), Ellipse(), Spline(), Bezier(), Clothoid(), LinearDimension(), RadialDimension(), ArcDimension() and AngularDimension() composite objects from dxfwrite as add-ons, these add-ons support DXF R12
- NEW: geometry builder as add-ons: MeshBuilder(), MeshVertexMerger(), MengerSponge(), SierpinskyPyramid(), these add-ons require DXF R2000+ (MESH entity)
- BUGFIX: fixed invalid implementation of context manager for r12writer
- Release notes: https://ezdxf.mozman.at/release-v0-8-5.html
- CHANGE: block names are case insensitive 'TEST' == 'Test' (like AutoCAD)
- CHANGE: table entry (layer, linetype, style, dimstyle, ...) names are case insensitive 'TEST' == 'Test' (like AutoCAD)
- CHANGE: raises DXFInvalidLayerName() for invalid characters in layer names: <>/":;?*|=`
- CHANGE: audit process rewritten
- CHANGE: skip all comments, group code 999
- CHANGE: removed compression for unused sections (THUMBNAILSECTION, ACDSDATA)
- NEW: write DXF R12 files without handles: set dwg.header['$HANDLING']=0, default value is 1
- added subclass marker filter for R12 and prior files in legacy_mode=True (required for malformed DXF files)
- removed special check for Leica Disto Unit files, use readfile(filename, legacy_mode=True) (malformed DXF R12 file, see previous point)
-
Release notes: https://ezdxf.mozman.at/release-v0-8-4.html
-
NEW: Support for complex line types with text or shapes
-
NEW: DXF file structure validator at SECTION level, tags outside of sections will be removed
-
NEW: Basic read support for DIMENSION
-
CHANGE: improved exception management, in the future ezdxf should only raise exceptions inherited from DXFError for DXF related errors, previous exception classes still work
- DXFValueError(DXFError, ValueError)
- DXFKeyError(DXFError, KeyError)
- DXFAttributeError(DXFError, AttributeError)
- DXFIndexError(DXFError, IndexError)
- DXFTableEntryError(DXFValueError)
-
speedup low level tag reader around 5%, and speedup tag compiler around 5%
- CHANGE: Lwpolyline - suppress yielding z coordinates if they exists (DXFStructureError: z coordinates are not defined in the DXF standard)
- NEW: setup creates a script called 'dxfpp' (DXF Pretty Printer) in the Python script folder
- NEW: basic support for DXF format AC1032 introduced by AutoCAD 2018
- NEW: ezdxf use logging and writes all logs to a logger called 'ezdxf'. Logging setup is the domain of the application!
- NEW: warns about multiple block definitions with the same name in a DXF file. (DXFStructureError)
- NEW: legacy_mode parameter in ezdxf.read() and ezdxf.readfile(): tries do fix coordinate order in LINE entities (10, 11, 20, 21) by the cost of around 5% overall speed penalty at DXF file loading
- NEW: Insert.delete_attrib(tag) - delete ATTRIB entities from the INSERT entity
- NEW: Insert.delete_all_attribs() - delete all ATTRIB entities from the INSERT entity
- BUGFIX: setting attribs_follow=1 at INSERT entity before adding an attribute entity works
- NEW: added support for constant ATTRIB/ATTDEF to the INSERT (block reference) entity
- NEW: added ATTDEF management methods to BlockLayout (has_attdef, get_attdef, get_attdef_text)
- NEW: added (read/write) properties to ATTDEF/ATTRIB for setting flags (is_const, is_invisible, is_verify, is_preset)
- added groupby(dxfattrib='', key=None) entity query function, it is supported by all layouts and the query result container: Returns a dict, where entities are grouped by a dxfattrib or the result of a key function.
- added ezdxf.audit() for DXF error checking for drawings created by ezdxf - but not very capable yet
- dxfattribs in factory functions like add_line(dxfattribs=...), now are copied internally and stay unchanged, so they can be reused multiple times without getting modified by ezdxf.
- removed deprecated Drawing.create_layout() -> Drawing.new_layout()
- removed deprecated Layouts.create() -> Layout.new()
- removed deprecated Table.create() -> Table.new()
- removed deprecated DXFGroupTable.add() -> DXFGroupTable.new()
- BUFIX in EntityQuery.extend()
- BUGFIX: lost data if model space and active layout are called *MODEL_SPACE and *PAPER_SPACE
- BUGFIX: HATCH accepts SplineEdges without defined fit points
- BUGFIX: fixed universal line ending problem in ZipReader()
- Moved repository to GitHub: https://github.com/mozman/ezdxf.git
- NEW: repairs malformed Leica Disto DXF R12 files, ezdxf saves a valid DXF R12 file.
- NEW: added Layout.unlink(entity) method: unlinks an entity from layout but does not delete entity from the drawing database.
- NEW: added Drawing.add_xref_def(filename, name) for adding external reference definitions
- CHANGE: renamed parameters for EdgePath.add_ellipse() - major_axis_vector -> major_axis; minor_axis_length -> ratio to be consistent to the ELLIPSE entity
- UPDATE: Entity.tags.new_xdata() and Entity.tags.set_xdata() accept tuples as tags, no import of DXFTag required
- UPDATE: EntityQuery to support both 'single' and "double" quoted strings - Harrison Katz [email protected]
- improved DXF R13/R14 compatibility
- NEW: r12writer.py - a fast and simple DXF R12 file/stream writer. Supports only LINE, CIRCLE, ARC, TEXT, POINT, SOLID, 3DFACE and POLYLINE. The module can be used without ezdxf.
- NEW: Get/Set extended data on DXF entity level, add and retrieve your own data to DXF entities
- NEW: Get/Set app data on DXF entity level (not important for high level users)
- NEW: Get/Set/Append/Remove reactors on DXF entity level (not important for high level users)
- CHANGE: using reactors in PdfDefinition for well defined UNDERLAY entities
- CHANGE: using reactors and IMAGEDEF_REACTOR for well defined IMAGE entities
- BUGFIX: default name=None in add_image_def()
- NEW: Drawing.acad_release property - AutoCAD release number for the drawing DXF version like 'R12' or 'R2000'
- NEW: support for PDFUNDERLAY, DWFUNDERLAY and DGNUNDERLAY entities
- BUGFIX: fixed broken layout setup in repair routine
- BUGFIX: support for utf-8 encoding on saving, DXF R2007 and later is saved with UTF-8 encoding
- CHANGE: Drawing.add_image_def(filename, size_in_pixel, name=None), renamed key to name and set name=None for auto-generated internal image name
- CHANGE: argument order of Layout.add_image(image_def, insert, size_in_units, rotation=0., dxfattribs=None)
- NEW: support for DXF entity IMAGE (work in progress)
- NEW: preserve leading file comments (tag code 999)
- NEW: writes saving and upgrading comments when saving DXF files; avoid this behavior by setting options.store_comments = False
- NEW: ezdxf.new() accepts the AutoCAD release name as DXF version string e.g. ezdxf.new('R12') or R2000, R2004, R2007, ...
- NEW: integrated acadctb.py module from my dxfwrite package to read/write AutoCAD .ctb config files; no docs so far
- CHANGE: renamed Drawing.groups.add() to new() for consistent name schema for adding new items to tables (public interface)
- CHANGE: renamed Drawing..create() to new() for consistent name schema for adding new items to tables, this applies to all tables: layers, styles, dimstyles, appids, views, viewports, ucs, block_records. (public interface)
- CHANGE: renamed Layouts.create() to new() for consistent name schema for adding new items to tables (internal interface)
- CHANGE: renamed Drawing.create_layout() to new_layout() for consistent name schema for adding new items (public interface)
- CHANGE: renamed factory method .add_3Dface() to add_3dface()
- REMOVED: logging and debugging options
- BUGFIX: fixed attribute definition for align_point in DXF entity ATTRIB (AC1015 and newer)
- Cleanup DXF template files AC1015 - AC1027, file size goes down from >60kb to ~20kb
- Quick bugfix release, because ezdxf 0.7.2 can damage DXF R12 files when saving!!!
- NEW: improved DXF R13/R14 compatibility
- BUGFIX: create CLASSES section only for DXF versions newer than R12 (AC1009)
- TEST: converted a bunch of R8 (AC1003) files to R12 (AC1009), AutoCAD didn't complain
- TEST: converted a bunch of R13 (AC1012) files to R2000 (AC1015), AutoCAD did not complain
- TEST: converted a bunch of R14 (AC1014) files to R2000 (AC1015), AutoCAD did not complain
- NEW: reads DXF R13/R14 and saves content as R2000 (AC1015) - experimental feature, because of the lack of test data
- NEW: added support for common DXF attribute line weight
- NEW: POLYLINE, POLYMESH - added properties is_closed, is_m_closed, is_n_closed
- BUGFIX: MeshData.optimize() - corrected wrong vertex optimization
- BUGFIX: can open DXF files without existing layout management table
- BUGFIX: restore module structure ezdxf.const
- Supported/Tested Python versions: CPython 2.7, 3.4, 3.5, pypy 4.0.1 and pypy3 2.4.0
- NEW: read legacy DXF versions older than AC1009 (DXF R12) and saves it as DXF version AC1009.
- NEW: added methods is_frozen(), freeze(), thaw() to class Layer()
- NEW: full support for DXF entity ELLIPSE (added add_ellipse() method)
- NEW: MESH data editor - implemented add_face(vertices), add_edge(vertices), optimize(precision=6) methods
- BUGFIX: creating entities on layouts works
- BUGFIX: entity ATTRIB - fixed halign attribute definition
- CHANGE: POLYLINE (POLYFACE, POLYMESH) - on layer change also change layer of associated VERTEX entities
- Supported Python versions: CPython 2.7, 3.4, pypy 2.6.1 and pypy3 2.4.0
- NEW: support for DXF entity HATCH (solid fill, gradient fill and pattern fill), pattern fill with background color supported
- NEW: support for DXF entity GROUP
- NEW: VIEWPORT entity, but creating new viewports does not work as expected - just for reading purpose.
- NEW: support for new common DXF attributes in AC1018 (AutoCAD 2004): true_color, color_name, transparency
- NEW: support for new common DXF attributes in AC1021 (AutoCAD 2007): shadow_mode
- NEW: extended custom vars interface
- NEW: dxf2html - added support for custom properties in the header section
- NEW: query() supports case insensitive attribute queries by appending an 'i' to the query string, e.g. '*[layer=="construction"]i'
- NEW: Drawing.cleanup() - call before saving the drawing but only if necessary, the process could take a while.
- BUGFIX: query parser couldn't handle attribute names containing '_'
- CHANGE: renamed dxf2html to pp (pretty printer), usage: py -m ezdxf.pp yourfile.dxf (generates yourfile.html in the same folder)
- CHANGE: cleanup file structure
- BUGFIX: custom properties in header section written after $LASTSAVEDBY tag - the only way AutoCAD accepts custom tags
- NEW: Support for custom properties in the header section - Drawing.header.custom_vars - but so far AutoCAD ignores new created custom properties by ezdxf- I don't know why.
- BUGFIX: wrong DXF subclass for Arc.extrusion (error in DXF Standard)
- BUGFIX: added missing support files for dxf2html
- Beta status
- BUGFIX: Text.get_pos() - dxf attribute error "alignpoint"
- Beta status
- NEW: set
ezdxf.options.compress_default_chunks = True
to compress unnecessary Sections (like THUMBNAILIMAGE) in memory with zlib - NEW: Drawing.compress_binary_data() - compresses binary data (mostly code 310) in memory with zlib or set
ezdxf.options.compress_binary_data = True
to compress binary data of every drawing you open. - NEW: support for MESH entity
- NEW: support for BODY, 3DSOLID and REGION entity, you get the ACIS data
- CHANGE: Spline() - removed context managers fit_points(), control_points(), knot_values() and weights() and added a general context_manager edit_data(), similar to Mesh.edit_data() - unified API
- CHANGE: MText.buffer() -> MText.edit_data() - unified API (MText.buffer() still exists as alias)
- CHANGE: refactored internal structure - only two DXF factories remaining:
- LegacyDXFFactory() for AC1009 (DXF12) drawings
- ModernDXFFactory() for newer DXF versions except DXF13/14.
- BUGFIX: LWPolyline.get_rstrip_point() removed also x- and y-coords if zero
- BUGFIX: opens DXF12 files without handles again
- BUGFIX: opens DXF12 files with HEADER section but without $ACADVER set
- Beta status
- NEW: create new layouts - Drawing.create_layout(name, dxfattribs=None)
- NEW: delete layouts - Drawing.delete_layout(name)
- NEW: delete blocks - Drawing.blocks.delete_block(name)
- NEW: read DXF files from zip archives (its slow).
- CHANGE: LWPolyline returns always 5-tuples (x, y, start_width, end_width, bulge). start_width, end_width and bulge is 0 if not present.
- NEW: LWPolyline.get_rstrip_points() -> generates points without appending zeros.
- NEW: LWPolyline.rstrip_points() -> context manager for points without appending zeros.
- BUGFIX: fixed handle creation bug for DXF12 files without handles, a code 5/105 issue
- BUGFIX: accept floats as int (thanks to ProE)
- BUGFIX: accept entities without owner tag (thanks to ProE)
- improved dxf2html; creates a more readable HTML file; usage: python -m ezdxf.dxf2html filename.dxf
- Beta status
- Supported Python versions: CPython 2.7, 3.4 and pypy 2.2.1
- Refactoring of internal structures
- CHANGE: appended entities like VERTEX for POLYLINE and ATTRIB for INSERT are linked to the main entity and do not appear in layouts, model space or blocks (modelspace.query('VERTEX') is always an empty list).
- CHANGE: refactoring of the internal 2D/3D point representation for reduced memory footprint
- faster unittests
- BUGFIX: opens minimalistic DXF12 files
- BUGFIX: support for POLYLINE new (but undocumented) subclass names: AcDbPolyFaceMesh, AcDbPolygonMesh
- BUGFIX: support for VERTEX new (but undocumented) subclass names: AcDbFaceRecord, AcDbPolyFaceMeshVertex, AcDbPolygonMeshVertex, AcDb3dPolylineVertex
- CHANGE: Polyline.get_mode() returns new names: AcDb2dPolyline, AcDb3dPolyline, AcDbPolyFaceMesh, AcDbPolygonMesh
- CHANGE: separated layout spaces - each layout has its own entity space
- Beta status
- Supported Python versions: CPython 2.7, 3.3, 3.4 and pypy 2.2.1
- BUGFIX: ATTRIB definition error for AC1015 and later (error in DXF specs)
- BUGFIX: entity.dxf_attrib_exists() returned True for unset attribs with defined DXF default values
- BUGFIX: layout.delete_entity() didn't delete following data entities for INSERT (ATTRIB) & POLYLINE (VERTEX)
- NEW: delete all entities from layout/block/entities section
- cleanup DXF template files
- Beta status
- Supported Python versions: CPython 2.7, 3.3, 3.4 and pypy 2.2.1
- BUGFIX: restore Python 2 compatibility (has no list.clear() method); test launcher did not run tests in subfolders, because of missing init.py files
- Beta status
- BUGFIX: Drawing.get_layout_setter() - did not work with entities without DXF attribute paperspace
- NEW: default values for DXF attributes as defined in the DXF standard, this allows usage of optional DXF attributes (with defined default values) without check of presence, like entity.dxf.paperspace.
- NEW: DXF entities SHAPE, RAY, XLINE, SPLINE
- NEW: delete entities from layout/block
- CHANGE: entity 3DFACE requires 3D coordinates (created by add_3Dface())
- CHANGE: LWPolyline all methods return points as (x, y, [start_width, [end_width, [bulge]]]) tuples
- updated docs
- Beta status
- Supported Python versions: CPython 2.7, 3.3, 3.4 and pypy 2.1
- NEW: DXF entities LWPOLYLINE, MTEXT
- NEW: convenience methods place(), grid(), get_attrib_text() and has_attrib() for the Insert entity
- CHANGE: pyparsing as external dependency
- BUGFIX: iteration over drawing.entities yields full functional entities (correct layout attribute)
- BUGFIX: install error with pip and missing DXF template files of versions 0.4.0 & 0.4.1
- Alpha status
- Supported Python versions: CPython 2.7, 3.3 and pypy 2.0
- NEW: Entity Query Language
- NEW: Import data from other DXF files
- CHANGE: License changed to MIT License
- Alpha status
- Initial release