Pyinsane是SaneAPI(使用ctypes)和抽象层的纯Python实现。支持Python2.7和3.x,要求Pillow和libsane支持。
实现简单扫描的代码:
device.options['resolution'].value=300#Beware:Somescannerhave"Lineart"or"Gray"asdefaultmodedevice.options['mode'].value='Color'scan_instance=device.scan(multiple=False)try:whileTrue:scan_instance.read()exceptEOFError:passimage=scan_instance.get_img()
评论