web-dev-qa-db-fra.com

Pilote CanoScan LiDE 110 pour Ubuntu? Comment scanner en ligne de commande?

CanoScan LiDE 11 est connecté à mon Ubuntu 11.04. Je dois analyser à distance à l'aide de la ligne de commande.

Comment utiliser le scanner à partir de la ligne de commande?

Essayé/échoué/réussi:

$ 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

suivi:

qu'est ce que:

PPM = color
PBM = black and white
PGM = gray

comment puis-je l'utiliser, montrez-moi quelques exemples:

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
3
YumYumYum

Exécutez le programme scanimage.

Si vous installez le package 'sane', vous pouvez également utiliser l'outil scanadf.

Pour trouver le scanner, utilisez lsusb et sane-find-scanner.

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

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

1
Anonymous
  • PPM = format pixmap portable
  • PBM = format bitmap portable
  • PGM = format graymap ortable

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

0
Anonymous