Can Aspose.Pdf preserve hyperlinks when converting to PPT?

I am using Aspose.Pdf to convert a PDF into a PPT document. The resulting document drops the hyperlinks that existed in the PDF. Does Aspose.Pdf have the ability to preserve hyperlinks when converting to PPT?

@Taylor_Davenport,

There is no way to convert the PDF document to PPT. We can convert the PDF to PPTX format and it preserves hyperlinks. Please download and try the latest version 17.10 of Aspose.Pdf for .NET API.

[C#]

//The path to the documents directory.
string dataDir = @"C:\Pdf\test441\";
// Load PDF document
Aspose.Pdf.Document doc = new Aspose.Pdf.Document(dataDir + "Hyperlink.pdf");
// Instantiate PptxSaveOptions instance
Aspose.Pdf.PptxSaveOptions pptx_save = new Aspose.Pdf.PptxSaveOptions();
// Save the output in PPTX format
doc.Save(dataDir + "PDFToPPT_out.ppt", SaveFormat.Pptx);

These are the source PDF and output PPTX documents: PDFtoPPTX.zip (89.8 KB)