Hi,
I have this pdf file:
SOF.pdf (399.7 KB)
If i load it by Aspose.PDF (version 21.4.0) and call method GetAllFonts then i get exception StackOverFlow.
My C# code is:
using (FileStream msPdf = File.OpenRead(“SOF.pdf”))
{
using (Aspose.Pdf.Document doc = new Aspose.Pdf.Document(msPdf))
{
Aspose.Pdf.Text.Font[] fonts = doc.FontUtilities.GetAllFonts();
}
}
Can you check it please?