Leadtools.Pdf Namespace > PDFFile Class : InsertPagesFrom Method |
public void InsertPagesFrom( int insertPageNumber, PDFFile sourceFile, int firstPageNumber, int lastPageNumber )
'Declaration Public Sub InsertPagesFrom( _ ByVal insertPageNumber As Integer, _ ByVal sourceFile As PDFFile, _ ByVal firstPageNumber As Integer, _ ByVal lastPageNumber As Integer _ )
'Usage Dim instance As PDFFile Dim insertPageNumber As Integer Dim sourceFile As PDFFile Dim firstPageNumber As Integer Dim lastPageNumber As Integer instance.InsertPagesFrom(insertPageNumber, sourceFile, firstPageNumber, lastPageNumber)
public void InsertPagesFrom( int insertPageNumber, PDFFile sourceFile, int firstPageNumber, int lastPageNumber )
function Leadtools.Pdf.PDFFile.InsertPagesFrom( insertPageNumber , sourceFile , firstPageNumber , lastPageNumber )
public: void InsertPagesFrom( int insertPageNumber, PDFFile^ sourceFile, int firstPageNumber, int lastPageNumber )
Both files in this PDFFile (the destination) and sourceFile must exist and contain valid PDF files prior to calling this method.
To use this method, associate this PDFFile object and the source PDFFile 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 PDFFileInsertPagesFromExample() Dim originalFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD.pdf") Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "PDFSegmentation.pdf") Dim destinationFileName1 As String = Path.Combine(LEAD_VARS.ImagesDir, "InsertAtBeginning.pdf") Dim destinationFileName2 As String = Path.Combine(LEAD_VARS.ImagesDir, "InsertInMiddle.pdf") Dim destinationFileName3 As String = Path.Combine(LEAD_VARS.ImagesDir, "InsertAtEnd.pdf") ' Make a copy of the original file File.Copy(originalFileName, destinationFileName1, True) File.SetAttributes(destinationFileName1, FileAttributes.Normal) File.Copy(originalFileName, destinationFileName2, True) File.SetAttributes(destinationFileName2, FileAttributes.Normal) File.Copy(originalFileName, destinationFileName3, True) File.SetAttributes(destinationFileName3, FileAttributes.Normal) ' This is the source PDF file to insert into the destination Dim sourceFile As New PDFFile(sourceFileName) ' Insert sourceFileName2 into destinationFileName1 at the beginning Dim pdfFileObj As New PDFFile(destinationFileName1) pdfFileObj.InsertPagesFrom(0, sourceFile, 1, -1) ' Insert sourceFileName2 into destinationFileName2 in the middle pdfFileObj = New PDFFile(destinationFileName2) pdfFileObj.InsertPagesFrom(pdfFileObj.GetPageCount() \ 2, sourceFile, 1, -1) ' Insert sourceFileName2 into destinationFileName3 at the end (append) pdfFileObj = New PDFFile(destinationFileName3) pdfFileObj.InsertPagesFrom(-1, sourceFile, 1, -1) End Sub Public NotInheritable Class LEAD_VARS Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" End Class
public void PDFFileInsertPagesFromExample() { string originalFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD.pdf"); string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"PDFSegmentation.pdf"); string destinationFileName1 = Path.Combine(LEAD_VARS.ImagesDir, @"InsertAtBeginning.pdf"); string destinationFileName2 = Path.Combine(LEAD_VARS.ImagesDir, @"InsertInMiddle.pdf"); string destinationFileName3 = Path.Combine(LEAD_VARS.ImagesDir, @"InsertAtEnd.pdf"); // Make a copy of the original file File.Copy(originalFileName, destinationFileName1, true); File.SetAttributes(destinationFileName1, FileAttributes.Normal); File.Copy(originalFileName, destinationFileName2, true); File.SetAttributes(destinationFileName2, FileAttributes.Normal); File.Copy(originalFileName, destinationFileName3, true); File.SetAttributes(destinationFileName3, FileAttributes.Normal); // This is the source PDF file to insert into the destination PDFFile sourceFile = new PDFFile(sourceFileName); // Insert sourceFileName2 into destinationFileName1 at the beginning PDFFile file = new PDFFile(destinationFileName1); file.InsertPagesFrom(0, sourceFile, 1, -1); // Insert sourceFileName2 into destinationFileName2 in the middle file = new PDFFile(destinationFileName2); file.InsertPagesFrom(file.GetPageCount() / 2, sourceFile, 1, -1); // Insert sourceFileName2 into destinationFileName3 at the end (append) file = new PDFFile(destinationFileName3); file.InsertPagesFrom(-1, sourceFile, 1, -1); } 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