Forum


Replies: 3   Views: 189
Combining existing files
Topic closed:
Please note this is an old forum thread. Information in this post may be out-to-date and/or erroneous.
Every phppptx version includes new features and improvements. Previously unsupported features may have been added to newer releases, or past issues may have been corrected.
We encourage you to download the current phppptx version and check the Documentation available.

Posted by admin  · 23-08-2024 - 18:01

Hello,

A merging class is available in the current testing branch and will be included in the next stable release of phppptx (there's no release date). This new feature is fully tested and working.

If you purchase a license (Advanced or Premium), please send a message to contact[at]phpdocx.com and we'll send you the new class.

A sample merging PPTX files:

require_once 'classes/MergePptx.php';

$pptx = new MergePptx();
$pptx->merge(array('file1.pptx', 'file2.pptx', 'file3.pptx'), 'output_merged.pptx');

There's no limit on the number of PPTX files to be merged.

Regards.