ADD pdf compression script
This commit is contained in:
parent
43e85d3d2b
commit
7a621835f7
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Compress a pdf using ghostscript. I really don't understand what this is
|
||||||
|
# doing but it seems to work well.
|
||||||
|
|
||||||
|
gs -sDEVICE=pdfwrite \
|
||||||
|
-dCompatibilityLevel=1.4 \
|
||||||
|
-dPDFSETTINGS=/prepress \
|
||||||
|
-dNOPAUSE \
|
||||||
|
-dQUIET \
|
||||||
|
-dBATCH \
|
||||||
|
-sOutputFile="$2" \
|
||||||
|
"$1"
|
Loading…
Reference in New Issue