LTwain::FastAcquire

#include "ltwrappr.h"

L_INT LTwain::FastAcquire (pszBaseFileName, uFlags, uTransferMode, nFormat, nBitsPerPixel, bMultiPageFile, uUserBufSize, bUsePrefferedBuffer)

L_TCHAR *pszBaseFileName;

base string

L_UINT uFlags;

flags

L_UINT uTransferMode;

transfer mode

L_INT nFormat;

output file format

L_INT nBitsPerPixel;

resulting files pixel depth

L_BOOL bMultiPageFile;

multi-page flag

L_UINT32 uUserBufSize;

user-defined buffer size

L_BOOL bUsePrefferedBuffer;

buffer size flag

Acquires image(s) from a TWAIN source and stores the image file(s) using Fast TWAIN feature. This function is available in the Document/Medical Toolkits.

Parameter Description
pszBaseFileName Character string that contains the base name of the image file(s) in which to save the acquired data.
uFlags Flag that indicates whether to display the manufacturer's user interface. You can combine values when appropriate by using a bitwise OR ( | ). The following are valid values:
  Value Meaning
  0 [0] Do not show the manufacturer's user interface.
  LTWAIN_SHOW_USER_INTERFACE [0x0001] Shows the manufacturer's user interface as modeless.
  LTWAIN_MODAL_USER_INTERFACE [0x0002] Shows the manufacturer's user interface as a modal dialog. It is valid only if the LTWAIN_SHOW_USER_INTERFACE flag is set.
  LTWAIN_KEEPOPEN [0x0020] Keep the TWAIN data source open after scanning.

 

uTransferMode Flag that indicates the transfer mode to be used when acquiring the image(s). Possible values are:
  Value Meaning
  LTWAIN_FILE_MODE [0x001] Use the File transfer mode.
  LTWAIN_BUFFER_MODE [0x002] Use the Memory transfer mode.
  LTWAIN_NATIVE_MODE [0x004] Use the Native transfer mode.
nFormat Output file format. For valid values, refer to Formats of Output Files.

 

nBitsPerPixel Resulting file's pixel depth. Note that not all bits per pixel are available to all file formats. For valid values, refer to Formats of Output Files. If nBitsPerPixel is 0, the file will be stored using the closest BitsPerPixel value supported by that format.
bMultiPageFile Flag that indicates whether to save multiple images into a single multi-page file (if the output file format supports multi-page files), or each page in a separate file. Possible values are:
  Value Meaning
  TRUE Save in one multi-page file.
  FALSE Save in a separate file.
uUserBufSize Specifies a user-defined buffer size. This value is valid only if uTransferMode is LTWAIN_BUFFER_MODE and bUsePrefferedBuffer is FALSE. This value must be a multiple of 16.
bUsePrefferedBuffer Flag that indicates whether to use the user-defined buffer size or the Twain driver preferred buffer size. Possible values are:
  Value Meaning
  TRUE Use the Twain driver preferred buffer size. The value of uUserBufSize will be ignored.
  FALSE Use the user-defined buffer size in the uUserBufSize parameter.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

Based on the scanner type, this function determines the best and fastest scanning method to use. This method is used for actual scanning (Real scanning not for testing) of the image(s). You may can call LTwain::FindFastConfig before calling this function to retrieve the best scanning configuration in pOutBestConfig parameter, and then pass the values of members in pOutBestConfig to this function.

If the file format specified in nFormat does not support multi-page files, the value of bMultiPageFile will be ignored and the function will automatically save the acquired images into separate files. The naming of the files will be carried out as follows: if the string in pszBaseFileName is "Temp.jpg", the method will append the number of the image, 0001, 0002, etc, to the file name. Therefore, the output file names will be "Temp0001.jpg", "Temp0002.jpg", etc.

