]> piware.de Git - bin.git/commitdiff
scandoc: Convert to ImageMagic v7 CLI
authorMartin Pitt <martin@piware.de>
Sun, 1 Sep 2024 11:35:39 +0000 (13:35 +0200)
committerMartin Pitt <martin@piware.de>
Sun, 1 Sep 2024 11:35:39 +0000 (13:35 +0200)
scandoc

diff --git a/scandoc b/scandoc
index ebbce60c9a2c796f91f5dbd2251ae7fc34528369..3844e5c90939b36640960a159cf06bcc1659e95b 100755 (executable)
--- a/scandoc
+++ b/scandoc
@@ -13,10 +13,10 @@ echo "Output file directory: $D"
 PAGE=0
 while true; do
     PAGE=$((PAGE+1))
-    scanimage --device-name=genesys --format=png --progress --resolution 150 --mode Gray -x 210 -y 297 | convert -rotate 180 -modulate 120 -level 30,60% - cur.png
+    scanimage --device-name=genesys --format=png --progress --resolution 150 --mode Gray -x 210 -y 297 | magick - -rotate 180 -modulate 120 -level 30,60% cur.png
     FNAME=page`printf '%02i' $PAGE`
     pngquant 4 < cur.png > $FNAME.png
-    convert $FNAME.png $FNAME.pdf
+    magick $FNAME.png $FNAME.pdf
     echo "Insert next page and press Enter; q to stop"
     read x
     [ "$x" = q ] && break || true