Linux tip, Fedora tip / howto: Using the Epson Perfection 4490 scanner |
Try my online puzzle page with Calcudoku, Killer Sudoku and online Sudoku.
Using the Epson Perfection 4490 scanner (related tip: fixing the Epson 4490 ratchet noise) Update: after about 8 years of service, my 4490 did one more scan of some 8mm film, and then decided to call it quits :-( Update: getting the scanner to work under CentOS 6.4 x86_64Recently I got the scanner to work again under CentOS 6.4. The steps I took are listed below (maybe not all are required, but at least the scanner works now :-) )
(Send me your feedback using the form at the bottom of the page)
Older info, some may still be usefulI'm busy trying to get old 8mm film to scan properly using this scanner. This page is the progress report. My SANE related installed RPMs (this is on Fedora Core 4):xsane-0.95-3 sane-backends-1.0.17-0.fc4.2 xsane-gimp-0.95-3 sane-frontends-1.0.13-2 Don't bother getting the latest sane-backends source and compiling and installing that: you'll run into problems recognizing the scanner. Instead, get the iscan software from the Avasys download page. I downloaded and installed the following RPMs (if you're also using Fedora Core 4, for "Distribution Version" just pick 5): Now, the scanimage tool (which is part of the sane-backends package) will show your scanner: scanimage -L gives, in my case: Run iscan to scan using a GUI, use scanimage to scan from the command-line, for example: This will scan a positive film using the transparency unit (don't forget to remove the cover below the lid), in color, at 300 dpi, storing 8 bits per color channel, into a TIFF file film.tiff Run scanimage --help -d epkowa to see all the possible options. Set the environment variable SANE_DEBUG_EPKOWA to 5 to see lots of debugging output from scanimage (a higher value produces more output, the minimum is 1).
Update: scanning at 4800 dpiI finally found a way to scan at 4800 dpi under Linux. Because the scanner reports 2400 dpi as the highest resolution, all the front-end software does not want to go higher. However, there are some special cases in the driver source for scanners that report too high dpi values: we'll do something similar, but the other way around. For now I've hacked it such that if you specify 600 dpi as the scan resolution, it will use 4800 dpi instead (I know, bad hack :-)).To get this to work (all steps as root, verified under Fedora 4 and 8):
Now you should be able to run iscan, please let me know if you get an error message. To scan at 4800 dpi, select 600 dpi instead. Similarly, to use scanimage to scan at 4800 dpi (a small 1 inch by 1cm block at the top of the page):
scanning at 4800 dpi is limited to 57 mm widthThe buffer for a scan line is limited to 32768 bytes, which at 4800 dpi (and 8 bits per pixel) effectively limits a single line to 57 mm. The maximum scannable width for the film scanner in the lid is about 68.6 mm. I fixed this by hard-coding a larger buffer size in epkowa.c (did not encounter any negative side effects yet...). In the function sane_start, around line 6290, after the line that says s->block = SANE_TRUE, add this line:
auto exposure issueSome kind of "auto exposure" thing is going on: with the 8mm film on the scanner "from left to right" I get good scans, when putting it "from top to bottom" (to scan more frames in one go), the colors are all messed up. Any pointers are appreciated. To get around this, I'm now doing horizontal scans near the top of the scanning area.Another note: when scanning near the top of the scanning area without the film holder, scans often fail when scanning very near the top (e.g. using -t 5, for example). Moving only a little bit further down (-t 10 etc.) fixes this problem...
scanimage does not use the -t and -l parametersThis took some debugging to figure out: it turns out that this depends on the order of the paramaters (!). Just make sure you specify the source before the -t and -l parameters, for example:scanimage --mode Color --depth 8 --resolution 300 --source "Transparency Unit" -t 5 -l 25 -x 20 -y 10 --format=tiff --film-type Positive --verbose > test.tiff (if you specify the source after, it resets these parameters to zero...)
scanimage produces Segmentation fault, except when run as rootThe solution to this turned out to be simple: just specify the driver:scanimage -d epkowa ... Now you should be able to run scanimage from a regular user account. If you get errors about the lp or ppdev modules, then temporarily log in as root, and load those modules:
|
Send me your comments!
Something didn't work as expected? You'd like to add some useful info to this tip? Use the form below to send me your comments. (Don't forget to fill out the super-lame CAPTCHA below..)