Fabrication and Export¶
Once your design is complete and DFM passes cleanly, export manufacturing files to send to your PCB manufacturer — or to document your design.
Export Types Overview¶
| File type | Format | Purpose |
|---|---|---|
| Gerber | RS-274X .gbr |
PCB fabrication — copper, mask, silk, outline layers |
| Drill | Excellon .drl |
Via and hole positions for CNC drilling |
| BOM | CSV .csv |
Bill of Materials for component ordering |
| Schematic PDF | PDF .pdf |
Printable schematic documentation |
| Toner Transfer PDF | PDF .pdf |
Hobbyist — per-layer PDFs for manual PCB making |
Schematic PDF Export¶
Exports your schematic as a vector PDF for printing or sharing.
Steps:
- Open the Schematic tab you want to export
- Go to File → Export → Schematic PDF…
- Choose a filename and directory
- Click Export
PDF content:
| Element | Rendering |
|---|---|
| Components | Symbol outlines, pins, designator and value text |
| Wires and junctions | Black/grey lines and dots |
| Graphics | Rectangles, circles, text annotations |
| Title block | Page border, title, company, revision, date |
Colors are converted to black and grey for print-friendly output.
PCB Gerber Export¶
Gerber is the industry-standard format sent to PCB manufacturers. Each layer produces a separate .gbr file.
Steps:
- Open the PCB tab
- Go to File → Export → Gerber… (or open the Fabrication dialog)
- Select the layers to export:
| Layer | Example filename | Purpose |
|---|---|---|
| F.Cu | MyBoard-F_Cu.gbr |
Front copper |
| B.Cu | MyBoard-B_Cu.gbr |
Back copper |
| F.SilkS | MyBoard-F_SilkS.gbr |
Front silkscreen |
| F.Mask | MyBoard-F_Mask.gbr |
Front solder mask openings |
| B.Mask | MyBoard-B_Mask.gbr |
Back solder mask openings |
| Edge.Cuts | MyBoard-Edge_Cuts.gbr |
Board outline for cutting |
- Choose the output directory
- Click Export — one
.gbrfile is generated per selected layer - (Optional) Compress all files into a ZIP to send to the manufacturer
Which files to send?
Typically: F_Cu, B_Cu, F_SilkS, F_Mask, B_Mask, Edge_Cuts, and the drill .drl file. Always check your manufacturer's specific requirements.
Drill File Export¶
The drill file contains all hole locations and diameters — vias and mechanical holes.
Format: Excellon NC drill (text-based coordinate format)
Data included: - X, Y coordinates for each via and hole - Drill diameter per tool - Plated vs. non-plated hole separation
BOM Export (Bill of Materials)¶
The BOM is a parts list used to order components for assembly.
Steps:
- Go to File → Export → BOM… (or from the Fabrication dialog)
- Choose a
.csvfilename - Open in Excel, LibreOffice Calc, or Google Sheets
BOM file columns:
| Designator | Value | Footprint | Layer |
|---|---|---|---|
| R1 | 10kΩ | R_0603_1608Metric | Top |
| R2 | 330Ω | R_0603_1608Metric | Top |
| C1 | 100nF | C_0805_2012Metric | Top |
| U1 | STM32F103 | LQFP-48 | Top |
Before exporting the BOM
Only footprints with a non-empty Value field are included. Verify that all components have values assigned.
Toner Transfer PDF (Hobbyist)¶
Toner Transfer PDF is a WireFrame feature designed for makers and hobbyists who produce PCBs manually using toner transfer or UV film methods.
- Generates each selected layer as a separate PDF page
- Output is true 1:1 scale — no page scaling
- Automatically mirrors layers that need to be printed reversed (e.g. F.Cu)
- WYSIWYG silkscreen — text renders exactly as it appears on the physical board
Steps:
- Open the Fabrication dialog
- Select Toner Transfer PDF as the export type
- Choose the layers to include (e.g. F.Cu, B.Cu)
- Click Export — each layer becomes a separate page in the PDF
- Print on glossy paper at 100% scale (no fit-to-page)
Built-in Gerber Viewer¶
WireFrame includes a Gerber viewer to inspect exported files without external software.
How to use:
- Go to Tools → Gerber Viewer
- Open a generated
.gbrfile - Pan and zoom to verify:
- Trace continuity
- Pad alignment and spacing
- Board outline shape
Gerber Viewer — F.Cu preview:
┌──────────────────────────────────┐
│ ●════════════● │
│ ● ●════════● │
│ ●══════● │
│ Pad Trace Pad │
└──────────────────────────────────┘
↑ Visually confirm before sending to the manufacturer
Complete Export Workflow¶
DFM passes (0 red errors)
↓
Export Gerber → select layers → Export
↓
Export Drill → Export
↓
Export BOM → Export
↓
Open Gerber Viewer → verify F.Cu.gbr
↓
Compress to ZIP → send to manufacturer ✅
See Also¶
- DFM & DRC — run checks before exporting
- Layers & Views — layer selection for export
- File Formats — detailed file format specifications