Last active
June 27, 2017 05:56
-
-
Save MichaelJCole/86e4968dbfc13256228a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# pdfScale.sh | |
# | |
# Scale PDF to specified percentage of original size. | |
# Ref: http://ma.juii.net/blog/scale-page-content-of-pdf-files. | |
echo "This script doesn't handle files with spaces in them." | |
SCALE=0.95 # scaling factor (0.95 = 95%, e.g.) | |
# Validate args. | |
[ $# -eq 1 ] || { echo "***ERROR: Usage pdfScale.sh <inFile>.pdf"; exit 99; } | |
INFILEPDF="$1" | |
[[ "$INFILEPDF" =~ ^..*\.pdf$ ]] || { echo "***ERROR: Usage pdfScale.sh <inFile>.pdf"; exit 99; } | |
OUTFILEPDF=$(echo "$INFILEPDF" | sed -e s/\.pdf$// -).SCALED.pdf | |
# Dependencies | |
command -v identify >/dev/null 2>&1 || { echo >&2 "Please install 'imagemagick' (sudo apt-get install imagemagick). Aborting."; exit 1; } | |
command -v gs >/dev/null 2>&1 || { echo >&2 "Please install 'ghostscript' (sudo apt-get install ghostscript ?). Aborting."; exit 1; } | |
command -v bc >/dev/null 2>&1 || { echo >&2 "Please install 'bc' arbitrary precision calculator language. Aborting."; exit 1; } | |
# Get width/height in postscript points (1/72-inch), via ImageMagick identify command. | |
# (Alternatively, could use Poppler pdfinfo command; or grep/sed the PDF by hand.) | |
IDENTIFY=($(identify $INFILEPDF 2>/dev/null)) # bash array | |
[ $? -ne 0 ] &GEOMETRY=($(echo ${IDENTIFY[2]} | tr "x" " ")) # bash array — $IDENTIFY[2] is of the form PGWIDTHxPGHEIGHT | |
PGWIDTH=${GEOMETRY[0]}; PGHEIGHT=${GEOMETRY[1]} | |
# Compute translation factors (to center page. | |
XTRANS=$(echo "scale=6; 0.5*(1.0-$SCALE)/$SCALE*$PGWIDTH" | bc) | |
YTRANS=$(echo "scale=6; 0.5*(1.0-$SCALE)/$SCALE*$PGHEIGHT" | bc) | |
echo $PGWIDTH , $PGHEIGHT , $OUTFILEPDF , $SCALE , $XTRANS , $YTRANS , $INFILEPDF , $OUTFILEPDF | |
# Do it. | |
gs \ | |
-q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dSAFER \ | |
-dCompatibilityLevel="1.5" -dPDFSETTINGS="/printer" \ | |
-dColorConversionStrategy=/LeaveColorUnchanged \ | |
-dSubsetFonts=true -dEmbedAllFonts=true \ | |
-dDEVICEWIDTH=$PGWIDTH -dDEVICEHEIGHT=$PGHEIGHT \ | |
-sOutputFile="$OUTFILEPDF" \ | |
-c "<</BeginPage{$SCALE $SCALE scale $XTRANS $YTRANS translate}>> setpagedevice" \ | |
-f "$INFILEPDF" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Made it into a repository here:
https://github.com/tavinus/pdfScale
Made many changes there. Should run on MacOS, you can change scale, help info, makefile to install, etc.
Cheers!