31 lines
No EOL
946 B
Markdown
31 lines
No EOL
946 B
Markdown
gerber-tools
|
|
============
|
|

|
|
[](https://coveralls.io/r/hamiltonkibbe/gerber-tools?branch=master)
|
|
|
|
Tools to handle Gerber and Excellon files in Python.
|
|
|
|
Useage Example:
|
|
---------------
|
|
import gerber
|
|
from gerber.render import GerberSvgContext
|
|
|
|
# Read gerber and Excellon files
|
|
top_copper = gerber.read('example.GTL')
|
|
nc_drill = gerber.read('example.txt')
|
|
|
|
# Rendering context
|
|
ctx = GerberSvgContext()
|
|
|
|
# Create SVG image
|
|
top_copper.render(ctx)
|
|
nc_drill.render(ctx, 'composite.svg')
|
|
|
|
|
|
Rendering Examples:
|
|
-------------------
|
|
###Top Composite rendering
|
|

|
|
|
|
###Bottom Composite rendering
|
|
 |