Last active
September 20, 2024 20:33
-
-
Save gyurisc/1026807 to your computer and use it in GitHub Desktop.
Extracting attachments from a PDF file and write it out to a file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using iTextSharp.text.pdf; | |
namespace PDFExtract | |
{ | |
public class PDFExtractor | |
{ | |
public void ExtractAttachments() | |
{ | |
} | |
// Origin of the code: http://stackoverflow.com/questions/3007780/itextsharp-how-to-open-read-extract-a-file-attachment | |
internal void ExtractAttachments(string file_name, string folderName) | |
{ | |
PdfDictionary documentNames = null; | |
PdfDictionary embeddedFiles = null; | |
PdfDictionary fileArray = null; | |
PdfDictionary file = null; | |
PRStream stream = null; | |
PdfReader reader = new PdfReader(file_name); | |
PdfDictionary catalog = reader.Catalog; | |
documentNames = (PdfDictionary)PdfReader.GetPdfObject(catalog.Get(PdfName.NAMES)); | |
if (documentNames != null) | |
{ | |
embeddedFiles = (PdfDictionary)PdfReader.GetPdfObject(documentNames.Get(PdfName.EMBEDDEDFILES)); | |
if (embeddedFiles != null) | |
{ | |
PdfArray filespecs = embeddedFiles.GetAsArray(PdfName.NAMES); | |
for (int i = 0; i < filespecs.Size; i++) | |
{ | |
// i++; commenting this out as it is a mistake to change the loop variable | |
fileArray = filespecs.GetAsDict(i); | |
file = fileArray.GetAsDict(PdfName.EF); | |
foreach (PdfName key in file.Keys) | |
{ | |
stream = (PRStream)PdfReader.GetPdfObject(file.GetAsIndirectObject(key)); | |
string attachedFileName = fileArray.GetAsString(key).ToString(); | |
byte[] attachedFileBytes = PdfReader.GetStreamBytes(stream); | |
System.IO.File.WriteAllBytes(attachedFileName, attachedFileBytes); | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
That is a mistake. I will fix it right away. Thanks for pointing out
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the solution! Curious, how come the counter is added again here https://gist.github.com/gyurisc/1026807#file-pdfextractor-cs-L38 ?