我正在尝试使用 PhpPresentationsample.pptx
使用他们文档中针对读者的简单说明来读取文件,我得到:
imagecreatefromstring(): Data is not in a recognized format
我检查了我是否安装了 PHP7.2-gd 以及所有其他依赖项。
我的代码:
require_once 'vendor/autoload.php';
use \PhpOffice\PhpPresentation\PhpPresentation;
use \PhpOffice\PhpPresentation\IOFactory;
use \PhpOffice\PhpPresentation\Style\Color;
use \PhpOffice\PhpPresentation\Style\Alignment;
$oReader = IOFactory::createReader('PowerPoint2007');
$data = $oReader->load(__DIR__ . '/sample.pptx');
var_dump($data);
有人可以帮我理解这个问题吗?