Last active
January 1, 2025 12:44
-
-
Save sunsided/212a3c872ac21e32a30062fda28934d2 to your computer and use it in GitHub Desktop.
JPEG to PDF
This file contains 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
#!/usr/bin/env bash | |
set -euo pipefail | |
jpegoptim *.jpg | |
img2pdf --pagesize A4 --auto-orient --output output.pdf *.jpg | |
ocrmypdf --lang deu+eng output.pdf output.pdf | |
shrinkpdf.sh -r 300 -o smaller.pdf output.pdf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment