What Font Will Be Used to Render If My System Does Not Have Any Fonts Installed when Rendering Slides?

I am using the below code to render a presentation document on a system which does not have any fonts installed. Will there be any inbuilt fonts used by aspose.

Presentation pres = new Presentation("C:/aspose/test.ppt");
for (int index = 0; index < pres.getSlides().size(); index++)
{ 
    ISlide slide = pres.getSlides().get_Item(index);

    slide.renderToGraphics(new RenderingOptions(), (Graphics2D) graphics, new Dimension(width, height));
    ImageIO.write(slideImage, "PNG", new File("C:/aspose/output/test/slide" + index + ".png"));
}

@mirnalini,
Thank you for posting the question.

Please read the following article: Font Selection Sequence in Java|Aspose.Slides Documentation

Please let us know if you still have additional questions.