佳能扫描仪 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
工具。
要查找扫描仪,请使用lsusb
和sane-find-scanner
。
答案2
- PPM = 便携式像素图格式
- PBM = 可移植位图格式
- PGM = 可排序灰度图格式