FindFastConfiguration Method

Summary

(Document/Medical only) Determines the best scanner configuration.

Syntax
C#
VB
C++
Public Function FindFastConfiguration( _ 
   ByVal workingFolder As String, _ 
   ByVal flags As TwainFastUserInterfaceFlags, _ 
   ByVal bitsPerPixel As Integer, _ 
   ByVal bufferIteration As Integer, _ 
   ByVal userConfigurations As IList(Of TwainFastConfiguration) _ 
) As TwainFindFastConfigurationResult 

Parameters

workingFolder
The path to the working folder in which to save the tested images.

flags
Indicates whether to display the manufacturer's user interface. For a list of possible values, refer to the Leadtools.Twain.TwainFastUserInterfaceFlags Flags that control the display of the user interface and the actions of the method.

bitsPerPixel
The resulting file's pixel depth.

Note that not all bits per pixel are available to all file formats. Use 0 for bitsPerPixel to store the file using the closest BitsPerPixel value supported by that format.

bufferIteration
The number of memory configurations that will be tested. The maximum value for this parameter is 10.

userConfigurations
The configurations to be tested.

Return Value

A TwainFindFastConfigurationResult which represents the best and fastest configuration for the test TWAIN source.

Remarks

To scan images as quickly as possible, it is necessary to use the fastest scan configuration. Use FindFastConfiguration to test scan configurations for the scanner selected using the SelectSource method.

  • To test user-defined or custom configurations, pass an array of TwainFastConfiguration objects to the userConfigurations parameter of the FindFastConfiguration method.

  • To test the default configurations available for the TWAIN driver, pass null for the userConfigurations parameter.

    • Shorten the list of default scan configurations to test by using the FindConfiguration method to get a list of default scan configurations based on transfer mode, bits per pixel, and the number of buffers. A list of scan configurations will be returned. Next, pass the returned array of TwainFastConfiguration objects as the userConfigurations parameter of the FindFastConfiguration method.
  • To test all supported bits per pixel for the selected scanner, set TwainFastUserInterfaceFlags.CheckDefaultBitsPerPixel in flags. If this flag is not set, the method will test the bits per pixel specified in the bitsPerPixel parameter.

  • If TwainFastUserInterfaceFlags.UseThread is set in flags, the image acquisition process will run in thread mode. In some scanners, acquiring images in thread mode will improve the speed at which the image(s) is(are) acquired. In other scanners (for example, high-speed scanners), acquiring the image(s) in thread mode will provide little to no improvement in the speed at which one or more images are acquired.

  • The bitsPerPixel parameter and the TwainFastUserInterfaceFlags.CheckDefaultBitsPerPixel flag will be used only if the transfer mode for the scan configuration being tested is TwainTransferMechanism.Memory or TwainTransferMechanism.Native.

  • The bufferIteration value determines the buffer sizes to be tested. The purpose for testing the memory transfer mode with different buffer sizes is to determine the buffer size that will provide the fastest scan configuration. The buffer iteration specifies the number of buffer sizes that will be tested. The buffer size is the size of the transferred data from the TWAIN source.

  • To stop the scan configuration testing process, set the Stop property to true within the FastConfiguration event. To continue the scan configuration process, set the Stop property to false.

For more information, refer to Fast TWAIN (Scan Configurations). This function shows some helper message boxes while it is running for guiding the user through the running tests. If you wish to suppress these messages then pass TwainFastUserInterfaceFlags.SuppressMessageBoxes flag and these messages will stop showing up.

Example
C#
VB
using Leadtools; 
using Leadtools.Twain; 
 
public void twain_FastConfiguration(object sender, TwainFastConfigurationEventArgs e) 
{ 
   // ... set your code here 
   e.Stop = false; 
} 
 
public void FindFastConfigurationExample(IntPtr parent) 
{ 
   TwainSession session = new TwainSession(); 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None); 
 
   session.EnableFastConfigurationEvent = true; 
   session.FastConfiguration += new EventHandler<TwainFastConfigurationEventArgs>(twain_FastConfiguration); 
 
   List<TwainFastConfiguration> twFastConfig = null; 
   TwainFastConfiguration tempFastConfig = new TwainFastConfiguration(); 
   tempFastConfig = TwainFastConfiguration.Default; 
 
   tempFastConfig.TransferMechanism = TwainTransferMode.File; 
   tempFastConfig.ImageFormat = Leadtools.RasterImageFormat.Bmp; 
   tempFastConfig.BitsPerPixel = 1; 
   twFastConfig.Add(tempFastConfig); 
 
   tempFastConfig.TransferMechanism = TwainTransferMode.File; 
   tempFastConfig.ImageFormat = Leadtools.RasterImageFormat.Tif; 
   tempFastConfig.BitsPerPixel = 1; 
   twFastConfig.Add(tempFastConfig); 
 
   TwainFindFastConfigurationResult fastConfigRes; 
 
   try 
   { 
      fastConfigRes = session.FindFastConfiguration(Path.Combine(LEAD_VARS.ImagesDir, ""), TwainFastUserInterfaceFlags.Show, 0, 1, twFastConfig); 
 
      string msg; 
      MessageBox.Show("FindFastConfig method was successful"); 
 
      msg = String.Format("Result Scan Configs count = {0}", fastConfigRes.Tested.Count); 
      MessageBox.Show(msg); 
 
      msg = String.Format("Transfer Mode = {0}\nFile Format = {1}\nBuffer Size = {2}\nRequired Time = {3}\n", 
         fastConfigRes.Tested[0].TransferMechanism, 
         fastConfigRes.Tested[0].ImageFormat, 
         fastConfigRes.Tested[0].BufferSize, 
         fastConfigRes.Tested[0].RequiredTime); 
      MessageBox.Show(msg, "Tested Scan Configurations..."); 
 
      msg = String.Format("Transfer Mode = {0}\nFile Format = {1}\nBuffer Size = {2}\nRequired Time = {3}\n", 
         fastConfigRes.Best.TransferMechanism, 
         fastConfigRes.Best.ImageFormat, 
         fastConfigRes.Best.BufferSize, 
         fastConfigRes.Best.RequiredTime); 
      MessageBox.Show(msg, "Best Scan Configurations..."); 
   } 
   catch (Exception ex) 
   { 
      MessageBox.Show(ex.Message); 
   } 
 
   session.Shutdown(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Imports Leadtools 
Imports Leadtools.Twain 
 
Public Sub twain_FastConfiguration(ByVal sender As Object, ByVal e As TwainFastConfigurationEventArgs) 
   ' ... set your code here 
   e.Stop = False 
End Sub 
 
 
Public Sub FindFastConfigurationExample(ByVal parent As IntPtr) 
   Dim session As TwainSession = New TwainSession() 
   session.Startup(parent, "manufacturer", "productFamily", "version", "application", TwainStartupFlags.None) 
 
   session.EnableFastConfigurationEvent = True 
   AddHandler session.FastConfiguration, AddressOf twain_FastConfiguration 
 
   Dim twFastConfig As List(Of TwainFastConfiguration) = Nothing 
   Dim tempFastConfig As TwainFastConfiguration = New TwainFastConfiguration() 
   tempFastConfig = TwainFastConfiguration.Default 
 
   tempFastConfig.TransferMechanism = TwainTransferMode.File 
   tempFastConfig.ImageFormat = Leadtools.RasterImageFormat.Bmp 
   tempFastConfig.BitsPerPixel = 1 
   twFastConfig.Add(tempFastConfig) 
 
   tempFastConfig.TransferMechanism = TwainTransferMode.File 
   tempFastConfig.ImageFormat = Leadtools.RasterImageFormat.Tif 
   tempFastConfig.BitsPerPixel = 1 
   twFastConfig.Add(tempFastConfig) 
 
   Dim fastConfigRes As TwainFindFastConfigurationResult 
 
   Try 
      fastConfigRes = session.FindFastConfiguration(Path.Combine(LEAD_VARS.ImagesDir, ""), TwainFastUserInterfaceFlags.Show, 0, 1, twFastConfig) 
 
      Dim msg As String 
      MessageBox.Show("FindFastConfig method was successful") 
 
      msg = String.Format("Result Scan Configs count = {0}", fastConfigRes.Tested.Count) 
      MessageBox.Show(msg) 
 
      msg = String.Format("Transfer Mode = {0}" & Constants.vbLf & "File Format = {1}" & Constants.vbLf & "Buffer Size = {2}" & Constants.vbLf & "Required Time = {3}" & Constants.vbLf, fastConfigRes.Tested(0).TransferMechanism, 
            fastConfigRes.Tested(0).ImageFormat, fastConfigRes.Tested(0).BufferSize, fastConfigRes.Tested(0).RequiredTime) 
      MessageBox.Show(msg, "Tested Scan Configurations...") 
 
      msg = String.Format("Transfer Mode = {0}" & Constants.vbLf & "File Format = {1}" & Constants.vbLf & "Buffer Size = {2}" & Constants.vbLf & "Required Time = {3}" & Constants.vbLf, fastConfigRes.Best.TransferMechanism, 
            fastConfigRes.Best.ImageFormat, fastConfigRes.Best.BufferSize, fastConfigRes.Best.RequiredTime) 
      MessageBox.Show(msg, "Best Scan Configurations...") 
   Catch ex As Exception 
      MessageBox.Show(ex.Message) 
   End Try 
 
   session.Shutdown() 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images" 
End Class 
Requirements

Target Platforms

Help Version 21.0.2021.6.30
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Twain Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.