Aspose provides us java liberary (called Aspose slides) to work with Microsoft worddocument to insert content, retrieve content, export document into images. So lets talk about to convert .ppt and .pptx file to images(tiff format).
Here is the link from where we can download latest Aspose slides jar.
http://www.aspose.com/java/powerpoint-component.aspx
click on download button.
Generate images of .ppt/.pptx file
Help4J - Jar Search Engine. Easiest way to find jar and its source.
Here is the link from where we can download latest Aspose slides jar.
http://www.aspose.com/java/powerpoint-component.aspx
click on download button.
Generate images of .ppt/.pptx file
public void generateImages(final String sourcePath) {
try {
PresentationEx presentationEx = getPresentationEx(sourcePath);
String imageFilePath = sourcePath + "_output_.tiff";
presentationEx.save(imageFilePath, SaveFormat.Tiff);
} catch (Exception e) {
e.printStackTrace();
}
}
Help4J - Jar Search Engine. Easiest way to find jar and its source.
Very informative and useful code snippet, Thanks for sharing. I have used Aspose.Email for Javain one of my project and it produced good results.
ReplyDelete