Tables not found by TableAbsorb

The TableAbsorber doesn’t find tables in the page.

I extracted this single page from my long PDF document. The page contains some tables. I checked the elements of the PDF and it contains PATH elements and TEXT elements.

I have been able to read other tables so I know my code is ok.

Attached the pdf sample.

Thank you!

Juan
table_not_found.pdf (138.1 KB)

@jcolano

We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): PDFNET-56637

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@jcolano

To extract a table without borders, enable the UseFlowEngine option. Here’s the code example:

Text.TableAbsorber absorber = new Text.TableAbsorber();
absorber.UseFlowEngine = true;
absorber.Visit(page);