Aspose slide convert to PDF

Hi all

I was working with the Aspose.slides, I was successful in converting the PPT to PDF.

I have two queries regarding this

1. By any chance i can set the PDF orientation (Poteriate or Landscape)?
2. When i convert the PPT to PDF, i notice that the PDF that got converted is just like a image. I am using “2.8.9.0” version (i think)… But i want the text to be like text only when it render to PDF. Is this feature is there in the newer version of Aspose.slides

Plz provide information on the given two point. It will be very help ful for me.

Thanks in advance
-Sumit

Hello Sumit,

All last Aspose.Slides for .NET 3.* versions export text as text. Generated PDF files have the same page orientation and page size like slides in a presentation.

Hi

Thanks for your reply… I am trying to convert the file to PDF using “3.0.0.41081” version of aspose.slides.dll

This is the code snippet

Response.ContentType = “Application/pdf”;
Response.AddHeader(“Content-Disposition”, “attachment;filename=” + fileName + “.pdf”);
presentation.SaveToPdf(Response.OutputStream);

On the line in red it give me run time error that “Specified method is not supported.”

I am not sure what i am missing?

Thanks
-Sumit