Hi Team,
The PDF contains 1,514 pages, and the content is as follows.
image.png (85.5 KB)
image.png (256.7 KB)
let us know if you need any other information.
Hi Team,
The PDF contains 1,514 pages, and the content is as follows.
image.png (85.5 KB)
image.png (256.7 KB)
let us know if you need any other information.
Can you please provide the code you are using to extract text from the PDF and specify the environment (e.g., .NET, Java) you are working in?
Sample Code:
var _document = new Aspose.Pdf.Document(@“File Path”);
AsposePdf.Text.TextSearchOptions textSearchOptions = new AsposePdf.Text.TextSearchOptions(false);
resources will be skipped during processing.
textSearchOptions.IgnoreResourceFontErrors = true;
_document.Flatten();
TextAbsorber textAbsorber = new TextAbsorber(textSearchOptions);
_document.Pages.Accept(textAbsorber);
return textAbsorber.Text;
environment: .Net (netstandard2.1)
Could you please share the sample PDF with us as well so that we can test the scenario in our environment and address it accordingly.