Hi team,
Hi Ihsan,
I have observed your requirements and request you to please share if you are using Aspose.Imaging or Aspose.Pdf on your end. Please also share the source file along with working sample project on your end. Please provide requested information so that we may proceed further to help you out.
Many Thanks,
Hi Mudassir,
Hi Ihsan,
Your query is related to Aspose.Pdf and I am moving this query to respective forum where our respective support team will assist you further in this regard.
Many Thanks,
Hi Ishan,
Document pdfDocument = new Document(dataDir + “Max.pdf”);<o:p></o:p>
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("===========================================");
}
Hi Asad ,
Hi Ishan,
Hi Asad,
Hi Ishan,