Hello everyone,
I have been an enthusiastic KiCad user for a few months now and am currently using version 8.0.6.
I have created a script for generating production data, which automatically generates the circuit diagram, pick-and-place files, STEP files etc…
Now I would also like to create a simple plan of the board, which consists of the layers Edge.Cuts, F.Silkscreen, F.Paste (for the SMD pads) and of course THT solder pads.
And that’s the problem: regardless of whether I export to SVG or PDF, the solder pads are always completely filled in black.
Even if I create my own color scheme and pass it using --theme, I can’t get THT pads that are white in the middle.
I know that it works if you plot the layer from KiCad GUI and don’t export it, but I want to do this script-controlled and not by mouse click (and above all I don’t want to do everything again after a small change).
The current CLI call looks like this:
kicad-cli \
pcb export svg \
--output output.svg \
--layers F.Silkscreen,F.Mask,F.Paste,Edge.Cuts \
--page-size-mode 2 \
--drill-shape-opt 2 \
--black-and-white \
"$PN".kicad_pcb
So this is how it looks like in KiCad GUI (left side) and when it has been exported (right side):
Does anyone have any idea how I can solve this problem or would this be new?
Unfortunately, the F.Pads layer no longer exists.
Many thanks and best regards
David