Skip to content

Instantly share code, notes, and snippets.

View arkadiusz-wieczorek's full-sized avatar

Arkadiusz Wieczorek arkadiusz-wieczorek

View GitHub Profile
@s417-lama
s417-lama / svg2pdf.bash
Created April 29, 2020 07:18
Reliable way to convert an SVG file to a PDF file using headless Chrome
#!/bin/bash
#
# Convert an SVG file to a PDF file by using headless Chrome.
#
if [ $# -ne 2 ]; then
echo "Usage: ./svg2pdf.bash input.svg output.pdf" 1>&2
exit 1
fi