1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 01:02:07 +02:00
tldr/pages/common/mupdf.md
pixel 263508cd44
*: replace file(s) syntax and add path/to/ to more things (#9592)
* Fix file(s) and more path/to

* Update pages.it/common/rm.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>

* thanks emily your suggestion was dogshit

https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
2022-12-06 16:47:56 +10:00

631 B

mupdf

MuPDF is a lightweight PDF, XPS, and E-book viewer. More information: https://www.mupdf.com.

  • Open a PDF on the first page:

mupdf {{path/to/file}}

  • Open a PDF on page 3:

mupdf {{path/to/file}} {{3}}

  • Open a password secured PDF:

mupdf -p {{password}} {{path/to/file}}

  • Open a PDF with an initial zoom level, specified as DPI, of 72:

mupdf -r {{72}} {{path/to/file}}

  • Open a PDF with inverted color:

mupdf -I {{path/to/file}}

  • Open a PDF tinted red #FF0000 (hexadecimal color syntax RRGGBB):

mupdf -C {{FF0000}}

  • Open a PDF without anti-aliasing (0 = off, 8 = best):

mupdf -A {{0}}