Hi,
I am in process of migarting Aspose Slides version from ASPOSE SLIDES JAVA 15.3.0 to ASPOSE SLIDES JAVA 15.5.0. I ran in to an issue while working with some presentations.
I just loaded a presentation which originally does not have any tags and then save it back in pptx format. I am seeing around ten tag.xml files when I unzipped saved powerpoint presentation.
The content of one of the tag.xml is given below:
<p:tagLst
xmlns:p=“http://schemas.openxmlformats.org/presentationml/2006/main
”>
<p:tag name="AS_UNIQUEID " val="2 " />
</p:tagLst>
Other tag.xml also have tag with same name “AS_UNIQUEID” mapped to different tag values.
We were not seeing these extra tags in Version ASPOSE SLIDES JAVA 15.3.0.
I am just curious to know what these extra tags mean and why are they needed?
I am attaching both the presentations for your reference.
The code we used is given below:
void savePresentation(){
Presentation ppt=new Presentation(“AnimationsWithSlideContent.pptx”);
ppt.save(“AnimationsWithSlideContent_Saved.pptx”,SaveFormat.Pptx);
}
Thanks
Manisha Sharma