Skip to content

Instantly share code, notes, and snippets.

@sk22
Last active April 14, 2021 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sk22/f4705d4010f652516c5fe72087400974 to your computer and use it in GitHub Desktop.
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
@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