我的要求是拆分ppt / pptx文件,然后合并特定的幻灯片。
我已经使用PHP COM将ppt / pptx文件成功分割成单独的幻灯片。现在我想使用一些PHP库加入/合并幻灯片。
但是,除了PHPPowerpoint之外似乎没有。
我可以使用PHPPowerpoint创建幻灯片并使用它添加文本节点/图像,但它无法读取现有的.ppt / pptx文件并创建合并输出。
还有其他方法吗?我会感激任何帮助。
编辑: 我能够合并幻灯片但不合适..背景颜色/排序顺序仍然缺失。请提供帮助,因为除此链接外,网上没有任何参考文献 -
http://msdn.microsoft.com/en-us/library/office/ff746640%28v=office.15%29.aspx
这是代码 -
//SET Max exec time
ini_set("max_execution_time",-1);
$directory = 'c:/ppt/slides/';
$files_list = array_diff(scandir($directory,SCANDIR_SORT_DESCENDING), array('..', '.')); //Get list of all files from the sub slides folder
//var_dump($files_list); die;
$ppt_new = new COM("powerpoint.application") or die("Unable to instantiate Powerpoint 2");
$ppt_new->Presentations->Add(true); //Create the new(merged) ppt
$dirpath = "C:/ppt/slides/";
$ppt_new->Presentations[1]->Slides->Add( 1, 1 );
foreach($files_list as $file) { //Loop through all slides to merge those
$powerpnt = new COM("powerpoint.application") or die("Unable to instantiate Powerpoint");
echo "Adding slide...";
echo $file_path1 = realpath($dirpath.$file);
$pres = $powerpnt->Presentations->Open($file_path1, false, false, false) or die("Unable to open the slide");
echo $count = (int)$pres->Slides->Count."<--SLIDES COUNT<br>";
$i=1;
foreach($pres->Slides as $slide)
{
try {
$pptLayout = $slide->CustomLayout;
// var_dump($pptLayout); die;
// $ppt_new->Presentations[1]->Slides[$i]->FollowMasterBackground = false;
// $ppt_new->Presentations[1]->Slides[$i]->Background = $slide->Background;
//$ppt_new->Presentations[1]->Slides->Layout = $pptLayout;
$ppt_new->Presentations[1]->Slides->InsertFromFile($file_path1, $i, $i, $i);
// $ppt_new->Presentations[1]->SaveAs("merged11.ppt");
// $ppt_new->Export("created.ppt", "ppt");
$i++;
}
catch(Exception $e)
{
echo 'Caught exception: ', $e->getMessage(), "\n";
}
}
}
//Save the merged presentation
$powerpnt->quit();
$ppt_new->Presentations[1]->SaveAs("c:\ppt\merged121.ppt");
$ppt_new->Presentations[1]->Close();
$ppt_new->quit();
echo "Done!";
任何人都可以运行代码并找出为什么背景不会出现在合并的幻灯片中吗? 谢谢。
答案 0 :(得分:0)
解决:
我按照此链接http://skp.mvps.org/pptxp001.htm并手动将VBA中的示例代码转换为PHP。基本上InsertFromFile()方法无法正常工作,所以我按照MSDN(http://msdn.microsoft.com/en-us/library/office/ff746640%28v=office.15%29.aspx)使用了Copy()和Paste()方法
答案 1 :(得分:0)
库cristal/pptx
可以完全完成您想做的事情。这是一个纯粹的PHP库,不依赖Powerpoint,可以读取现有的PPTX并按照原始格式操作幻灯片。
<?php
use Cristal\Presentation\PPTX;
$fooPPTX = new PPTX(__DIR__.'/asset/foo.pptx');
$barPPTX = new PPTX(__DIR__.'/asset/bar.pptx');
$fooPPTX->addSlides($barPPTX->getSlides());
$fooPPTX->saveAs(__DIR__.'/dist/result.pptx');