Skip to content

Instantly share code, notes, and snippets.

@agarie
Created January 20, 2017 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agarie/ff6798a6ebdecd476408beb309378ba4 to your computer and use it in GitHub Desktop.
Save agarie/ff6798a6ebdecd476408beb309378ba4 to your computer and use it in GitHub Desktop.
Convert the colors of a PDF file from RGB to CMYK for printing.
#!/usr/bin/zsh
gs -dSAFER -dBATCH \
-dNOPAUSE -dNOCACHE -sDEVICE=pdfwrite \
-sColorConversionStrategy=CMYK \
-dProcessColorModel=/DeviceCMYK \
-sOutputFile=$2 \
$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment