summaryrefslogtreecommitdiff
path: root/archive/bin/sscan
diff options
context:
space:
mode:
Diffstat (limited to 'archive/bin/sscan')
-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)