cristal/pptx

v1.0.8 2024-02-29 16:18 UTC

README

Latest Stable Version GitHub issues GitHub license

Cristal PPTX 是一个 PHP 库,允许您操作 Powerpoint PPTX 文件中的幻灯片。复制另一个 pptx 中的幻灯片并使用 mustache 标签进行模板化。

🚀 使用 Composer 安装

composer require cristal/pptx

👀 快速查看

<?php

use Cristal\Presentation\PPTX;

require 'vendor/autoload.php';

$basePPTX = new PPTX(__DIR__.'/source/base.pptx');
$endPPTX = new PPTX(__DIR__.'/source/endslide.pptx');

$basePPTX->addSlides($endPPTX->getSlides());

$basePPTX->template([
    'materiel' => [
        'libelle' => 'Bonjour'
    ]
]);

$basePPTX->saveAs(__DIR__.'/dist/presentation.pptx');