Get PDF table data if table dont't have vertical and horizontal line

I have sample pdf and need all pdf data in tabular format but challenge is table data don’t have vertical and horizontal line. Is any solution to extract data in row column wise.

@sandeepsoni1588

We’re looking into the possibility if this scenario could be achieved using the API. Your investigation ticket ID is PARSERNET-1829.

@sandeepsoni1588

We’ve an update on PARSERNET-1829. Table extractor doesn’t use table lines. Instead it uses user defined separators. Template table is set by table layout:

TemplateTableLayout layout = new TemplateTableLayout(
    new double[] { 50, 95, 275 },
    new double[] { 325, 340, 365 });

TemplateTable table = new TemplateTable(layout, "Details", null);
Template template = new Template(new TemplateItem[] { table });

These collections represent bounds of columns and rows. For example, for 2x2 table there are 3 vertical and 3 horizontal separators. Have a look at this screenshot.PNG (200 Bytes).