@@ -26,23 +26,24 @@ $ pdfly --help
26
26
27
27
pdfly is a pure-python cli application for manipulating PDF files.
28
28
29
- ╭─ Options ───────────────────────────────────────────────────────────────────╮
30
- │ --version │
31
- │ --help Show this message and exit. │
32
- ╰─────────────────────────────────────────────────────────────────────────────╯
33
- ╭─ Commands ──────────────────────────────────────────────────────────────────╮
34
- │ 2-up Create a booklet-style PDF from a single input. │
35
- │ cat Concatenate pages from PDF files into a single PDF file. │
36
- │ compress Compress a PDF. │
37
- | uncompress Uncompresses a PDF. │
38
- │ extract-images Extract images from PDF without resampling or altering. │
39
- │ extract-text Extract text from a PDF file. │
40
- │ meta Show metadata of a PDF file │
41
- │ pagemeta Give details about a single page. │
42
- │ rm Remove pages from PDF files. │
43
- │ update-offsets Updates offsets and lengths in a simple PDF file. │
44
- │ x2pdf Convert one or more files to PDF. Each file is a page. │
45
- ╰─────────────────────────────────────────────────────────────────────────────╯
29
+ ╭─ Options ────────────────────────────────────────────────────────────────────────────╮
30
+ │ --version │
31
+ │ --help Show this message and exit. │
32
+ ╰──────────────────────────────────────────────────────────────────────────────────────╯
33
+ ╭─ Commands ───────────────────────────────────────────────────────────────────────────╮
34
+ │ 2-up Create a booklet-style PDF from a single input. │
35
+ │ cat Concatenate pages from PDF files into a single PDF file. │
36
+ │ compress Compress a PDF. │
37
+ | uncompress Uncompresses a PDF. │
38
+ | extract-annotated-pages Extract only the annotated pages from a PDF. |
39
+ │ extract-images Extract images from PDF without resampling or altering. │
40
+ │ extract-text Extract text from a PDF file. │
41
+ │ meta Show metadata of a PDF file │
42
+ │ pagemeta Give details about a single page. │
43
+ │ rm Remove pages from PDF files. │
44
+ │ update-offsets Updates offsets and lengths in a simple PDF file. │
45
+ │ x2pdf Convert one or more files to PDF. Each file is a page. │
46
+ ╰──────────────────────────────────────────────────────────────────────────────────────╯
46
47
```
47
48
48
49
You can see the help of every subcommand by typing:
@@ -56,13 +57,13 @@ $ pdfly 2-up --help
56
57
Pairs of two pages will be put on one page (left and right)
57
58
usage: python 2-up.py input_file output_file
58
59
59
- ╭─ Arguments ─────────────────────────────────────────────────────────────────╮
60
- │ * pdf PATH [default: None] [required] │
61
- │ * out PATH [default: None] [required] │
62
- ╰─────────────────────────────────────────────────────────────────────────────╯
63
- ╭─ Options ───────────────────────────────────────────────────────────────────╮
64
- │ --help Show this message and exit. │
65
- ╰─────────────────────────────────────────────────────────────────────────────╯
60
+ ╭─ Arguments ────────────────────────────────────────────────────────────────────────── ╮
61
+ │ * pdf PATH [default: None] [required] │
62
+ │ * out PATH [default: None] [required] │
63
+ ╰────────────────────────────────────────────────────────────────────────────────────── ╯
64
+ ╭─ Options ──────────────────────────────────────────────────────────────────────────── ╮
65
+ │ --help Show this message and exit. │
66
+ ╰────────────────────────────────────────────────────────────────────────────────────── ╯
66
67
```
67
68
68
69
## Contributors ✨
0 commit comments