Created
September 29, 2018 12:59
-
-
Save GroupDocsGists/da6e26176a44307898d4616ecadd621b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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