L_VecFree

Summary

Frees storage allocated for the specified vector image.

Syntax

#include "ltvkrn.h"

L_LVKRN_API L_INT L_VecFree(pVector)

Parameters

pVECTORHANDLE pVector

Pointer to a vector handle referencing the vector image to free.

Returns

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

Comments

This function should be called when your program no longer needs the vector data.

Required DLLs and Libraries

See Also

Functions

Example

This example loads a DXF file and convert into WMF.

L_INT VecFreeExample( 
   L_TCHAR* pszDXFFile, 
   L_TCHAR* pszWMFFile) 
{ 
   L_INT nRet; 
   VECTORHANDLE TmpVec; 
 
   /* Load DXF file. */ 
   nRet = L_VecLoadFile( pszDXFFile, &TmpVec, NULL, NULL ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* Convert to WMF */ 
   nRet = L_VecSaveFile( pszWMFFile, &TmpVec, FILE_WMF, NULL ); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   /* Free the vector */ 
   nRet = L_VecFree ( &TmpVec ); 
 
   return nRet; 
} 

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C API Help

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