Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Last active February 13, 2022 10:17
Show Gist options
  • Save GroupDocsGists/0e4392fdb047439a38f81bb75f563351 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/0e4392fdb047439a38f81bb75f563351 to your computer and use it in GitHub Desktop.
Convert Presentations to Images in Java | PPT/PPTX to JPG & PNG
// Convert PPT, PPTX Presentations to JPG Images in Java
Converter converter = new Converter("path/presentation.pptx");
ImageConvertOptions options = new ImageConvertOptions();
options.setFormat(ImageFileType.Jpg);
options.setPageNumber(1);
converter.convert("path/ppt-to-image.jpg", options);
// Convert PPT, PPTX Presentations to PNG Images in Java
Converter converter = new Converter("path/presentation.pptx");
ImageConvertOptions options = new ImageConvertOptions();
options.setFormat(ImageFileType.Png);
options.setPagesCount(1);
converter.convert("path/ppt-to-image.png", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment