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
|
.\" $Id: set_scanner.1,v 1.1 1997/03/11 03:23:16 kstailey Exp $
.\"
.\" Copyright (c) 1996 Kenneth Stailey
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed for the NetBSD Project
.\" by Kenneth Stailey
.\" 4. The name of the author may not be used to endorse or promote products
.\" derived from this software without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
.\" BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
.\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
.\" AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
.\" OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.TH set_scanner 1 "25 October 1994"
.SH NAME
set_scanner - change the parameter settings for the scanner
.SH SYNOPSIS
.B set_scanner
.RI [ -w width ]
.RI [ -h height]
.RI [ -x x_origin ]
.RI [ -y y_origin ]
.RI [ -r resolution ]
.RI [ -l logical_name ]
.RI [ -i image_mode ]
.RI [ \-b brightness ]
.RI [ -c contrast ]
.RI [ -d ]
.SH DESCRIPTION
Changes one or more of the scanner's attributes. Changes are stored
in the ODM if you use the -d flag (for setting default values), but
leaving off the -d is faster.
.SH FLAGS
.B \-w
.I width.
Sets the width of the scanner active area to the given value in inches.
Decimal fractions of inches are acceptable for this and all other size
values.
.PP
.B \-h
.I height.
Sets the height of the scanner active area to the given value in inches.
.PP
.B \-x
.I x_origin.
Sets the upper left hand corner x coordinate of the scanner active area to
the given value in inches.
.PP
.B \-y
.I y_origin.
Sets the upper left hand corner y coordinate of the scanner active area to
the given value in inches.
.PP
.B \-r
.I resolution.
Sets the resolution to the given value in dots-per-inch. To see
acceptable values for
.I resolution
use "lsattr -R -l scan0 -a x_resolution"
.PP
.B \-l
.I logical name of scanner.
Specifies what scanner to use. The default is "scan0"
.PP
.B \-i
.I image mode.
Change the type of image data sent by the scanner. The flag is followed
by a one-letter code representing the image mode. Use "m" for binary
monochrome (solid black or white), "d" for dithered monochrome (halftoned),
"g" for grayscale, "c" for color, "R" for red only, "G" for green only or
"B" for blue only. Not all scanners support all formats.
.PP
.B \-b
.I brightness
Set the hardware brightness control inside the scanner, if any. This flag
is followed by a decimal integer that specifies how bright the image is to be.
To see acceptable values for
.I brightness
use the command "lsattr -R -l scan0 -a brightness".
.PP
.B \-c
.I contrast
Set the hardware contrast control inside the scanner, if any. This flag
is followed by a decimal integer that specifies the level of contrast used.
To see acceptable values for
.I contrast
use the command "lsattr -R -l scan0 -a contrast".
.I
.PP
.B \-d
Set the defaults. Scanner settings will be remembered even after the system
reboots.
.B set_scanner
will use "chdev" to alter the ODM instead of the ioctl(2) system call on the
device special file.
.SH EXAMPLES
.PP
the command:
.PP
set_scanner -w 5.5 -h 3.75 -r 300
.PP
will set the active area of the scanner to 5 1/2" x 3 3/4" at 300 dots-per-inch
resolution
.SH "SEE ALSO"
get_scanner(1)
.SH BUGS
Probably should support Metric measurement units too.
.SH AUTHOR
.nf
Kenneth Stailey (kstailey@gnu.ai.mit.edu, kstailey@leidecker.gsfc.nasa.gov)
.fi
|