Hi Team,
string dataDir = RunExamples.GetDataDir_AsposePdf_WorkingDocuments();
Document doc = new Document(dataDir + "input.pdf");
Aspose.Pdf.Text.Font[] fonts = doc.FontUtilities.GetAllFonts();
foreach (Aspose.Pdf.Text.Font font in fonts)
{
Console.WriteLine(font.FontName);
}
Using above code I am getting the fonts available in uploaded document. But my requirement is to manipulate the font of text with all the system fonts available in my system.
Please help me with code to get the collection of fonts available in my system to fulfill the requirements.
Thanks and Regards,
Harish G.