Created
September 29, 2018 13:52
-
-
Save GroupDocsGists/b344e5c858da2e199934baf7038aee66 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/Pie Chart.pptx"; | |
String docReport = "/Presentation Reports/Pie 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