1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pbmtoepsi.md
2024-11-02 14:15:15 +01:00

692 B

pbmtoepsi

Convert a PBM image to an encapsulated PostScript style preview bitmap. More information: https://netpbm.sourceforge.net/doc/pbmtoepsi.html.

  • Convert a PBM image to an encapsulated PostScript style preview bitmap:

pbmtoepsi {{path/to/image.pbm}} > {{path/to/output.bmp}}

  • Produce a quadratic output image with the specified resolution:

pbmtoepsi -dpi {{144}} {{path/to/image.pbm}} > {{path/to/output.bmp}}

  • Produce an output image with the specified horizontal and vertical resolution:

pbmtoepsi -dpi {{72x144}} {{path/to/image.pbm}} > {{path/to/output.bmp}}

  • Only create a boundary box:

pbmtoepsi -bbonly {{path/to/image.pbm}} > {{path/to/output.bmp}}