From 3665a4a10b1d23e0e5fc00ccb9b751597f1483e4 Mon Sep 17 00:00:00 2001 From: "Jiri (George) Lebl" Date: Thu, 17 May 2018 18:00:09 -0500 Subject: [PATCH] add resize script --- resizepdftocrownquatro.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 resizepdftocrownquatro.sh diff --git a/resizepdftocrownquatro.sh b/resizepdftocrownquatro.sh new file mode 100755 index 0000000..c1d7688 --- /dev/null +++ b/resizepdftocrownquatro.sh @@ -0,0 +1,13 @@ +#!/bin/sh +gs \ + -sOutputFile="$1"-cq.pdf \ + -sDEVICE=pdfwrite \ + -r720 \ + -g5356x6976 \ + -dCompatibilityLevel=1.5 \ + -dNOPAUSE \ + -dBATCH \ + -dPDFFitPage \ + "$1".pdf + +#-sPAPERSIZE=a4 \