Gets the total number of embedded files (attachments) in a PDF file.
public static int getEmbeddedFileCount(java.lang.String,java.lang.String);
fileName
The name of the PDF file.
password
The password to use when loading this PDF file (if the file is encrypted); otherwise, use null.
The total number of embedded files (attachments) in the PDF.
This example will re-generate a PDF document by stitching the pages of original document, followed by all the attachments found.
using Leadtools;using Leadtools.Codecs;using Leadtools.Controls;using Leadtools.Drawing;using Leadtools.ImageProcessing;using Leadtools.Pdf;using Leadtools.Svg;using Leadtools.WinForms;public static void ExtractAttachmentsAndStitch(string inputFileName, string outputFileName){File.Delete(outputFileName);// Get the number of embedded files (attachments) in the input fileint attachmentCount = PDFFile.GetEmbeddedFileCount(inputFileName, null);// If the file does not have any attachments we are doneif (attachmentCount == 0){File.Copy(inputFileName, outputFileName, true);return;}// To convert attachment files that are not PDFvar rasterCodecs = new RasterCodecs();rasterCodecs.ThrowExceptionsOnInvalidImages = false;var tempFiles = new List<string>();// Now, extract all the attachmentsfor (int attachmentNumber = 1; attachmentNumber <= attachmentCount; attachmentNumber++){// Extract this attachment to a temporary filestring tempFile = Path.GetTempFileName();PDFFile.ExtractEmbeddedFile(inputFileName, null, attachmentNumber, tempFile);// If attachment is not PDF, convert itRasterImageFormat format;int pageCount;using (CodecsImageInfo info = rasterCodecs.GetInformation(tempFile, true)){format = info.Format;pageCount = info.TotalPages;}if (format == RasterImageFormat.Unknown){// We do not know what to do with this attachment, log and ignore itConsole.WriteLine("Could not convert attachment file to PDF, ignoring");File.Delete(tempFile);}else if (format != RasterImageFormat.RasPdf){// Simple conversion using RasterImage.// TODO for the Example: A better way is to use the DocumentConverter to get true document conversion with all the// options availablestring tempPdfFile = Path.GetTempFileName();for (int pageNumber = 1; pageNumber <= pageCount; pageNumber++){using (RasterImage image = rasterCodecs.Load(tempFile, pageNumber)){rasterCodecs.Save(image, tempPdfFile, RasterImageFormat.RasPdfJpeg422, 0, 1, -1, -1, CodecsSavePageMode.Append);}}File.Copy(tempPdfFile, tempFile, true);File.Delete(tempPdfFile);tempFiles.Add(tempFile);}else{// TODO for the Example: Check if this file is PDF with attachments and call the function recursively.tempFiles.Add(tempFile);}}// Time to generate the final document, first the pages from the original document// Did we extract/convert any attachments?if (tempFiles.Count > 0){// Note that if the original document is PDF portfolio, then it does not contain real pages. Just a placeholder that should be ignoredif (!PDFFile.IsPortfolio(inputFileName, null)){PDFFile file = new PDFFile(inputFileName);file.MergeWith(tempFiles.ToArray(), outputFileName);}else{// This is portfolio, so we will ignore the original file and just merge the attachmentsstring firstFile = tempFiles[0];tempFiles.RemoveAt(0);PDFFile file = new PDFFile(firstFile);file.MergeWith(tempFiles.ToArray(), outputFileName);File.Delete(firstFile);}}else{// No, just copy the original file overFile.Copy(inputFileName, outputFileName, true);}// Clean upforeach (string tempFile in tempFiles)File.Delete(tempFile);rasterCodecs.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.PdfImports Leadtools.WinFormsImports Leadtools.SvgImports Leadtools.ImageProcessingPublic Shared Sub ExtractAttachmentsAndStitch(inputFileName As String, outputFileName As String)File.Delete(outputFileName)' Get the number of embedded files (attachments) in the input fileDim attachmentCount As Integer = PDFFile.GetEmbeddedFileCount(inputFileName, Nothing)' If the file does Not have any attachments we are doneIf attachmentCount = 0 ThenFile.Copy(inputFileName, outputFileName, True)ReturnEnd If' To convert attachment files that are Not PDFDim rasterCodecs As New RasterCodecs()rasterCodecs.ThrowExceptionsOnInvalidImages = FalseDim tempFiles As New List(Of String)()' Now, extract all the attachmentsFor attachmentNumber As Integer = 1 To attachmentCount' Extract this attachment to a temporary fileDim tempFile As String = Path.GetTempFileName()PDFFile.ExtractEmbeddedFile(inputFileName, Nothing, attachmentNumber, tempFile)' If attachment Is Not PDF, convert itDim format As RasterImageFormatDim pageCount As IntegerUsing info As CodecsImageInfo = rasterCodecs.GetInformation(tempFile, True)format = info.FormatpageCount = info.TotalPagesEnd UsingIf format = RasterImageFormat.Unknown Then' We do Not know what to do with this attachment, log And ignore itConsole.WriteLine("Could not convert attachment file to PDF, ignoring")File.Delete(tempFile)ElseIf format <> RasterImageFormat.RasPdf Then' Simple conversion using RasterImage.' TODO for the Example: A better way Is To use the DocumentConverter To Get True document conversion With all the' options availableDim tempPdfFile As String = Path.GetTempFileName()For pageNumber As Integer = 1 To pageCountUsing image As RasterImage = rasterCodecs.Load(tempFile, pageNumber)rasterCodecs.Save(image, tempPdfFile, RasterImageFormat.RasPdfJpeg422, 0, 1, -1, -1, CodecsSavePageMode.Append)End UsingNextFile.Copy(tempPdfFile, tempFile, True)File.Delete(tempPdfFile)tempFiles.Add(tempFile)Else' TODO for the Example: Check if this file Is PDF with attachments And call the function recursively.tempFiles.Add(tempFile)End IfNext' Time to generate the final document, first the pages from the original document' Did we extract/convert any attachments?If tempFiles.Count > 0 Then' Note that if the original document Is PDF portfolio, then it does Not contain real pages. Just a placeholder that should be ignoredIf Not PDFFile.IsPortfolio(inputFileName, Nothing) ThenDim pdfFile As New PDFFile(inputFileName)pdfFile.MergeWith(tempFiles.ToArray(), outputFileName)Else' This Is portfolio, so we will ignore the original file And just merge the attachmentsDim firstFile As String = tempFiles(0)tempFiles.RemoveAt(0)Dim pdfFile As New PDFFile(firstFile)pdfFile.MergeWith(tempFiles.ToArray(), outputFileName)File.Delete(firstFile)End IfElse' No, just copy the original file overFile.Copy(inputFileName, outputFileName, True)End If' Clean upFor Each tempFile As String In tempFilesFile.Delete(tempFile)NextrasterCodecs.Dispose()End Sub
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
