Hello,
I use aspose to convert Ppt(Pptx) to Pdf and i have empty strings logging in my console window.
How can i allow this?
TY
Screenshot:
Hi,
Console.WriteLine("Strarted at: " + System.DateTime.Now);Presentation _presentation = new Presentation( “TestPPT.ppt”);_presentation.Save(“TestPPT.pdf”, Aspose.Slides.Export.SaveFormat.Pdf);PresentationEx _presentationEx2 = new PresentationEx(“TestPPTX.pptx”);_presentationEx2.Save(“TestPPTX.pdf”, Aspose.Slides.Export.SaveFormat.Pdf);Console.WriteLine("Ends at: " + System.DateTime.Now);
Hi, thank for your answer.
I dont know what happening
I suppose for each slide i have a one empty string in console.
my code:
Console.WriteLine(DateTime.Now);
var pres = new PresentationEx(pptxFile.FullName);
pres.Save(pdfFileName, SaveFormat.Pdf);
Console.WriteLine(DateTime.Now);
my console
My aspose version
Hi,