-
Notifications
You must be signed in to change notification settings - Fork 29
/
scan
executable file
·484 lines (401 loc) · 13.8 KB
/
scan
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
#!/bin/bash
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
DEVICE=fujitsu
OUTPUT=scan.pdf
OUTPUTARR=()
USEOUTPUT=0
USEARRAY=0
APPEND=0
RESOLUTION=300
MODE=Lineart
MODE_CHANGED=0
MODE_HW_DEFAULT=0
SCRIPT="$DIR/scan_perpage"
DUPLEX=0
UNPAPER=0
SEARCHABLE=0
LANGUAGE=eng
MAXPAGE=
TRUNCPAGE=0
HELP=0
SIZE=
DEFAULTSIZE=1
PGHEIGHT=
PGHEIGHTIN=
PGWIDTH=
PGWIDTHIN=
PGCENTERING=1
CROP=0
DESKEW=0
DRIVER_OPTION=
VERBOSE=0
SKIP_EMPTY_PAGES=0
WHITE_THRESHOLD=99.8
BRIGHTNESS_CONTRAST=
SOURCE=""
SOURCE_DUPLEX="ADF Duplex"
OPENSCAN=0
OPTION_GROUP=""
TMP_DIR=$(mktemp -d -p "" scan.XXXXXXXXXX)
cleanup()
{
rm -rf "$TMP_DIR"
}
trap cleanup EXIT
DEFAULTS="${XDG_DATA_HOME:-$HOME/.local/share}/sane-scan-pdf/defaults"
SCANPRE="${XDG_DATA_HOME:-$HOME/.local/share}/sane-scan-pdf/scan_pre"
[ -e "$DEFAULTS" ] && . "$DEFAULTS"
# copy the args
args=("$@")
# Parse command-line options that change how settings are read first
# This way, things like preset option groups can be set first, then overwritten by explicit args
while [[ $# > 0 ]]; do
case "$1" in
-h|--help) HELP=1 ;;
-og|--option-group) shift; OPTION_GROUP="${XDG_DATA_HOME:-$HOME/.local/share}/sane-scan-pdf/$1" ;;
esac
shift # next option
done
if [[ -f "$OPTION_GROUP" ]]; then
. "$OPTION_GROUP"
elif [[ "$OPTION_GROUP" != "" && $HELP == 0 ]]; then
echo >&2 "Warning: '--option-group' specified, but the corresponding file $OPTION_GROUP does not exist."
fi
# reset the args
set -- "${args[@]}"
# Parse other command-line options, these will now overwrite anything set via defaults or option groups
while [[ $# > 0 ]]; do
case "$1" in
-v|--verbose) VERBOSE=1 ;;
--no-verbose) VERBOSE=0 ;;
-d|--duplex) DUPLEX=1 ;;
-d|--no-duplex) DUPLEX=0 ;;
--source) shift; SOURCE="$1" ;;
--source-duplex) shift; SOURCE_DUPLEX="$1" ;;
-m|--mode) shift; MODE=$1; MODE_CHANGED=1 ;;
--mode-hw-default) MODE_HW_DEFAULT=1 ;;
--no-mode-hw-default) MODE_HW_DEFAULT=0 ;;
-r|--resolution) shift; RESOLUTION=$1 ;;
-a|--append) APPEND=1 ;;
--no-append) APPEND=0 ;;
-e|--max) shift; MAXPAGE=$1 ;;
-t|--truncate) shift; TRUNCPAGE=$1 ;;
# ignore, already handled
-h|--help) shift ;;
-s|--size) shift; SIZE=$1 ;;
-ph|--page-height) shift; PGHEIGHT=$1 ;;
-pw|--page-width) shift; PGWIDTH=$1 ;;
--no-page-centering) PGCENTERING=0 ;;
--no-default-size) DEFAULTSIZE=0 ;;
--crop) CROP=1 ;;
--no-crop) CROP=0 ;;
--deskew) DESKEW=1 ;;
--no-deskew) DESKEW=0 ;;
--unpaper) UNPAPER=1 ;;
--no-unpaper) UNPAPER=0 ;;
--searchable|--ocr) SEARCHABLE=1 ;;
--no-searchable|--no-ocr) SEARCHABLE=0 ;;
--language) shift; LANGUAGE=$1 ;;
--skip-empty-pages) SKIP_EMPTY_PAGES=1 ;;
--no-skip-empty-pages) SKIP_EMPTY_PAGES=0 ;;
--white-threshold) shift; WHITE_THRESHOLD=$1 ;;
-o|--output) shift; USEOUTPUT=1; OUTPUT="$1" ;;
-l|--outputlist) shift; USEARRAY=1; OUTPUTARR=(); OUTPUTARR+=("$1") ;;
-x|--device) shift; DEVICE="$1" ;;
-xo|--driver-options) shift; DRIVER_OPTION=$1 ;;
--brightness-contrast-sw) shift; BRIGHTNESS_CONTRAST=$1 ;;
--open) OPENSCAN=1 ;;
--no-open) OPENSCAN=0 ;;
# ignore, already handled
-og|--option-group) shift ;;
*) if [[ $USEARRAY == 1 ]]; then OUTPUTARR+=("$1"); else echo >&2 "Unknown argument: $1"; exit 1; fi ;;
esac
shift # next option
done
if [[ $HELP == 1 ]]; then
echo "$(basename $0) [OPTIONS]... [OUTPUT]"
echo ""
echo "OPTIONS"
echo " -v, --verbose"
echo " Verbose output (this will slow down the scan due to the need to prevent interleaved output)"
echo " -d, --duplex"
echo " Duplex scanning"
echo " --source"
echo " Explicitly specify a source for the scan e.g. ADF, Flatbed, etc. If not specified, the driver default is used."
echo " --source-duplex"
echo " Explicitly specify a source for duplex scans e.g. ADF Duplex, Flatbed, etc. Defaults to \"ADF Duplex\""
echo " -m, --mode"
echo " Mode e.g. Lineart (default), Halftone, Gray, Color, etc. Use --mode-hw-default to not set any mode"
echo " --mode-hw-default"
echo " Do not set the mode explicitly, use the hardware default — ignored if --mode is set"
echo " -r, --resolution"
echo " Resolution e.g 300 (default)"
echo " -a, --append"
echo " Append output to existing scan"
echo " -e, --max <pages>"
echo " Max number of pages e.g. 2 (default is all pages)"
echo " -t, --truncate <pages>"
echo " Truncate number of pages from end e.g. 1 (default is none) -- truncation happens after --skip-empty-pages"
echo " -s, --size"
echo " Page Size as type e.g. Letter (default), Legal, A4, no effect if --crop is specified"
echo " -ph, --page-height"
echo " Custom Page Height in mm"
echo " -pw, --page-width"
echo " Custom Page Width in mm"
echo " --no-page-centering"
echo " By default, we use --page-height and --page-width parameters for centering -- if specified skip these"
echo " -x, --device"
echo " Override scanner device name, defaulting to \"$DEVICE\", pass an empty value for no device arg"
echo " -xo, --driver-options"
echo " Send additional options to the scanner driver e.g."
echo " -xo \"--whatever bar --frobnitz baz\""
echo " --no-default-size"
echo " Disable default page size, useful if driver does not support page size/location arguments"
echo " --crop"
echo " Crop to contents (driver must support this)"
echo " --deskew"
echo " Run driver deskew (driver must support this)"
echo " --unpaper"
echo " Run post-processing deskew and black edge detection (requires unpaper)"
echo " --ocr"
echo " Run OCR to make the PDF searchable (requires tesseract)"
echo " --language <lang>"
echo " which language to use for OCR"
echo " --skip-empty-pages"
echo " remove empty pages from resulting PDF document (e.g. one sided doc in duplex mode)"
echo " --white-threshold"
echo " threshold to identify an empty page is a percentage value between 0 and 100. The default is 99.8"
echo " --brightness-contrast-sw"
echo " Alter brightness and contrast via post-processing - prefer specifying brightness and/or"
echo " contrast via --driver-options if supported by your hardware."
echo " --open"
echo " After scanning, open the scan via xdg-open"
echo " -og, --option-group"
echo " A named option group. Useful for saving collections of options under a name e.g. 'receipt' for easy reuse."
echo " Use this option in combination with '--help' to show the location and content of the file and edit it manually."
echo ""
echo "OUTPUT"
echo " -o, --output <outputfile>"
echo " Output to named file default=scan.pdf"
echo " -l, --outputlist <outputfile-1...outputfile-n> Output to named files for each scanned page, can be used with append"
echo ""
echo "CONFIGURATION"
echo "Local configuration can be written in the form of environment variables to:"
echo " $DEFAULTS"
if [[ -e "$DEFAULTS" ]]; then
echo ""
echo "This file exists and currently contains:"
echo "-----"
cat "$DEFAULTS"
echo "-----"
fi
echo ""
echo "A named option group can be written based on the '--option-group' argument. Current:"
echo " $OPTION_GROUP"
if [[ -e "$OPTION_GROUP" ]]; then
echo ""
echo "This file exists and currently contains:"
echo "-----"
cat "$OPTION_GROUP"
echo "-----"
fi
echo ""
echo "A pre-scan hook script can be written to:"
echo " $SCANPRE"
if [[ -e "$SCANPRE" ]]; then
echo ""
echo "This file exists and currently contains:"
echo "-----"
cat "$SCANPRE"
echo "-----"
fi
echo ""
exit 0
fi
if [[ $USEARRAY == 1 && $USEOUTPUT == 1 ]]; then
echo >&2 "Use one of -o or -l. Aborting."
exit 1
fi
if [[ $MODE_CHANGED == 1 ]]; then
MODE_HW_DEFAULT=0
fi
if [[ $MODE_CHANGED == 0 && $MODE_HW_DEFAULT == 0 ]]; then
echo >&2 'Warning: neither the -m/--mode nor --mode-hw-default argument was specified. The current default is "Lineart", however -m/--mode is a SANE device-specific switch. Therefore, in a future version when --mode is not specified, `'"`basename "$0"`""'"' will defer to the device-specific default. If you wish to continue using "Lineart" as your scan mode, either verify that is the default for your scanner (scanadf --help -d <device>), or specify --mode Lineart explicitly on the command line.'
fi
if [[ $USEOUTPUT == 1 && "$OUTPUT" == "" ]]; then
echo >&2 "Output file must be specified. Aborting."
exit 1
fi
if [[ $USEOUTPUT == 1 && -f "$OUTPUT" && $APPEND != 1 ]]; then
echo >&2 "Output file $OUTPUT already exists. Delete or specify -a. Aborting."
exit 1
fi
if [[ $USEARRAY == 1 && ${#OUTPUTARR[@]} == 0 ]]; then
echo >&2 "At least one file must be specified with -l. Aborting."
exit 1
fi
if [[ $USEARRAY == 1 && $APPEND != 1 ]]; then
for o in "${OUTPUTARR[@]}"; do
if [[ -f "$o" ]]; then
echo >&2 "Output file $o already exists. Delete or specify -a. Aborting."
exit 1
fi
done
fi
if [[ $USEARRAY == 1 ]]; then
OUTPUT=("${OUTPUTARR[@]}")
fi
# source defaults to the empty string "" which is the default source for the driver
# but duplex needs to be explicit
if [[ $DUPLEX == 1 ]]; then
SOURCE="--source \"$SOURCE_DUPLEX\""
elif [[ "$SOURCE" != "" ]]; then
SOURCE="--source \"$SOURCE\""
fi
if [[ "$MAXPAGE" != "" ]]; then
MAXPAGE="-e $MAXPAGE"
fi
PS2PDF_OPTS=
if [[ $CROP != 1 && $SIZE == "" && $DEFAULTSIZE == 1 ]]; then
# Default to Letter size, but only if crop is not specified and this feature is not disabled
SIZE=Letter
fi
case "$SIZE" in
Letter) PGHEIGHT=279.4; PGWIDTH=215.9 ;;
Legal) PGHEIGHT=355.6; PGWIDTH=215.9 ;;
A4) PGHEIGHT=297; PGWIDTH=210 ;;
esac
if [[ $DESKEW == 1 ]]; then
if [[ $CROP != 1 ]]; then
echo >&2 'Warning: `--deskew` specified, but `--crop` not specified. It is recommended to scan at max height/width and then crop to give deskew the best chance of working correctly.'
fi
DESKEW="--swdeskew=yes"
fi
if [[ $CROP != 1 && "$PGHEIGHT" != "" ]]; then
PGHEIGHTIN=$(units --compact -1 "$PGHEIGHT mm" 'in')
if [[ $PGCENTERING == 1 ]]; then
PGHEIGHT="--page-height $PGHEIGHT -y $PGHEIGHT"
else
PGHEIGHT="-y $PGHEIGHT"
fi
PS2PDF_OPTS="-dEPSCrop"
fi
if [[ $CROP != 1 && "$PGWIDTH" != "" ]]; then
PGWIDTHIN=$(units --compact -1 "$PGWIDTH mm" 'in')
if [[ $PGCENTERING == 1 ]]; then
PGWIDTH="--page-width $PGWIDTH -x $PGWIDTH"
else
PGWIDTH="-x $PGWIDTH"
fi
PS2PDF_OPTS="-dEPSCrop"
fi
if [[ $CROP == 1 ]]; then
CROP="--swcrop=yes --ald=yes"
# In duplex mode, the driver's buffer for the back side image will be larger than necessary, oh well
# http://sane.10972.n7.nabble.com/Fujitsu-backend-and-iX500-scanning-page-longer-than-14-Inches-td19303.html
PGHEIGHT="-y 9999"
PGWIDTH="-x 9999"
PS2PDF_OPTS="-dEPSCrop"
fi
if [[ $SKIP_EMPTY_PAGES == 1 && ! -x "$(command -v bc)" ]]; then
echo >&2 'Warning: `--skip-empty-pages` specified, but `bc` not available. Disabling empty page detection.'
SKIP_EMPTY_PAGES=0
fi
if [[ "$DEVICE" != "" ]]; then
DEVICE="-d \"$DEVICE\""
fi
export VERBOSE
export UNPAPER
export SEARCHABLE
export LANGUAGE
export RESOLUTION
export PGWIDTHIN
export PGHEIGHTIN
export PS2PDF_OPTS
export SKIP_EMPTY_PAGES
export WHITE_THRESHOLD
export BRIGHTNESS_CONTRAST
if [[ $VERBOSE == 1 ]]; then
LOCKFILE=$(mktemp)
trap "cleanup; rm -rf $LOCKFILE" EXIT
export LOCKFILE
fi;
echo >&2 "Scanning..."
#eval strace -f -o /tmp/scan-trace.txt scanadf $DEVICE $MAXPAGE $PGHEIGHT $PGWIDTH -S $SCRIPT --script-wait --resolution $RESOLUTION --mode $MODE $DESKEW $CROP $SOURCE -o scan-%04d
if [[ $MODE_HW_DEFAULT == 1 ]]; then
MODE=
else
MODE="--mode '$MODE'"
fi
[ -e "$SCANPRE" ] && . "$SCANPRE"
eval scanadf $DEVICE $MAXPAGE $PGHEIGHT $PGWIDTH -S $SCRIPT --script-wait $DESKEW $CROP $DRIVER_OPTION $SOURCE --resolution $RESOLUTION $MODE -o $TMP_DIR/scan-%04d
# Simulate empty page scanner outputs for debugging
#convert xc:none -page Letter $TMP_DIR/scan-0001.pdf
shopt -s extglob nullglob
pdffiles=($TMP_DIR/scan-[0-9]*.pdf)
numscans=${#pdffiles[@]}
if (( numscans > 0 )); then
echo "Processing $numscans pages"
if (( TRUNCPAGE > 0 )); then
truncpage=$TRUNCPAGE
if (( numscans < TRUNCPAGE )); then
truncpage=$numscans
fi
for x in ${pdffiles[@]:$numscans-$truncpage:$truncpage}; do rm "$x"; done;
pdffiles=(${pdffiles[@]:0:$numscans-$truncpage})
echo "Truncated $truncpage pages"
let "numscans = numscans - truncpage"
fi
if (( numscans <= 0 )); then
echo "Found no scans."
exit 0
fi
if (( numscans > 1 && USEARRAY == 1 )); then
output_count=${#OUTPUT[@]}
echo "Naming $numscans pdfs based on output list of $output_count names..."
index=0
while (( index < output_count && numscans > index )); do
let "scanno = index + 1"
if [[ -f "${OUTPUT[$index]}" ]]; then
mv "${OUTPUT[$index]}" "${OUTPUT[$index]}.orig"
if [[ $APPEND == 1 ]]; then
pdffiles=()
if [[ -f "${OUTPUT[$index]}.orig" ]]; then
pdffiles+=("${OUTPUT[$index]}.orig")
fi
pdffiles+=($TMP_DIR/scan-*(0)$scanno.pdf)
pdfunite "${pdffiles[@]}" "${OUTPUT[$index]}" && rm $TMP_DIR/scan-*(0)$scanno.pdf
else
mv $TMP_DIR/scan-*(0)$scanno.pdf "${OUTPUT[$index]}"
fi
else
mv $TMP_DIR/scan-*(0)$scanno.pdf "${OUTPUT[$index]}"
fi
let "index = index + 1"
done
elif (( numscans > 1 || APPEND == 1 )); then
echo "Concatenating pdfs..."
if [[ -f "$OUTPUT" ]]; then
mv "$OUTPUT" "${OUTPUT}.orig"
fi
pdffiles=()
if [[ -f "${OUTPUT}.orig" ]]; then
pdffiles+=("${OUTPUT}.orig")
fi
pdffiles+=($TMP_DIR/scan-[0-9]*.pdf)
pdfunite "${pdffiles[@]}" "$OUTPUT" && rm $TMP_DIR/scan-[0-9]*.pdf
else
if [[ $USEARRAY == 1 ]]; then
mv $TMP_DIR/scan-0*.pdf "${OUTPUT[0]}"
else
mv $TMP_DIR/scan-0*.pdf "$OUTPUT"
fi
fi
echo ""
echo "Done."
if [[ $OPENSCAN == 1 && -x "$(command -v xdg-open)" ]]; then
for x in "${OUTPUT[@]}"; do xdg-open "$x"; done;
fi
else
echo "Found no scans."
fi