comparison mupdf-source/docs/tools/mutool-poster.rst @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 mutool poster
2 ==========================================
3
4 The ``poster`` command reads the input PDF file and for each page chops it up into ``x`` by ``y`` pieces. Each piece becomes its own page in the output PDF file. This makes it possible for each page to be printed upscaled and can then be merged into a large poster.
5
6 .. code-block:: bash
7
8 mutool poster [options] input.pdf [output.pdf]
9
10 ``[options]``
11 Options are as follows:
12
13 ``-p`` password
14 Use the specified password if the file is encrypted.
15
16 ``-m`` margin
17 Set the margin (overlap) between pages in points or percent.
18
19 ``-x`` x decimation factor
20 Pieces to horizontally divide each page into.
21
22 ``-y`` y decimation factor
23 Pieces to vertically divide each page into.
24
25 ``-r``
26 Split horizontally from right to left (default splits from left to right).
27
28 ``input.pdf``
29 The input PDF document.
30
31 ``[output.pdf]``
32 The output filename. Defaults to "out.pdf" if not supplied.