Hi,
[REGRESSION]: Working in aspose slides 14.8.0. Please consider this for Enterprise Support as its a regression
Creation Date and Last Save Time fields are not are not extracted correctly
PFA - Sample PPT document
Code:
String pptFile = “C:\Satyendra\Test\Classic Photo Album123.pptx”;
IDocumentProperties docProps=null;
Presentation pptPresentation = new Presentation(pptFile);
if(pptPresentation!=null)
{
docProps = pptPresentation.getDocumentProperties();
System.out.println("Created Date: " + docProps.getCreatedTime());
System.out.println("Last Saved Date: " + docProps.getLastSavedTime());
}
Expected:
Created Date: Thu Dec 04 07:55:13 PST 2008
Last Saved Date: Thu Dec 04 07:57:15 PST 2008
Actual:
Created Date: Sat Jan 01 00:00:00 PST 1
Last Saved Date: Sat Jan 01 00:00:00 PST 1
Thanks,
Satyemdra