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!
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!
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')