Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GroupDocsGists/da6e26176a44307898d4616ecadd621b to your computer and use it in GitHub Desktop.
Save GroupDocsGists/da6e26176a44307898d4616ecadd621b to your computer and use it in GitHub Desktop.
// For complete examples and data files, please go to https://github.com/groupdocs-assembly/GroupDocs.Assembly-for-Java
String srcDocument = "/Presentation Templates/Bubble Chart.pptx";
String docReport = "/Presentation Reports/Bubble Chart_report.pptx";
try {
DocumentAssembler assembler = new DocumentAssembler();
assembler.assembleDocument(CommonUtilities.getTestDataPath(srcDocument),
CommonUtilities.getTestOutPath(docReport), new DataSourceInfo(new DataStorage(), null));
} catch (Exception exp) {
System.out.println("Exception: " + exp.getMessage());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment