Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Protect your presentations by removing potentially harmful embedded content like VBA macros and OLE objects inside your PHP presentation apps with Aspose.Slides for PHP via Java 24.7 release. This code example highlights how to use this feature in PHP.
$loadOptions = new LoadOptions(); $loadOptions->setDeleteEmbeddedBinaryObjects(true); $pres = new Presentation("malware.ppt", $loadOptions); $pres->save("clean.ppt", SaveFormat::Ppt);
Source*
You can include embedded files when exporting presentations to PDF for comprehensive document sharing with the latest PHP presentation manipulation API version. The following coding sample shows how to implement this functionality into your PHP applications.
$pres = new Presentation("pres.pptx"); $options = new PdfOptions(); $options->setIncludeOleData(true); $pres->save("pres.pdf", SaveFormat::Pdf, $options);
Efficiently add various types of placeholders to layout slides and accelerate presentation creation. Please refer to this code example to understand how to add different placeholders to your PHP solutions.
$pres = new Presentation(); # Getting the Blank layout slide $layout = $pres->getLayoutSlides()->getByType(SlideLayoutType::Blank); # Getting the placeholder manager of the layout slide $placeholderManager = $layout->getPlaceholderManager(); # Adding different placeholders to the Blank layout slide $placeholderManager->addContentPlaceholder(10, 10, 300, 200); $placeholderManager->addVerticalTextPlaceholder(350, 10, 200, 300); $placeholderManager->addChartPlaceholder(10, 350, 300, 300); $placeholderManager->addTablePlaceholder(350, 350, 300, 200); # Adding the new slide with Blank layout $pres->getSlides()->addEmptySlide($layout); $pres->save("placeholders.pptx", SaveFormat::Pptx);
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Slides for PHP via Java 24.7 Release Notes.