当我运行打击代码时:
/*** PPT to Image conversion ***/
$ppt_file = 'E:\wamp\www\temp/a.pptx';
$app = new COM("PowerPoint.application") or die("Unable to instantiate PowerPoint");
$app->Visible = true;
$app->Presentations->Open($ppt_file);
$app->Presentations[1]->SaveAs("E:/tmp/outdir",18);
$app->Presentations[1]->Close();
$app->Quit();
$app = null;
它给了我一个例外:
致命错误:未捕获的异常 'com_exception' 带有消息“来源: Microsoft Office PowerPoint 2007
描述: PowerPoint 无法打开文件。” 在 E:\wamp\www\temp\video_conversion.php:107 堆栈跟踪:#0 E:\wamp\www\temp\video_conversion.php(107): variant->Open('E:\wamp\www\tem ...') #1 {main} 在第 107 行的 E:\wamp\www\temp\video_conversion.php 中抛出
我无法弄清楚是什么问题。