Skip to content

Instantly share code, notes, and snippets.

@nkokkos
Created October 15, 2018 09:47
Show Gist options
  • Save nkokkos/9495540852395161c58a84916de235b1 to your computer and use it in GitHub Desktop.
Save nkokkos/9495540852395161c58a84916de235b1 to your computer and use it in GitHub Desktop.
Break a pdf file to subparts with ghostscript on windows
c:\gswin32c.exe -sDEVICE=pdfwrite \
-dNOPAUSE \
-dBATCH \
-dSAFER \
-dCompatibilityLevel=1.6 \
-dPDFSETTINGS=/prepress
-dEmbedAllFonts=true \
-dSubsetFonts=false \
-dFirstPage=1 -dLastPage=100 \
-sOutputFile=output_file.pdf input_file.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment