From 22e8eb37221682ea8b576c9f9cda0cefb0d18b5a Mon Sep 17 00:00:00 2001 From: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:24:47 -0300 Subject: [PATCH] mutool: cleanup page (#12223) Co-authored-by: Juri Dispan --- pages/common/mutool.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/common/mutool.md b/pages/common/mutool.md index ee2dcacec4..8490beb2a1 100644 --- a/pages/common/mutool.md +++ b/pages/common/mutool.md @@ -1,15 +1,15 @@ # mutool -> Convert PDF files, query information and extract data. +> Convert, query information and extract data from PDF files. > More information: . -- Convert pages 1-10 into 10 PNGs (Note: `%nd` in the output placeholder must be replaced with a print modifier like `%d` or `%2d`): +- Convert a range of pages to PNGs (Note: `%nd` in the output placeholder must be replaced with a print modifier like `%d` or `%2d`): `mutool convert -o {{path/to/output%nd.png}} {{path/to/input.pdf}} {{1-10}}` -- Convert pages 2, 3 and 5 of a PDF into text in `stdout`: +- Convert one or more pages of a PDF into text in `stdout`: -`mutool draw -F {{txt}} {{path/to/input.pdf}} {{2,3,5}}` +`mutool draw -F txt {{path/to/input.pdf}} {{2,3,5,...}}` - Concatenate multiple PDF files: @@ -19,10 +19,10 @@ `mutool info {{path/to/input.pdf}}` -- Extract all images, fonts and resources embedded in a PDF out into the current directory: +- Extract all images, fonts and resources embedded in a PDF to the current directory: `mutool extract {{path/to/input.pdf}}` -- Print the outline (table of contents) of a PDF: +- Show the outline (table of contents) of a PDF: `mutool show {{path/to/input.pdf}} outline`