Convert PDF to TIFF
Convert PDF to TIFF
February 19, 2025
Convert pdf files to tiff images with pdftoppm or ghostscript.
pdftoppm
Install pdftoppm
To install pdftoppm (included in poppler-utils)123
Ubuntu
sudo apt install poppler-utilsconda
Available in both Windows and Linux.
conda install -c conda-forge popplerUsage
See documentation of pdftoppm.
For example, to convert the pdf file to a 300-DPI TIFF image with LZW compression.
pdftoppm -tiff -tiffcompression lzw -r 300 in.pdf out.tifImageMagick
Install
Ubuntu
sudo apt install imagemagickWindows
choco install -y imagemagickUsage
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"Last updated on