-
Notifications
You must be signed in to change notification settings - Fork 5
Convert Slide to Image
shoaibkhan-aspose edited this page Aug 29, 2014
·
3 revisions
// Convert the slides to PNG files
PPTX2PNG.main(new String[]{"presentation.pptx"});
//Instantiate a PresentationEx object that represents a PPTX file
Presentation pres = new Presentation("data/presentation.pptx");
//Instantiate the TiffOptions class
TiffOptions opts = new TiffOptions();
//Set Image Size
opts.setImageSize(new Dimension(500, 400));
//Save the prsentation to TIFF with specified image size
pres.save("data/Aspose_PPT-TIFF.tiff", SaveFormat.Tiff, opts);
Download Source Code
For further releases and updates, please follow these new repositories:
- Aspose.Words Java for Apache POI
- Aspose.Cells Java for Apache POI
- Aspose.Slides Java for Apache POI
- Aspose.Email Java for Apache POI
- For documentation, please visit Aspose Docs.
- Raise your queries and suggest more examples via Aspose Forums or via new social coding sites.