Linux Commands Examples

A great documentation place for Linux commands

pdftoppm

Portable Document Format (PDF) to Portable Pixmap (PPM) converter (version 3.03)


see also : pdfdetach - pdffonts - pdfimages - pdfinfo - pdftocairo - pdftohtml - pdftops - pdftotext

Synopsis

pdftoppm [options] PDF-file PPM-root


add an example, a script, a trick and tips

: email address (won't be displayed)
: name

Step 2

Thanks for this example ! - It will be moderated and published shortly.

Feel free to post other examples
Oops ! There is a tiny cockup. A damn 404 cockup. Please contact the loosy team who maintains and develops this wonderful site by clicking in the mighty feedback button on the side of the page. Say what happened. Thanks!

examples

3
source
            
epstopdf $1.eps
pdftoppm -gray $1.pdf $1
pnmtopng -transparent rgb:ff/ff/ff $1-1.pgm > $1.png
rm *.log *.pgm *.aux *.dvi *.eps *.pdf
2
source
            
echo pdftoppm -gray -r 300 "${pdf_path}" "${ppm_path_base}"
pdftoppm -gray -r 300 "${pdf_path}" "${ppm_path_base}"
2
source
            
for f in pg*.pdf ; do echo $f ; pdftoppm -r $res $f > $f.ppm ; done
2
source
            
h="$9"
pdftoppm -png -f $page -l $page -rx $resx -ry $resy -x $x -y $y -W $w -H $h "$input" "$tmp"
mv "$tmp"*.png "$output"
1
source
            
mkdir tmp
pdftoppm $1 tmp/image
mkdir $2
convert tmp/image-*.ppm -rotate 90 -resize 1024x1024 -depth 8 -colors 256 $2/image%02d.pcx

description

Pdftoppm converts Portable Document Format (PDF) files to color image files in Portable Pixmap (PPM) format, grayscale image files in Portable Graymap (PGM) format, or monochrome image files in Portable Bitmap (PBM) format.

Pdftoppm reads the PDF file, PDF-file, and writes one PPM file for each page, PPM-root-number.ppm, where number is the page number.

options

-f number

Specifies the first page to convert.

-l number

Specifies the last page to convert.

-o

Generates only the odd numbered pages.

-e

Generates only the even numbered pages.

-singlefile

Writes only the first page and does not add digits.

-r number

Specifies the X and Y resolution, in DPI. The default is 150 DPI.

-rx number

Specifies the X resolution, in DPI. The default is 150 DPI.

-ry number

Specifies the Y resolution, in DPI. The default is 150 DPI.

-scale-to number

Scales the long side of each page (width for landscape pages, height for portrait pages) to fit in scale-to pixels. The size of the short side will be determined by the aspect ratio of the page.

-scale-to-x number

Scales each page horizontally to fit in scale-to-x pixels. If scale-to-y is set to -1, the vertical size will determined by the aspect ratio of the page.

-scale-to-y number

Scales each page vertically to fit in scale-to-y pixels. If scale-to-x is set to -1, the horizontal size will determined by the aspect ratio of the page.

-x number

Specifies the x-coordinate of the crop area top left corner

-y number

Specifies the y-coordinate of the crop area top left corner

-W number

Specifies the width of crop area in pixels (default is 0)

-H number

Specifies the height of crop area in pixels (default is 0)

-sz number

Specifies the size of crop square in pixels (sets W and H)

-cropbox

Uses the crop box rather than media box when generating the files

-mono

Generate a monochrome PBM file (instead of a color PPM file).

-gray

Generate a grayscale PGM file (instead of a color PPM file).

-png

Generates a PNG file instead a PPM file.

-jpeg

Generates a JPEG file instead a PPM file.

-tiff

Generates a TIFF file instead a PPM file.

-tiffcompression none | packbits | jpeg | lzw | deflate

Specifies the TIFF compression type. This defaults to "none".

-freetype yes | no

Enable or disable FreeType (a TrueType / Type 1 font rasterizer). This defaults to "yes".

-aa yes | no

Enable or disable font anti-aliasing. This defaults to "yes".

-aaVector yes | no

Enable or disable vector anti-aliasing. This defaults to "yes".

-opw password

Specify the owner password for the PDF file. Providing this will bypass all security restrictions.

-upw password

Specify the user password for the PDF file.

-q

Don’t print any messages or errors.

-v

Print copyright and version information.

-h

Print usage information. (-help and --help are equivalent.)

exit codes

The Xpdf tools use the following exit codes:

0

No error.

1

Error opening a PDF file.

2

Error opening an output file.

3

Error related to PDF permissions.

99

Other error.


see also

pdfdetach , pdffonts , pdfimages , pdfinfo , pdftocairo , pdftohtml , pdftops , pdftotext


author

The pdftoppm software and documentation are copyright 1996-2011 Glyph & Cog, LLC.

How can this site be more helpful to YOU ?


give  feedback