2026-08-07T00:00:00.000Z
If you’ve ever ordered a laser-cut part, sent a file to a CNC shop, or shared a drawing with someone who uses different CAD software, you’ve probably hit the moment: “Can you send it as DXF?”
But what actually is a DXF file? Why does everyone ask for it? And how do you open one without buying CAD software? Let’s get into it.
DXF: the lingua franca of CAD
DXF stands for Drawing Exchange Format. Autodesk introduced it in 1982 as a way to exchange drawings between AutoCAD and other programs. The key word is exchange: DXF is a documented, openly published format, unlike the proprietary DWG binary format.
The result: every serious CAD program on Earth can read DXF. AutoCAD, Fusion 360, SolidWorks, FreeCAD, Inkscape, Adobe Illustrator — and yes, browser-based tools like Cadelo.
ASCII vs. binary DXF
DXF comes in two flavors:
- ASCII DXF (
.dxf) — human-readable text. Bigger files, but you can open one in a text editor and see exactly what’s inside. Great for debugging, terrible for hand-editing geometry. - Binary DXF — more compact, faster to load, but not human-readable.
Almost every tool that says “DXF export” produces ASCII DXF, which is what most shops and makers expect.
When do you actually need DXF?
DXF is the right choice when:
- You’re sending 2D geometry to fabrication — laser cutters, plasma cutters, CNC routers, and waterjets all want DXF
- You’re collaborating across different CAD programs — your colleague uses SolidWorks, you use something free; DXF is the bridge
- You’re vector-editing in design tools — Illustrator and Inkscape open DXF for turning drawings into graphics
- You want a file format that will outlive the software — DXF is documented and open; it won’t vanish when a vendor kills a product line
DXF is the wrong choice when:
- You need to preserve 3D solids with full history — that’s what native formats (or STEP) are for
- You need parametric constraints that survive round-trips — DXF stores geometry, not design intent
How to open a DXF file for free
- Open Cadelo in your browser
- Click File → Open (or drag and drop your
.dxffile onto the window) - Your drawing appears — pan, zoom, edit, add dimensions, change layers
Because the app runs locally in your browser via WebAssembly, your DXF is parsed on your machine. Nothing is uploaded anywhere.
How to export DXF
In Cadelo, File → Export → DXF writes a DXF file you can send to any shop, colleague, or other CAD program. You can also export DWG, SVG, PDF, STL (for 3D printing), and STEP (for CAD interchange) — all free, all from the same app.
DXF versions: don’t overthink it
DXF files carry a version tag (R12, R2000, R2018…). The practical rule:
- R2000 (or newer) for general use — the sweet spot for compatibility and features
- R12 for maximum compatibility — the “lowest common denominator” if a shop’s software is ancient or cheap
Cadelo reads and writes DXF R13 through R2018, so you’re covered either way.
The bottom line
DXF is the open, universal handshake between CAD programs. Learning to use it — and having a free tool that opens and writes it without friction — removes the biggest compatibility headache in drafting. Keep one tab of Cadelo open, and you’ll never be stuck with a file you can’t open again.
Related: Open DWG Files Online Free · How Browser CAD Works