-
Notifications
You must be signed in to change notification settings - Fork 533
Closed
Milestone
Description
Using v0.7.0, I am able to generate a PPT file. When I attempt to open the resulting file, I am unable to open it.
I've tried to do the bare minimum when generating the presentation file.
My PHP code:
$filename = "presentation.pptx";
$objPHPPresentation = new PhpPresentation();
$currentSlide = $objPHPPresentation->getActiveSlide();
$objWriter = IOFactory::createWriter($objPHPPresentation, 'PowerPoint2007');
$objWriter->save($base_url.$filename);
I rolled back to v0.6.0 and was able to open the file generated using the same script.
If I can help at all please let me know :)