通过使用带有纯php代码的php的Ppt图像(PHPOffice / PHPPresentation)

时间:2018-10-26 16:49:16

标签: php phpoffice phppresentation

我想用ppt / pptx制作图像。我可以使用阅读ppt PHPOffice / PHPPresentation,但无法将其转换为图像。

require_once 'src/PhpPresentation/Autoloader.php';
\PhpOffice\PhpPresentation\Autoloader::register();
require_once 'src/Common/Autoloader.php';
\PhpOffice\Common\Autoloader::register();


 use PhpOffice\PhpPresentation\IOFactory;



 use PhpOffice\PhpPresentation\Shape\Media;


  $oReader = IOFactory::createReader('PowerPoint2007');


    $readPPTX = $oReader->load(__DIR__ . '/sample.pptx');


 $oWriterPPTX = IOFactory::createWriter($readPPTX, 'PowerPoint2007');

 print_r($oWriterPPTX);

  //$oWriterPPTX->save(__DIR__ . "/output.pptx");

1 个答案:

答案 0 :(得分:0)

创建作家以将幻灯片转换为图像存在一个问题:https://github.com/PHPOffice/PHPPresentation/issues/224

但是该项目开放以拉取请求。