summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2017-01-03 11:10:50 +0000
committerSean Whitton <spwhitton@spwhitton.name>2020-01-12 12:28:26 +0000
commita883b6c8c163d49da71e550a15fa2a5a826ca02f (patch)
tree8d7e0f511b8107c21488354ffe84506db711705a
parent1a9e70127fee52f645624d988e0849dca7172103 (diff)
downloaddotfiles-a883b6c8c163d49da71e550a15fa2a5a826ca02f.tar.gz
sscan: A4 on zephyr
-rwxr-xr-xarchive/bin/sscan8
1 files changed, 4 insertions, 4 deletions
diff --git a/archive/bin/sscan b/archive/bin/sscan
index 33098d1d..2b9cbdeb 100755
--- a/archive/bin/sscan
+++ b/archive/bin/sscan
@@ -59,8 +59,8 @@ def main():
("Multi-page B&W PDF", '2'),
("Single page colour PDF", '3'),
("Multi-page colour PDF", '4'),
- ("Single page OCR'd PDF, letter size", '5'), # greyscale 400dpi best for ocr http://web.archive.org/web/20080529012847/http://groundstate.ca/ocr
- ("Multi-page OCR'd PDF, letter size", '6'),
+ ("Single page OCR'd PDF, A4 size", '5'), # greyscale 400dpi best for ocr http://web.archive.org/web/20080529012847/http://groundstate.ca/ocr
+ ("Multi-page OCR'd PDF, A4 size", '6'),
("Standard dpi full colour scan to PNG, autocrop", '7'),
("High dpi full colour scan to PNG, cropped to printed photo size", '8'),
("Single page colour PDF, letter size", '9'),
@@ -100,9 +100,9 @@ def main():
elif operation == '7':
scan(outdir, colour=True, crop=0)
elif operation == '5':
- scan(outdir, gray=True, ocr=True, crop=3)
+ scan(outdir, gray=True, ocr=True, crop=1)
elif operation == '6':
- scan(outdir, gray=True, ocr=True, crop=3, multi=True)
+ scan(outdir, gray=True, ocr=True, crop=1, multi=True)
elif operation == 'h':
scan(outdir, gray=True, ocr=False, crop=3, multi=True, dpi=75)