Leadtools.Pdf Namespace > PDFFile Class : ExtractPages Method |
public void ExtractPages( int firstPageNumber, int lastPageNumber, string destinationFileName )
'Declaration Public Sub ExtractPages( _ ByVal firstPageNumber As Integer, _ ByVal lastPageNumber As Integer, _ ByVal destinationFileName As String _ )
'Usage Dim instance As PDFFile Dim firstPageNumber As Integer Dim lastPageNumber As Integer Dim destinationFileName As String instance.ExtractPages(firstPageNumber, lastPageNumber, destinationFileName)
public void ExtractPages( int firstPageNumber, int lastPageNumber, string destinationFileName )
function Leadtools.Pdf.PDFFile.ExtractPages( firstPageNumber , lastPageNumber , destinationFileName )
public: void ExtractPages( int firstPageNumber, int lastPageNumber, String^ destinationFileName )
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) constructurs or set the file name 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 (Nothing in Visual Basic), then default properties will be used
SecurityOptions. If the value of this property is not null (Nothing in Visual Basic), then the destination file will be encrypted using the properties of this property. If the value of this property is null (Nothing in Visual Basic), the result file will not be encrypted
CompatibilityLevel. The version of the generated PDF file
Public Sub PDFFileExtractPagesExample() Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD.pdf") ' Get the number of pages in the source file Dim pdfFileObj As New PDFFile(sourceFileName) Dim pageCount As Integer = pdfFileObj.GetPageCount() Console.WriteLine("Pages in source file : {0}", pageCount) ' Extract each page to an individual PDF file For i As Integer = 1 To pageCount Dim destinationFileName As String = Path.Combine(LEAD_VARS.ImagesDir, String.Format("LEAD_Page{0}.pdf", i)) pdfFileObj.ExtractPages(i, i, destinationFileName) Next End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
public void PDFFileExtractPagesExample() { string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD.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); // Extract each page to an individual PDF file for(int i = 1; i <= pageCount; i++) { string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, string.Format("LEAD_Page{0}.pdf", i)); file.ExtractPages(i, i, destinationFileName); } } static class LEAD_VARS { public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2