Export SVG drawings for CAD workflows
DXF is a common CAD exchange format used by tools for drafting, laser cutting, CNC routing, and fabrication review. The DXF Export plugin gives SVGSketch a direct export path when a drawing needs to move from browser-based SVG editing into CAD-oriented software.
The exporter reads the current SVGSketch shape data and writes ASCII DXF geometry. Selection export uses only the selected shapes, while canvas export writes visible exportable artwork without changing the current selection.
Preserve practical manufacturing geometry
The plugin maps common SVGSketch shapes to native DXF entities where possible: lines become LINE entities, rectangles and polylines become LWPOLYLINE entities, circles become CIRCLE entities, circular arcs become ARC entities, and Bezier curves become SPLINE entities.
Strokes export as CAD centerlines instead of outlined filled shapes. That is the expected behavior for many cutting, routing, plotting, and drafting workflows where the path itself is the manufacturing instruction.
Handle text and raster references intentionally
Plain text exports as DXF TEXT, while multiline text exports as MTEXT. Rich SVG text styling is flattened to plain text so CAD tools receive stable editable labels instead of SVG-specific styling details they may not understand.
Raster images export as DXF IMAGE references when the image points to an external file or URL. Embedded data URI images are skipped with a warning because normal DXF image entities reference external raster files rather than embedding base64 image payloads.