From 19a8fb00487ca182bd3127b4def52719d8be3e30 Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Tue, 13 Dec 2016 20:22:54 -0500 Subject: Add max_width and max_height arguments to --- examples/pcb_example.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/pcb_example.py') diff --git a/examples/pcb_example.py b/examples/pcb_example.py index e6a56fc..9e066a8 100644 --- a/examples/pcb_example.py +++ b/examples/pcb_example.py @@ -37,16 +37,16 @@ pcb = PCB.from_directory(GERBER_FOLDER) # Render PCB top view ctx.render_layers(pcb.top_layers, os.path.join(os.path.dirname(__file__), 'pcb_top.png',), - theme.THEMES['OSH Park']) + theme.THEMES['OSH Park'], max_width=800, max_height=600) # Render PCB bottom view ctx.render_layers(pcb.bottom_layers, os.path.join(os.path.dirname(__file__), 'pcb_bottom.png'), - theme.THEMES['OSH Park']) + theme.THEMES['OSH Park'], max_width=800, max_height=600) # Render copper layers only ctx.render_layers(pcb.copper_layers + pcb.drill_layers, os.path.join(os.path.dirname(__file__), 'pcb_transparent_copper.png'), - theme.THEMES['Transparent Copper']) + theme.THEMES['Transparent Copper'], max_width=800, max_height=600) -- cgit