Skip to content

Instantly share code, notes, and snippets.

@manuwell
Last active June 12, 2018 13:34
Show Gist options
  • Save manuwell/7e4e7c2a5641c7e6e92bbd61e35c7d9f to your computer and use it in GitHub Desktop.
Save manuwell/7e4e7c2a5641c7e6e92bbd61e35c7d9f to your computer and use it in GitHub Desktop.
Imagemagick PDF2TIFF
# convert pdf pages into multiple tiffs
convert unidade_1.pdf pages-%03d.tiff
# convert multiple pdf into tiff grayscaled
convert unidade_1.pdf -gravity center -append -background white -alpha remove -alpha off -set colorspace Gray -separate -average unidade.tiff
# with compress
convert *.pdf -gravity center -append -background white -alpha remove -alpha off -separate -average -strip -quality 90 -depth 16 -compress Zip chargeback-3.tiff ; ls -ltrah *.tiff
# working conversion tiff
convert order.jpg invoice.pdf shipping.pdf -gravity center -append -background white -alpha remove -flatten -separate -average -type palette -depth 32 -compress lzw chargeback-32b-strip.tif ; ls -ltrah *.tif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment