Visual Basic (Declaration) | |
---|---|
Public Function FindFastConfiguration( _ ByVal workingFolder As String, _ ByVal flags As TwainFastUserInterfaceFlags, _ ByVal bitsPerPixel As Integer, _ ByVal bufferIteration As Integer, _ ByVal userConfigurations As RasterCollection(Of TwainFastConfiguration) _ ) As TwainFindFastConfigurationResult |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public TwainFindFastConfigurationResult FindFastConfiguration( string workingFolder, TwainFastUserInterfaceFlags flags, int bitsPerPixel, int bufferIteration, RasterCollection<TwainFastConfiguration> userConfigurations ) |
Managed Extensions for C++ | |
---|---|
public: TwainFindFastConfigurationResult FindFastConfiguration( string* workingFolder, TwainFastUserInterfaceFlags flags, int bitsPerPixel, int bufferIteration, RasterCollection<TwainFastConfiguration> userConfigurations ) |
C++/CLI | |
---|---|
public: TwainFindFastConfigurationResult FindFastConfiguration( String^ workingFolder, TwainFastUserInterfaceFlags flags, int bitsPerPixel, int bufferIteration, RasterCollection<TwainFastConfiguration> userConfigurations ) |
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 UserInterfaceConstants enumeration 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 fastes configuration for the test TWAIN source.Visual Basic | Copy Code |
---|---|
Public Sub twain_FastConfiguration(ByVal sender As Object, ByVal e As TwainFastConfigurationEventArgs) |
C# | Copy Code |
---|---|
public void twain_FastConfiguration(object sender, TwainFastConfigurationEventArgs e) |
This method will test scan configurations for the scanner selected using the SelectSource method.
Using the fastest scan configuration lets you scan images as quickly as possible.
To test user-defined or custom configurations, pass an arry of TwainFastConfiguration objects to the
userConfigurations parameter of the Generic FindFastConfiguration method.
To test the default configurations available for the TWAIN driver, pass null for the userConfigurations parameter. The list of default scan configurations to test can be shortened by using the FindConfiguration method to get a list of default scan configurations based on transfer mode, bits per pixel and 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 Generic FindFastConfiguration method. Call the FindFastConfiguration method to determine the best and fastest scan configuration.
If TwainFastUserInterfaceFlags.CheckDefaultBitsPerPixel is set in flags then the method will test all supported bits per pixel for the selected scanner. If this flag is not set, then the method will test the bits per pixel specified in the bitsPerPixel parameter.
If TwainFastUserInterfaceFlags.UseThread is set in flags, then the image acquisition process will run in thread mode. In some scanners, acquiring images in thread will improve the speed at which the image(s) is(are) acquired. In other scanners, high-speed scanners, for example, acquiring the image(s) in thread mode will provide little to no improvement in the speed at which the image(s) is(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 buffer iteration 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. The Stop property must be set to false to continue the scan configuration process.
For more information, refer to Fast TWAIN (Scan Configurations).
To test the default configurations available for the TWAIN driver, pass null for the userConfigurations parameter. The list of default scan configurations to test can be shortened by using the FindConfiguration method to get a list of default scan configurations based on transfer mode, bits per pixel and 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 Generic FindFastConfiguration method. Call the FindFastConfiguration method to determine the best and fastest scan configuration.
If TwainFastUserInterfaceFlags.CheckDefaultBitsPerPixel is set in flags then the method will test all supported bits per pixel for the selected scanner. If this flag is not set, then the method will test the bits per pixel specified in the bitsPerPixel parameter.
If TwainFastUserInterfaceFlags.UseThread is set in flags, then the image acquisition process will run in thread mode. In some scanners, acquiring images in thread will improve the speed at which the image(s) is(are) acquired. In other scanners, high-speed scanners, for example, acquiring the image(s) in thread mode will provide little to no improvement in the speed at which the image(s) is(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 buffer iteration 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. The Stop property must be set to false to continue the scan configuration process.
For more information, refer to Fast TWAIN (Scan Configurations).
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family