#include "l_bitmap.h"
L_LTFIL_API L_INT L_DeletePage(pszFile, nPage, uFlags, pSaveOptions)
Deletes the specified page from a multi-page file, if the format supports delete operations.
Character string containing the name of the file from which to delete the page.
Number of the page to delete. Use -1 to delete the last page. Use 1 to delete the first page.
Reserved. Use 0.
Pointer to optional extended save options. Pass NULL to use the default save options.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The following file formats support delete operations:
Required DLLs and Libraries
Win32, x64, Linux.
delete first page of "test.tif"
L_INT DeletePageExample(L_VOID)
{
L_INT nRet;
nRet = L_DeletePage(MAKE_IMAGE_PATH(TEXT("image2.gif")), 1, 0, NULL);
if(nRet != SUCCESS)
return nRet;
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