Default Fonts - PowerPoint Java API
Contents
[
Hide
]
Using Default Fonts for Rendering Presentation
Aspose.Slides lets you set the default font fore rendering the presentation to PDF, XPS or thumbnails. This article shows how to define DefaultRegular Font and DefaultAsian Font for use as default fonts. Please follow the steps below to loading fonts from external directories by using Aspose.Slides for Java API:
- Create an instance of LoadOptions.
- Set the DefaultRegularFont to your desired font. In the following example, I have used Wingdings.
- Set the DefaultAsianFont to your desired font. I have used Wingdings in following sample.
- Load the presentation using Presentation and setting the load options.
- Now, generate the slide thumbnail, PDF and XPS to verify the results.
The implementation of the above is given below.
// Use load options to define the default regualr and asian fonts
LoadOptions loadOptions = new LoadOptions(LoadFormat.Auto);
loadOptions.setDefaultRegularFont("Wingdings");
loadOptions.setDefaultAsianFont("Wingdings");
// Load the presentation
Presentation pres = new Presentation("DefaultFonts.pptx", loadOptions);
try {
// Generate slide thumbnail
IImage slideImage = pres.getSlides().get_Item(0).getImage(1, 1);
try {
// save the image on the disk.
slideImage.save("output.png", ImageFormat.Png);
} finally {
if (slideImage != null) slideImage.dispose();
}
// Generate PDF
pres.save("output_out.pdf", SaveFormat.Pdf);
// Generate XPS
pres.save("output_out.xps", SaveFormat.Xps);
} catch (IOException e) {
} finally {
if (pres != null) pres.dispose();
}