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