-
How to make kikit (or pcbdraw for that matter) to render large png pictures and skip components placement altogether? I just want large pictures of the PCB (e.g. 1080p) and no components. |
Beta Was this translation helpful? Give feedback.
Answered by
joric
Jan 2, 2022
Replies: 1 comment
-
Ah gotcha, it's pcbdraw --dpi 600 --filter "" --style builtin:set-white-enig.json $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.gerbers_dir }}/large-front.png
pcbdraw --dpi 600 --filter "" --style builtin:set-white-enig.json --back $GITHUB_WORKSPACE/${{ inputs.pcb_file }} $GITHUB_WORKSPACE/${{ inputs.gerbers_dir }}/large-back.png |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
joric
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah gotcha, it's
--dpi 600
(default 300) and--filter ""
. So I just added this to CI scripts and it worked: