VintaSoft Twain .NET SDK Discussions
Questions, comments and suggestions concerning VintaSoft Twain .NET SDK.
Board index < VintaSoft Twain < VintaSoft Twain .NET SDK Discussions
case AcquireModalState.ImageAcquired:
imageIndex++;
string _url = @"C:\document_" + imageIndex + ".bmp";
TwainBmpEncoderSettings encoderSettings = new TwainBmpEncoderSettings();
SelectedDevice.AcquiredImage.SaveToFile(_url, encoderSettings );
// dispose acquired image
SelectedDevice.AcquiredImage.Dispose();
// output current state
response += string.Format("Document is saved to: {0}", _url);
break;
...
Problem: When I start the acquiring process the scanner (Brother MFC L27000DW) is scanning all images but there is only one file saved with the first image in it!