Skip to content

Commit efd613c

Browse files
committed
Update README: Add example for convert
1 parent 2580506 commit efd613c

File tree

1 file changed

+19
-5
lines changed

1 file changed

+19
-5
lines changed

README.md

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@
3131

3232
- **Images** → PDF
3333
- **PDF** → Word (DOCX)
34+
- **PDF** → PowerPoint (PPTX)
35+
- **PDF** → Images
3436
- **PowerPoint** → PDF
3537
- **Excel** → PDF
36-
- **PDF** → Images
3738
- **HTML** → PDF
3839
- **Merge** multiple PDFs into one
3940
- **Split** PDFs into specific page ranges
@@ -61,7 +62,7 @@ filto [OPTIONS] COMMAND [ARGS]...
6162
```
6263

6364
## Basic Commands
64-
### 1. convert Images to PDF
65+
### 1. Convert Images to PDF
6566
convert single or multiple images to PDF file
6667

6768
**Single Image:**
@@ -74,11 +75,24 @@ if you have a multiple image put in folder then run
7475

7576
**Using glob pattern**
7677
```
77-
filto convert images/*.{jpg,png} output.pdf
78+
filto convert images/ output.pdf
79+
```
80+
81+
---
82+
### 2. Convert Pdf to Docx
83+
```
84+
filto convert input.pdf output.docx
7885
```
79-
**Or list files individually**
86+
---
87+
### 3. Convert Pdf to Pptx
88+
```
89+
filto convert input.pdf out.pptx
90+
```
91+
---
92+
### 4. Convert Pdf to Images
93+
8094
```
81-
filto convert image1.jpg image2.png output.pdf
95+
filto convert input.pdf output.jpg
8296
```
8397

8498

0 commit comments

Comments
 (0)