#include "Ltimgcor.h"
L_LTIMGCOR_API L_VOID L_DestroyGWireHandle(hGwire)
Frees the GWire handle that is generated by L_GWireInit.
Gwire handle.
None.
Frees the GWire handle that is generated by L_GWireInit.
Required DLLs and Libraries
Win32, x64.
L_INT DestroyGWireHandleExample(L_VOID)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap; /* Bitmap handle for the image */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("IMAGE3.dcm")), &LeadBitmap, sizeof(BITMAPHANDLE), 24, ORDER_BGR, NULL, NULL);
if(nRet !=SUCCESS)
return nRet;
GWIREHANDLE hGWire; /* The gwire handle */
L_INT nExternalEnergy = 90; /* The default value is 90 */
//initialize the gwire handle
nRet = L_GWireInit(&LeadBitmap, &hGWire, nExternalEnergy);
if(nRet !=SUCCESS)
return nRet;
//free the gwire handle
L_DestroyGWireHandle(hGWire);
//free bitmap
if(LeadBitmap.Flags.Allocated)
L_FreeBitmap(&LeadBitmap);
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