LBitmap::FastMagicWand

Summary

Performs the fast magic wand operation and obtains the region through OBJECTINFO structure depending on color value at nXposition and nYposition

Syntax

#include "ltwrappr.h"

L_INT LBitmap::FastMagicWand(MagicWnd, nTolerance, nXposition, nYposition, pObjectInfo, uFlags = 0)

Parameters

MAGICWANDHANDLE MagicWnd

A fast magic wand handle, initialized by calling the LBitmap::StartFastMagicWandEngine function.

L_INT nTolerance

The tolerance value sets the stopping upper and lower color boundaries.

L_INT nXposition

X-coordinate of the point. The point's color is used to find the region.

L_INT nYposition

Y-coordinate of the point. The point's color is used to find the region.

pOBJECTINFO pObjectInfo

Pointer to OBJECTINFO structure to be updated with the obtained region.

L_UINT32 uFlags

Reserved for future use. Must be 0.

Returns

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

Comments

This function can only be called after the LBitmap::StartFastMagicWandEngine has been called. The MAGICWANDHANDLE structure passed must be the same as the one passed to LBitmap::StartFastMagicWandEngine function.

The MAGICWANDHANDLE and OBJECTINFO structures must be deleted by calling LBitmap::EndFastMagicWandEngine and LBitmap::DeleteObjectInfo functions.

This function is used when it is needed to select many regions over one image, especially large images as it performs faster.

This function supports 1, 8, and 24-bit images.

This function does not support 32-bit grayscale images. It returns the error code ERROR_GRAY32_UNSUPPORTED if a 32-bit grayscale image is passed to this function.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LBitmap__FastMagicWandExample() 
{ 
   L_INT nRet; 
   LBitmap LeadBitmap; 
   MAGICWANDHANDLE MagicWnd; 
   L_INT x, y, tolerance; 
   OBJECTINFO ObjectInfo; 
   x           = 50; 
   y           = 50; 
   tolerance   = 15; 
 
   nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("sample5.cmp")), 0,ORDER_BGR); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
 
   nRet = LeadBitmap.StartFastMagicWandEngine(&MagicWnd, 0); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   nRet = LeadBitmap.FastMagicWand(MagicWnd, tolerance, x, y, &ObjectInfo, 0); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   nRet = LeadBitmap.EndFastMagicWandEngine(MagicWnd, 0); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   nRet = LeadBitmap.DeleteObjectInfo(&ObjectInfo, 0); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

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