UglyToad / PdfPig

Read and extract text and other content from PDFs in C# (port of PDFBox)

Home Page:https://github.com/UglyToad/PdfPig/wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PDF Image number zero

alexm199 opened this issue · comments

input.pdf

I cannot get Images from this pdf with

foreach (UglyToad.PdfPig.Content.Page page in pdf.GetPages())
{
Type t = page.GetType();
IEnumerable images = page.GetImages();

Console.WriteLine("Total Images: {0}", images.Count());

}

what I am doing wrong ?

Thank you