1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/_posts/2007-07-04-command-line-scanning.markdown

981 B

author comments date layout slug title wordpress_id categories
einar true 2007-07-04 21:26:31+00:00 page command-line-scanning Command line scanning 269
Linux

Recently, I had to do a few scans with my old but trusty BenQ 640BU. Given that I could not use any GUI due to a long-standing Feisty bug, I tried to settle for command line scanning with the scanimage command from SANE. The main problem is that scanimage only saves images in PNM or TIFF formats. I wanted to use JPEG or PNG, but apparently that looked impossible to do.

Instead, I found that scanimage sends its results to standard output, and also that ImageMagick can accept standard input as source file, it was easy to convert on the fly:

[code lang='c'] scanimage --format pnm | convert -format png - test.png [/code]

"-" tells convert to use the standard input. Another great example of the power of the command line.