Last active
April 14, 2021 13:10
-
-
Save sk22/f4705d4010f652516c5fe72087400974 to your computer and use it in GitHub Desktop.
wrapper script for img2pdf to facilitate creating a pdf by simply dragging and dropping the file list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem make sure to install python3 and "pip install img2pdf" before using this script | |
echo creating pdf from files: | |
echo. | |
echo %* | |
img2pdf -o %1.pdf %* | |
echo. | |
echo saved as %1.pdf | |
echo. | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment