←Select platform

DeletePages Method

Summary
Delete one or more pages from the file associated with this PDFFile object.
Syntax
C#
C++/CLI
Java
Python
public void DeletePages( 
   int firstPageNumber, 
   int lastPageNumber, 
   string destinationFileName 
) 
public void deletePages( 
   int intValue,  
   int intValue2,  
   java.lang.String string 
); 
public: 
void DeletePages(  
   int firstPageNumber, 
   int lastPageNumber, 
   String^ destinationFileName 
)  

Parameters

firstPageNumber
The 1-based number of the first page to be deleted. Must be a value greater than or equal to 1.

lastPageNumber
The 1-based number of the last page to be deleted. Must be a value greater than or equal to  firstPageNumber and less than or equal to the total number of pages in the file. Use the special value of -1 to represents "last page in the file".

destinationFileName
Name of the destination PDF file to be created. If the value of this parameter is null then the filename set in FileName will be updated.

Remarks

To use this method, associate this PDFFile object with a valid PDF file and optional password. You can achieve this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructors or set the filename and optional password directly into the FileName and Password properties. You do not need to call Load before using this method.

This method will use the following properties of this PDFFile object:

  • DocumentProperties. If the value of this property is null, then default properties will be used

  • SecurityOptions. If the value of this property is not null, then the destination file will be encrypted using the properties of this property. If the value of this property is null, the result file will not be encrypted

  • CompatibilityLevel. The version of the generated PDF file

Example

This example will delete all pages except the first one from a PDF file.

C#
Java
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Controls; 
using Leadtools.Drawing; 
using Leadtools.ImageProcessing; 
using Leadtools.Pdf; 
using Leadtools.Svg; 
 
 
public void PDFFileDeletePagesExample() 
{ 
   string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); 
   string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_DeletePages.pdf"); 
 
   // Get the number of pages in the source file 
   PDFFile file = new PDFFile(sourceFileName); 
   int pageCount = file.GetPageCount(); 
   Console.WriteLine("Pages in source file : {0}", pageCount); 
 
   // If the file has more than 1 page, delete all except the first page 
   if (pageCount > 1) 
   { 
      // -1 is (up to and including last page) 
      file.DeletePages(2, -1, destinationFileName); 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.ByteArrayInputStream; 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.FileReader; 
import java.io.IOException; 
import java.io.InputStream; 
import java.nio.file.Files; 
import java.nio.file.Paths; 
import java.nio.file.StandardCopyOption; 
import java.util.ArrayList; 
import java.util.Date; 
import java.util.List; 
import java.util.Scanner; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.pdf.*; 
 
 
public void pdfFileDeletePagesExample() { 
 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   String sourceFileName = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf"); 
   String destinationFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_DeletePages.pdf"); 
 
   // Get the number of pages in the source file 
   PDFFile file = new PDFFile(sourceFileName); 
   int pageCount = file.getPageCount(); 
   System.out.printf("Pages in source file : %d%n", pageCount); 
 
   // If the file has more than 1 page, delete all except the first page 
   if (pageCount > 1) { 
      // -1 is (up to and including last page) 
      file.deletePages(2, -1, destinationFileName); 
   } 
   assertTrue("Check to make sure new file has only 1 page", new PDFFile(destinationFileName).getPageCount() == 1); 
 
} 
Requirements

Target Platforms

See Also

Reference

PDFFile Class

PDFFile Members

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

Leadtools.Pdf Assembly

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