Hi,
I wanted to read each paragraphs from a pdf file using aspose.
I used the following code:
foreach (PageMarkup markup in paragraphAbsorber.PageMarkups)
{
markup.IsMulticolumnParagraphsAllowed = false;
foreach (MarkupSection section in markup.Sections)
{
foreach (MarkupParagraph paragraph in section.Paragraphs)
{
Console.WriteLine(paragraph.Text);
}
}
}
file : Global warming.pdf (756.5 KB)
But the header portions are also get read. I want to read all the texts from the document without header/footer.
Is it possible to do that?