From the given PDF how to extract the table as is and get all keys and values of the table?
I tried with some previous examples from Aspose forum but i’m only getting the keys of that table,and if the key /values having multiple lines they are coming as 2-3 lines rather i want all the text inside a cell to be treated as a single String,also the data is not in a proper format and i’m not getting all the data of that table
please help on this,
thanks
ps: i’m also applying the temporary license for Aspose.pdf
You may extract text from a table with TableAbsorber as explained in Manipulate tables in existing PDF, or you can iterate through each row and each cell as per your requirements.
Document pdfDocument = new Document(dataDir + "Test.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)
{
TextFragment textfragment = new TextFragment();
TextFragmentCollection textFragmentCollection = cell.TextFragments;
foreach (TextFragment fragment in textFragmentCollection)
{
Console.WriteLine(fragment.Text);
}
}
}
}
We hope this will be helpful. In case you still face any problem then share your code snippet with us while elaborating the issue, so that we may investigate further to help you out.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
Enables storage, such as cookies, related to analytics.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.
Sets consent for personalized advertising.
Cookie Notice
To provide you with the best experience, we use cookies for personalization, analytics, and ads. By using our site, you agree to our cookie policy.
More info
Enables storage, such as cookies, related to analytics.
Enables storage, such as cookies, related to advertising.
Sets consent for sending user data to Google for online advertising purposes.