virtual L_INT LBitmap::DestroyGWireHandle(hGwire)
Frees the GWire handle generated by LBitmap::GWireInit.
Gwire handle.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
Frees the GWire handle generated by LBitmap::GWireInit.
Win32, x64.
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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document