Skip to content

Instantly share code, notes, and snippets.

@sunsided
Last active January 1, 2025 12:44
Show Gist options
  • Save sunsided/212a3c872ac21e32a30062fda28934d2 to your computer and use it in GitHub Desktop.
Save sunsided/212a3c872ac21e32a30062fda28934d2 to your computer and use it in GitHub Desktop.
JPEG to PDF
#!/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