LBitmap::DestroyGWireHandle

Summary

Frees the GWire handle generated by LBitmap::GWireInit.

Syntax

#include "ltwrappr.h"

virtual L_INT LBitmap::DestroyGWireHandle(hGwire)

Parameters

GWIREHANDLE hGwire

Gwire handle.

Returns

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

Comments

Frees the GWire handle generated by LBitmap::GWireInit.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Functions

Topics

Example

L_INT LBitmap__DestroyGWireHandleExample() 
{ 
   L_INT nRet; 
   LBitmap LeadBitmap;      /* Bitmap handle for the image */ 
 
   nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("IMAGE3.dcm")), 0, ORDER_BGR); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   GWIREHANDLE hGWire;           /* The gwire handle */ 
   L_INT nExternalEnergy = 90;   /* The default value is 90 */ 
 
   //initialize the gwire handle 
   nRet = LeadBitmap.GWireInit(&hGWire, nExternalEnergy); 
   if(nRet !=SUCCESS) 
      return nRet; 
 
   //free the gwire handle 
   LeadBitmap.DestroyGWireHandle(hGWire); 
 
   pBITMAPHANDLE pBitmapHandle =  LeadBitmap.GetHandle(); 
 
   //free bitmap  
   if(pBitmapHandle->Flags.Allocated)   
      L_FreeBitmap(pBitmapHandle);   
 
   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.