Skip to content

Commit ff8ed19

Browse files
committed
Added directory support examples in README
1 parent 9510136 commit ff8ed19

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
1-
# merge2pdf - Simplest tool for merging Images and PDFs into PDF
1+
# merge2pdf - Merge Image and PDF files into PDF
22

3-
Merge Image and PDF files (optionally with selective pages) with lossless quality.
3+
Simplest command line tool for merging Images and PDFs.
44
It will not convert PDF pages (with texts, images, forms) into flat image, everything will remain as is.
55

6+
![merge2pdf - simplest tool for merging image and PDF files](extra/merge2pdf_banner.png?raw=true)
7+
8+
Highlights -
9+
10+
- Very simple and easy to use
11+
- Lossless quality by default. Option to adjust JPEG quality.
12+
- Can be merged only selective pages of PDF
13+
- Supports wide range of image formats
14+
- Options to adjust size, margin and scaling of image
15+
- Supports directory as input (merges all Images/PDFs of directory)
16+
- Free and open source
17+
618
### Install
719

820
It's just a single binary file, no external dependencies.

extra/merge2pdf_banner.png

32.3 KB
Loading

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var JPEGQuality int
1616
const (
1717
DefaultSize = "IMG-SIZE"
1818
DefaultMargin = "0,0,0,0"
19-
VERSION = "1.0.2"
19+
VERSION = "1.1.0"
2020
)
2121

2222
func init() {

0 commit comments

Comments
 (0)