Java library for Windows x86 и x64.
Compile and install Clone project and install in local repository.
git clone https://github.com/DenisLAD/twain4java.git
cd twain4java
mvn install
Dependency in your project
<dependency>
<groupId>free.lucifer</groupId>
<artifactId>twain4java</artifactId>
<version>0.3</version>
</dependency>
Code
Collection<Source> sources = SourceManager.instance().getSources();
Source source = sources.get(0);
source.setDpi(200);
source.setColor(Source.ColorMode.COLOR);
List<File> files = source.scan();