Paul McKenzie

Results 93 comments of Paul McKenzie

I was able to get a little further using the following ```cpp #include #include #include namespace gil = boost::gil; int main() { std::ifstream infile("test1bpp.bmp", std::ios::binary); gil::rgba8_image_t img; gil::read_image(infile, img, gil::bmp_tag());...

More than likely it is a bug in your program (maybe you are using a non-null-terminated string when a null-terminated string is expected?). Please post the program.

[DTWAIN_AcquireFile](https://www.dynarithmic.com/onlinehelp/dtwain/newversion/DTWAIN_AcquireFile.html) requires a null-terminated string as the file name. Given the issue you are having, I am getting the suspicion that the name you are giving `DTWAIN_AcquireFile` is not null-terminated....

Closing, as this issue is in all likelihood due to passing a string that is not null-terminated string to DTWAIN_AcquireFile.

How do you connect to the scanner over the network? The scanner should have a TWAIN driver that you installed locally that can detect the scanner over the network, thus...

1) What model is the scanner? 2) The UI is controlled by the scanner driver. A request to not show the UI is a request -- there is no guarantee...

If you used the same program to turn off the UI in the Samsung printer, but that same program does not work for the CZUR ET18, then this indicates that...

The Fujitsu scanner drivers can at times do strange things, such as lock the entire TWAIN session for any scanner to respond (Fujitsu or non-Fujitsu). I have found that nothing...

Have you tried acquiring to a file, i.e. DTWAIN_AcquireFile? If that doesn't cause an issue, it could have something to do with the memory having to be allocated for the...