If the file format supports multi-page files, this function will use the bMultiPageFile parameter to determine how to save multiple images. If bMultiPageFile is FALSE, each scanned page will be saved to a separate file, named in the same manner described in the paragraph above. If bMultiPageFile is TRUE, the name of the output file will be exactly the string in pszBaseFileName (e.g. "Temp.jpg") and it will be saved as a multi-page file.

To cancel the acquire operation call the LTwain::CancelAcquire.

To stop acquire images only from the feeder of the TWAIN source, call the LTwain::StopFeeder within the LTwain::AcquireCallBack function when its fired.

You can achieve the same functionality to this function by using the LTwain::AcquireMulti.

The LTWAIN_KEEPOPEN flag works only in the following cases:

1.

Passed with LTWAIN_SHOW_USER_INTERFACE flag to make TWAIN user-interface appears as modeless dialog. The TWAIN data source remains open after scanning until the user closes it.

2.

Passed with LTWAIN_SHOW_USER_INTERFACE and LTWAIN_MODAL_USER_INTERFACE flags to make the TWAIN user-interface appears as modal dialog. The TWAIN data source remains open after scanning until the user closes it.

Required DLLs and Libraries

LTTWN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

LTwain::AcquireCallBack, LTwain::Acquire, LTwain::AcquireList, LTwain::InitSession, LTwain::EndSession, LTwain::OpenTemplateFile, LTwain::CloseTemplateFile, LTwain::TemplateDlg, LTwain::AddCapabilityToFile, LTwain::GetNumofCapsInFile, LTwain::GetCapabilityFromFile, LTwain::FindFastConfig, LTwain::GetScanConfigs, LTwain::FreeScanConfig, LTwain::StopFeeder.

Topics:

How to Acquire from the TWAIN Source

 

TWAIN Functionality: Property Functions.

Example

#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName 
L_VOID CFastTwain::AcquireCallBack(L_INT nPage, L_TCHAR* pszFileName, L_BOOL bFinishScan) 
{ 
   L_TCHAR szTemp[MAX_PATH]; 
   if (bFinishScan) 
   { 
      wsprintf(szTemp, TEXT("The page # %d is scanned and saved to file name %s\n"), nPage, pszFileName); 
      MessageBox(NULL, szTemp, TEXT("Notice"), MB_OK); 
   } 
} 
L_INT LTwain__FastAcquireExample(HWND hWnd, CFastTwain *MyClass) 
{ 
   L_INT             nRet; 
   L_BOOL            bAvailable; 
   APPLICATIONDATA   AppData; 
   /* Check to see if TWAIN is installed */ 
   bAvailable = MyClass->IsAvailable(); 
   if (bAvailable) 
   { 
      ZeroMemory(&AppData,sizeof(AppData)); 
      AppData.uStructSize = sizeof(AppData); 
      AppData.hWnd = hWnd; 
      lstrcpy (AppData.szManufacturerName, TEXT("LEAD Technologies, Inc.")); 
      lstrcpy (AppData.szAppProductFamily, TEXT("LEAD Test Applications")); 
      lstrcpy (AppData.szVersionInfo, TEXT("Version 1.0")); 
      lstrcpy (AppData.szAppName, TEXT("TWAIN Test Application")); 
      nRet = MyClass->InitSession(&AppData); 
      if(nRet != SUCCESS) 
         return nRet; 
   } 
   MyClass->EnableCallBack (TRUE); 
   nRet = MyClass->FastAcquire( 
   MAKE_IMAGE_PATH(TEXT("test.bmp")), 
   LTWAIN_SHOW_USER_INTERFACE, 
   LTWAIN_FILE_MODE, 
   FILE_BMP, 
   1, 
   TRUE, 
   0, 
   TRUE); 
   if (nRet == SUCCESS) 
      MessageBox(hWnd, TEXT("Fast Twain function was successful"), TEXT("Notice"), MB_OK); 
   else 
      MessageBox(hWnd, TEXT("Error occurred during fast Twain function!!!"), TEXT("Error!!!"), MB_OK); 
   return nRet; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS TWAIN C++ Class Library Help