jfreesane icon indicating copy to clipboard operation
jfreesane copied to clipboard

Java API to talk to the SANE scanning daemon

Results 8 jfreesane issues
Sort by recently updated
recently updated
newest added

Hello, from ``` SaneSession.java private void initSane() throws IOException { // RPC code outputStream.write(SaneRpcCode.SANE_NET_INIT); // version number outputStream.write(SaneWord.forSaneVersion(1, 0, 3)); // username outputStream.write(System.getProperty("user.name")); outputStream.flush(); **inputStream.readWord();** inputStream.readWord(); } ``` I am...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

https://github.com/sjamesr/jfreesane/blob/d6531b419b8249d5e3258017758ca86f01875715/src/main/java/au/com/southsky/jfreesane/SaneInputStream.java#L83 I was reading the code and had the same question and found the source for this. This is because, that after the status and length of the array gets...

[File system watching](https://blog.gradle.org/introducing-file-system-watching). Since Gradle 6.5, File system watching was introduced which can help to avoid unnecessary I/O. This feature is the default since 7.0. For an older version, we...

Hello, I don't understand why sometimes I am asked to authenticate and sometimes I am not. Can I disable this functionality? If I choose to enable it, I am not...

Previously, the code looking for $MD5$ preambles would always return false, as the '$' characters were quoted as if they were being passed to a regexp library. Splitter.on() did not...

Since final classes can't be mocked with regular mockito it's more useful to not be final.

when scanning with Canon DRG1130 Model in adf model, after it finishes all pages sometime it hold me on wait and return STATUS_IO_ERROR and sometimes it didn't wait and return...