Bloodsucker

This commit is contained in:
Geoffrey Frogeye 2020-08-08 11:19:48 +02:00
parent 6cdd924613
commit f03d13f7db
8 changed files with 140 additions and 811 deletions

View file

@ -25,7 +25,7 @@ then
if [ -f "$page_stmp_svg" ]
then
echo "Processing $page_orig_path (applying stamp)"
inkscape "$page_stmp_svg" --export-pdf "$page_stmp_pdf"
inkscape "$page_stmp_svg" --export-filename "$page_stmp_pdf"
pdftk "$page_orig_path" stamp "$page_stmp_pdf" output "$page_fin_pdf"
else
echo "Processing $page_orig_path (copying)"
@ -51,7 +51,7 @@ then
do
page_stmp_svg="$(echo "$page_orig_path" | sed 's|_og\.pdf$|_fg\.svg|')"
echo "Processing $page_orig_path"
inkscape "$page_orig_path" --export-plain-svg "$page_stmp_svg"
inkscape "$page_orig_path" --export-plain-svg --export-filename "$page_stmp_svg"
done
echo "Done. Make sure to edit in a a new layer in Inkscape and hide the original one."
else