1sane-microtek(5) SANE Scanner Access Now Easy sane-microtek(5)
2
3
4
6 sane-microtek - SANE backend for Microtek scanners
7
9 The sane-microtek library implements a SANE (Scanner Access Now Easy)
10 backend that provides access to the "second generation" Microtek scan‐
11 ners. At present, the following hardware is known to work with this
12 backend:
13
14 Microtek ScanMaker E2, E3, E6
15 Microtek ScanMaker II, IIG, IIHR, IISP, III
16 Microtek ScanMaker 35t, 35t+, 45t
17 Microtek ScanMaker 600GS, 600ZS (see bug notes)
18 Agfa StudioScan
19 Agfa StudioScan II, StudioScan IIsi
20 Agfa Arcus II (but not the "Arcus")
21 Agfa DuoScan (preliminary)
22 Vobis "Highscreen Realscan"
23 Microtek Color PageWiz (preliminary)
24
25 Transparent Media Adapter
26 Document AutoFeeder
27
28 The driver supports line art, halftone, 8bpp gray, and 24bpp color
29 scans at normal and "expanded" resolutions (i.e. 1200x1200 on an E6),
30 fast scans for color previews, and downloadable gamma tables.
31
32 The supported scanners are all SCSI scanners. However, some parallel
33 port models may work (under Linux), if they use a parport->scsi chip,
34 and if you can find a scsi->parport driver. This is known to be the
35 case for the Color PageWiz.
36
37 The driver does not support the newest Microtek scanners, such as the
38 V330 and V660, which use a new and very different SCSI-II command set.
39 For those, try the alternate microtek2(5) backend. Most non-SCSI scan‐
40 ners would use the new command set. Most scanners newer than the Scan‐
41 maker E6 would use the new command set.
42
43 If you own a Microtek scanner other than the ones listed above, tell us
44 what happens --- see the BUGS section at the end of this document.
45
46 Although this manual page is generally updated with each release, up-
47 to-date information on new releases and extraneous helpful hints are
48 available from the backend homepage:
49
50 http://www.mir.com/mtek/
51
52
54 This backend expects device names of the form:
55
56 special
57
58 Where special is the UNIX path-name for the special device that corre‐
59 sponds to the scanner. The special device name must be a generic SCSI
60 device or a symlink to such a device. Under Linux, such a device name
61 could be /dev/sga or /dev/sge, for example.
62
64 The contents of the microtek.conf file is a list of device names that
65 correspond to Microtek scanners. Empty lines and lines starting with a
66 hash mark (#) are ignored. A sample configuration file is shown below:
67
68 /dev/scanner
69 # this is a comment
70 /dev/sge
71
72 The configuration file may also contain the special tokens norealcal or
73 noprecal. norealcal will disable the use of magic, undocumented scan‐
74 ner calibration commands which are known to work on the E6, but may not
75 work with other models. noprecal will disable logic which tries to
76 avoid scanner precalibration. This logic would only have been acti‐
77 vated if the magic calibration code was turned off.
78
79
81 /etc/sane.d/microtek.conf
82 The backend configuration file (see also description of
83 SANE_CONFIG_DIR below).
84
85 /usr/lib64/sane/libsane-microtek.a
86 The static library implementing this backend.
87
88 /usr/lib64/sane/libsane-microtek.so
89 The shared library implementing this backend (present on systems
90 that support dynamic loading).
91
92
94 SANE_CONFIG_DIR
95 This environment variable specifies the list of directories that
96 may contain the configuration file. On *NIX systems, the direc‐
97 tories are separated by a colon (`:'), under OS/2, they are sep‐
98 arated by a semi-colon (`;'). If this variable is not set, the
99 configuration file is searched in two default directories:
100 first, the current working directory (".") and then in
101 /etc/sane.d. If the value of the environment variable ends with
102 the directory separator character, then the default directories
103 are searched after the explicitly specified directories. For
104 example, setting SANE_CONFIG_DIR to "/tmp/config:" would result
105 in directories tmp/config, ., and /etc/sane.d being searched (in
106 this order).
107
108 SANE_DEBUG_MICROTEK
109 If the library was compiled with debugging support enabled, this
110 environment variable controls the debug level for this backend.
111 A value of 128 requests maximally copious debug output; smaller
112 levels reduce verbosity.
113
114
116 sane(7), sane-scsi(5), sane-microtek2(5)
117
118
120 Matt Marjanovic
121
122
124 Known bugs/limitations are:
125
126 Brightness and contrast broken.
127 The 600GS is grayscale only, and will lock up if you select
128 color. (Unfortunately, the 600GS and 600ZS are indistinguish‐
129 able by software.)
130
131 i.e. don't complain about these --- but if brightness and/or contrast
132 do work for you, please tell me.
133
134 If your scanner locks up, try setting the norealcal or noprecal option
135 in the configuration file (first one, then both), and see if it helps.
136 (If it does, report it.)
137
138 Send lengthy bug reports and new scanner information to
139 mtek-bugs@mir.com. All bug reports and new scanner inquiries should
140 include an error log file. You can generate copious stderr output by
141 setting the SANE_DEBUG_MICROTEK environment variable described above.
142 For example:
143
144 setenv SANE_DEBUG_MICROTEK 128
145
146 More general comments, suggestions, and inquiries about frontends or
147 SANE should go to sane-devel@alioth-lists.debian.net, the SANE Develop‐
148 ers mailing list. Have a look at http://www.sane-project.org/mail‐
149 ing-lists.html concerning subscription to sane-devel.
150
151
152
153 13 Jul 2008 sane-microtek(5)