CanoScan LiDE 110 驱动程序适用于 Ubuntu?如何通过命令行进行扫描?

CanoScan LiDE 110 驱动程序适用于 Ubuntu?如何通过命令行进行扫描?

佳能扫描仪 LiDE 110已连接到我的 Ubuntu 11.04。我需要使用命令行进行远程扫描。

如何从命令行使用扫描仪?

尝试/失败/成功:

$ apt-get install sane sane-utils
$ scanimage
scanimage: no SANE devices found
$ scanadf
scanadf: no SANE devices found

$ sane-find-scanner
failed... over and over to find the correct one.. (very strange)

$ dmesg 
now found something...(after waiting a lot)


$ scanimage -L
device `genesys:libusb:001:018' is a Canon LiDE 110 flatbed scanner

$ scanimage -x 100 -y 100 --format=tiff > /tmp/scanBabyscan.tiff
$ file /tmp/test.tiff
 /tmp/test.tiff: TIFF image data, big-endian
# ll /tmp/test.tiff
-rw-r--r-- 1 root root 1393802 2011-10-25 20:09 /tmp/test.tiff

跟进:

什么是什么:

PPM = color
PBM = black and white
PGM = gray

我如何使用它请给我展示一些示例:

scanimage -d umax:/dev/sgb --resolution 72 -x 200 -y 100 > scan.ppm
          |______________| |_____________|
              device       DPI 72,120,300,600

scanimage --mode=color > /tmp/test.tiff
          |__________|
           color

答案1

运行该scanimage程序。

如果您安装了“sane”包,您也可以使用该scanadf工具。

要查找扫描仪,请使用lsusbsane-find-scanner

http://www.sane-project.org/man/scanimage.1.html

http://www.martoneconsulting.com/sane-scanadf.html

答案2

  • PPM = 便携式像素图格式
  • PBM = 可移植位图格式
  • PGM = 可排序灰度图格式

http://en.wikipedia.org/wiki/Netpbm_format

相关内容