Skip to content

Commit eb6b3e2

Browse files
committed
Initial commit
0 parents  commit eb6b3e2

File tree

6 files changed

+856
-0
lines changed

6 files changed

+856
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Auto detect text files and perform LF normalization
2+
* text eol=crlf
3+
4+
*.exe -text
5+
*.dll -text
6+
*.cmp -text
7+
*.cobj -text

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## VB6 workspace
2+
3+
*.vbw
4+
*.bak
5+
*.log
6+
*.scc
7+
*.zip
8+
*.exp
9+
*.lib
10+
*.obj
11+
*.dll
12+
*.exe
13+
*.pdb
14+
**/_del
15+
~*
16+
*.xlsb
17+
*.out
18+
*.pdf
19+
**/jpegs

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## vbimg2pdf
2+
Convert jpeg/png images to multi-page pdf file
3+
4+
### Description
5+
6+
Can be used to embed jpeg/png images in a single pdf file without resizing and recompressing input format. Uses `Microsoft Print to PDF` printer as pdf writer.
7+
8+
### Sample usage
9+
10+
- Generate `output.pdf` from all jpegs in current folder
11+
```
12+
c:> vbimg2pdf.exe *.jpg -o output.pdf
13+
```
14+
### Command-line
15+
```
16+
vbimg2pdf 0.1 (c) 2018 by wqweto@gmail.com
17+
Convert jpeg/png images to multi-page pdf
18+
19+
Usage: vbimg2pdf.exe [options] <in_file.jpg> ...
20+
21+
Options:
22+
-o OUTFILE write result to OUTFILE
23+
-paper SIZE output paper size (e.g. A4)
24+
-orientation ORNT page orientation (e.g. portrait)
25+
-margins L[/T/R/B] page margins in inches (e.g. 0.25)
26+
-q in quiet operation outputs only errors
27+
-nologo suppress startup banner
28+
```

0 commit comments

Comments
 (0)