Skip to content

Automation

LinkCAD supports several automation approaches for integrating format conversion into production workflows.

Approaches

MethodBest For
Command LineSingle conversions from scripts, CI/CD pipelines
Batch ModeMultiple conversions in a single session
Configuration FilesSaved option sets for repeatable conversions
Layer MapsLayer name/number mapping between formats
Python ScriptingCustom tools, format plugins, complex workflows

Quick Example

Convert a GDSII file to DXF from the command line:

Terminal window
linkcad.exe -i design.gds -o design.dxf --quit

Convert with a layer map and tool:

Terminal window
linkcad.exe -i design.gds -o design.dxf `
--layer-map layers.csv --apply-layer-map `
--apply-tool "Merge" --quit

Run a Python script:

Terminal window
linkcad.exe -i design.gds --python-script process.py --quit