Convert PDF to TIFF
Convert pdf
files to tiff
images with pdftoppm
or ghostscript
.
pdftoppm¶
Install pdftoppm¶
To install pdftoppm
(included in poppler-utils
)123
Ubuntu
conda
Available in both Windows and Linux.
Usage¶
See documentation of pdftoppm
.
For example, to convert the pdf file to a 300-DPI TIFF image with LZW compression.
ImageMagick¶
Install¶
Ubuntu
Windows
Usage¶
How to convert a pdf
file to a tiff
file:
magick "image.pdf" -density 300 \
-compress lzw \
-background white \
-alpha remove \
-trim \
"image_%d.tiff"