L_CaptureSelectedObject

Summary

Captures an image of the selected window's object.

Syntax

#include "l_bitmap.h"

L_LTSCR_API L_INT L_CaptureSelectedObject(pBitmap, uBitmapStructSize, pObjectOptions, uOptionsStructSize, pCaptureInfo, uInfoStructSize, pfnCaptureCallback, pUserData)

Parameters

pBITMAPHANDLE pBitmap

Pointer to a bitmap handle that references the captured data.

L_UINT uBitmapStructSize

Size in bytes, of the structure pointed to by pBitmap, for versioning. Use sizeof(BITMAPHANDLE).

pLEADCAPTUREOBJECTOPTION pObjectOptions

Address of a LEADCAPTUREOBJECTOPTION structure to be filled with specific options for the L_CaptureSelectedObject function. Pass NULL if you do not want to use this parameter.

L_UINT uOptionsStructSize

Size in bytes, of the structure pointed to by pObjectOptions, for versioning. Use sizeof(LEADCAPTUREOBJECTOPTION).

pLEADCAPTUREINFO pCaptureInfo

Address of LEADCAPTUREINFO structure to be filled with information regarding the captured image's source. Pass NULL if you are not interested in extra information about the capture.

L_UINT uInfoStructSize

Size in bytes, of the structure pointed to by pCaptureInfo, for versioning. Use sizeof(LEADCAPTUREINFO).

CAPTURECALLBACK pfnCaptureCallback

Optional callback function for additional processing.

If you do not provide a callback function, use NULL as the value of this parameter. If you do provide a callback function, use the function pointer as the value of this parameter. The callback function must adhere to the function prototype described in CAPTURECALLBACK Function.

L_VOID * pUserData

Void pointer that you can use to pass one or more additional parameters that the callback function needs.

To use this feature, assign a value to a variable or create a structure that contains as many fields as you need. Then, in this parameter, pass the address of the variable or structure, casting it to L_VOID ;*. The callback function, which receives the address in its own pUserData parameter, can cast it to a pointer of the appropriate data type to access your variable or structure. If the additional parameters are not needed, you can pass NULL in this parameter.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

This function allows the user to select an object to capture, and then captures that object to a bitmap. Any Windows object, such as a window, tool bar, or icon, can be captured. The callback can be used to do multiple captures, depending on the options set using L_SetCaptureOption.

The hot key needs to be pressed to complete the capture.

Required DLLs and Libraries

See Also

Functions

Topics

Example

static L_INT EXT_CALLBACK pfnCaptureCallback(pBITMAPHANDLE    pBitmap, 
                                             pLEADCAPTUREINFO pCaptureInfo, 
                                             L_VOID         * pUserData) 
{ 
   UNREFERENCED_PARAMETER(pCaptureInfo); 
   UNREFERENCED_PARAMETER(pUserData); 
 
   /* save the captured image */ 
   return(L_SaveBitmap (MAKE_IMAGE_PATH(TEXT("SelectedObject.bmp")), pBitmap, FILE_BMP, 0, 0, NULL)); 
} 
 
L_INT CaptureSelectedObjectExample(L_VOID) 
{ 
   BITMAPHANDLE            Bitmap; 
   LEADCAPTUREOBJECTOPTION ObjectOptions; 
   LEADCAPTUREINFO         CaptureInfo; 
 
   memset(&CaptureInfo, 0, sizeof(LEADCAPTUREINFO)); 
   /* To call the L_CaptureSelectedObject & L_GetDefaultObjectOption */ 
   /* get the default object options */ 
   L_INT nRet = L_GetDefaultObjectOption(&ObjectOptions, sizeof(LEADCAPTUREOBJECTOPTION)); 
   if (nRet != SUCCESS) 
      return nRet; 
 
   ObjectOptions.uBorderWidth = 3; 
    
   if(nRet == SUCCESS) 
   { 
      nRet = L_CaptureSelectedObject (&Bitmap, sizeof(BITMAPHANDLE), 
                                      &ObjectOptions, sizeof(LEADCAPTUREOBJECTOPTION), 
                                      &CaptureInfo, sizeof(LEADCAPTUREINFO), 
                                      pfnCaptureCallback, 
                                      NULL); 
      if (Bitmap.Flags.Allocated) 
         L_FreeBitmap (&Bitmap); 
   } 
 
   return nRet; 
} 
Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Screen Capture C API Help

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