Skip to content

Instantly share code, notes, and snippets.

View jcoffland's full-sized avatar

Joseph Coffland jcoffland

View GitHub Profile
@jcoffland
jcoffland / reduce-scanned-pdf.sh
Last active February 27, 2025 13:26
Reduce size and improve contrast of PDF containing scanned document images
#!/bin/bash
if [ $# -ne 2 ]; then
echo "Usage $0 <input.pdf> <output.pdf>"
exit 1
fi
INPUT="$1"
OUTPUT="$2"