Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
388 views
in Technique[技术] by (71.8m points)

python - How to programmatically take a picture from epson scanner?

How to programmatically get a picture from epson scanner (Epson Perfection V19) on Windows. Any examples please. Python is better or ... any development environment (Delphi, C#, C++).

Thanks!

question from:https://stackoverflow.com/questions/65842065/how-to-programmatically-take-a-picture-from-epson-scanner

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Done! Through Twain interface

Python 3.8.2

Install the twain module from https://www.lfd.uci.edu/~gohlke/pythonlibs/#twainmodule

Python code:

import twain

sm = twain.SourceManager(0)
ss = sm.OpenSource("Epson Perfection V19")

ss.RequestAcquire(0,0)
rv = ss.XferImageNatively()
if rv:
    (handle, count) = rv
    twain.DIBToBMFile(handle, 'scan_01.bmp')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...