LFile::DeletePage

Summary

Deletes the specified page from a multipage file, if the format supports delete operations.

Syntax

#include "ltwrappr.h"

virtual L_INT LFile::DeletePage(nPage, uFlags=0, pSaveFileOption=NULL)

Parameters

L_INT nPage

Number of the page to delete. Use -1 to delete the last page. Use 1 to delete the first page.

L_UINT uFlags

Reserved. Use 0.

pSAVEFILEOPTION pSaveFileOption

Pointer to optional extended save options. Pass NULL to use the default save options.

Returns

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

Comments

The following file formats support delete operations:

Before you can call this function, you must set the filename for the class object.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Example

L_INT LFile__DeletePageExample() 
 
{ 
   L_INT nRet; 
   LFile LeadFile; 
 
   LeadFile.SetFileName(MAKE_IMAGE_PATH(TEXT("eye.gif"))) ; 
 
   nRet = LeadFile.DeletePage(2,0, NULL) ; 
   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.