rra
4 years ago
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||
#! /bin/bash |
|||
|
|||
pdffile=$1; |
|||
dpi=$2 |
|||
|
|||
gs \ |
|||
-o "${pdffile%.pdf}-resampled.pdf" \ |
|||
-sDEVICE=pdfwrite \ |
|||
-dDownsampleColorImages=true \ |
|||
-dDownsampleGrayImages=true \ |
|||
-dDownsampleMonoImages=true \ |
|||
-dColorImageResolution=$dpi \ |
|||
-dGrayImageResolution=$dpi \ |
|||
-dMonoImageResolution=$dpi \ |
|||
-dColorImageDownsampleThreshold=1.0 \ |
|||
-dGrayImageDownsampleThreshold=1.0 \ |
|||
-dMonoImageDownsampleThreshold=1.0 \ |
|||
"${pdffile}" |
Loading…
Reference in new issue