Unpacking sorted ZIP files with images (.png, .jpg, etc) to /image
folder, giving unique name (0..N index) to each image.
Compiling all extracted images into single result.pdf
.
-
Load your ZIP files with images to
/zip
folder; -
Run converter
2.2 Any platform/development:
-
Install Python 3.x+;
-
Install dependency
pip install Pillow
; -
Run script
python zip2pdf.py
.
-
-
Check
/images
folder andresult.pdf
From this:
/zip
|_my_zip_1.zip
| |_1.png (A)
| |_2.png (B)
|_my_zip_2.zip
| |_1.png (C)
| |_2.png (D)
| |_3.png (E)
To this:
/images
|_0.png (A)
|_1.png (B)
|_2.png (C)
|_3.png (D)
|_4.png (E)
+
result.pdf