Self Hosted Cloud Api Availability

Hi Team,
We need to below manipulation a PPT. Please confirm whether these apis available or not.

  1. Adding tooltip on a Image( a message upon mouse hover on a Image and setting the link to slide itself) .
  2. Add Excel file as embedded Object inside slide and the set substitute picture format also.
  3. Add Prism File (.prism ) as embedded OLE Object inside slide and the set substitute picture format also.
  4. Convert PPT to PDF.
  5. Convert PPT To Docx (Please note on premises Aspose doesnt provide direct conersion of PPT to Docx , So we first convert PPT to PDF and then from PDF to Doc and Docx)
  6. Convert PDF to DOC and DOCX.

@mdmobin,
Thank you for posting your requirements.

PowerPoint documents do not allow you to save tooltips for images. If I don’t understand this requirement, please share a sample presentation and screenshots, and then we will do our best to help you.

You can use OleObjectFrame objects and the CreateShape method to add Excel, Prism, and other files with substituted pictures to presentation slides.

With Aspose.Slides Cloud API, you can convert PowerPoint presentations to PDF documents. The presentations and output PDF files can be saved in storage or local files.

Aspose.Slides Cloud API also does not allow you to convert PowerPoint presentations to Word documents directly. My colleagues from Aspose.Words team will assist you soon.
@tilal.ahmad FYI

My colleagues from Aspose.PDF or Aspose.Words team will answer you soon. Thank you for your patience.
@tilal.ahmad FYI

Hi @andrey.potapov , We are implementing mouse housover as hyperlink as below

// Hyperlink properties
boolean history = false;
boolean stopSoundsOnClick = false;
boolean highlightClick = true;

// Create the hyperlink
// 1st argument is link to HyperLink , it must be as it is which linked to Same Slide
Hyperlink hyperlink = new Hyperlink(new Hyperlink(slide), null, "Hover Message", history, stopSoundsOnClick, highlightClick);

imageShape.setHyperlinkClick(hyperlink);

@mdmobin

Yes, you can use the Aspose.Words Cloud Docker image for PDF to DOC/DOCX conversion.

@mdmobin,

Yes, you can also use Aspose.Slides Cloud API to get a Hyperlink object from a Shape (image) and set the required parameters. Then you can add or update the image with a hyperlink using the createShape or updateShape methods accordingly, for example. Please let us know if you need a code example.