Created
September 29, 2018 13:52
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