I want to update a PowerPoint template using Java and Aspose library:
For Example:
I have key and value in ppt as
firstname:${firstname}
lastname:${lastname}
I have an XML file which contains below data:
<firstname> Arjun </firstname>
<lastname> Rathore</lastname>
I want to dynamically update the ppt firstname with Arjun
and lastname with Rathore
.
i have tried below code to replace text in ppt templae using Aspose but replacement is not happening as per expectation.
String path="C:\\workspace\\src\\main\\resources\\testdata\\";
Presentation presentation = new Presentation(path+"sample.pptx");
presentation.joinPortionsWithSameFormatting();
String strToReplace = "Done";
ITextFrame[] tb = SlideUtil.getAllTextFrames(presentation, true);
String strToFind = "sample";
System.out.println("Before for");
for (int i = 0; i < tb.length; i++)
{
for (IParagraph ipParagraph : tb[i].getParagraphs())
{
ipParagraph.getText().replace(strToFind,strToReplace);
System.out.println("replaced");
for (IPortion iPortion : ipParagraph.getPortions())
{
if (iPortion.getText().toLowerCase().contains(strToFind.toLowerCase()))
{
iPortion.setText(iPortion.getText().toLowerCase().replace(strToFind,strToReplace));
System.out.println("replaced");
}
}
}
}
presentation.save(path+"Output.pptx",SaveFormat.Pptx);
Please find below attachment for reference:
1)input_ppt_template
2)input_xml_data
3)expected_output_ppt
I have observed the images shared by you and based on that created a sample application that shall do the replacement of the text based on data read from XML file. Please try using following sample example for your kind reference.
I have created a Data class to load data from XML.
Attached here, please source presentation, source XML and generated output presentation for your reference. I hope the shared example will be helpful to you now.
I am working as Support developer/ Evangelist at Aspose.