Hello,
We are trying to parse a table from a PDF file using the TableAbsorber
class, but the contents of specific columns are missing in the absorber.
Here are the PDF files and the results of the parsing process:
We used the following code snippet:
Document pdfDocument = new Document(dataDir + "Max.pdf");
TableAbsorber absorber = new TableAbsorber();
absorber.Visit(pdfDocument.Pages[1]);
foreach (AbsorbedTable table in absorber.TableList)
{
foreach (AbsorbedRow row in table.RowList)
{
foreach (AbsorbedCell cell in row.CellList)
{
foreach (TextFragment text in cell.TextFragments)
{
Console.Write(text.Text + " ");
}
Console.Write("|");
}
Console.WriteLine("-------------------------------------------");
}
Console.WriteLine("===========================================");
}
Have you tested the PDF automation after installing the latest version?