Hi Muhammed,
Can you please be more specific with your answer? If possible, I'd appreciate if you can provide a code snippet clarifying the problem and possible solution.
I have the same problem and i get the error all the time at the time of 2nd conversion of a ppt to pdf, not the 1st execution.
Is conversion process changing anything in source documents?
here is the part i get the error: (outlined in red below)
------------------------------------------------------------
for
(int i = 0; i < byteArrays.Length; i++)
{
System.IO.
MemoryStream inputStream;
XmlStream =
new MemoryStream();
pdfStream =
new MemoryStream();
byte[] byteArray = byteArrays[i];
inputStream =
new MemoryStream(byteArray);
Aspose.Pdf.Pdf pdf =
new Aspose.Pdf.Pdf();
switch (extensions[i])
{
case "ppt":
presentation =
new Presentation(inputStream);
presentation.SaveToPdf(pdfStream);
break;
........
}
------------------------------------------------------------
Thanks,
zieglers