在 PHP 中将 PPT 转换为 PNG 时出现致命错误

发布于 2024-12-25 13:13:47 字数 828 浏览 0 评论 0原文

我想用 PHP 将 PPT 转换为 PNG。我编写了以下代码来解决问题:

$powerpnt = new COM("PowerPoint.Application") or die('could not create the powerpoint instance');
$powerpnt->Visible = True;

$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"])));

$FileName = "MyPP";

$powerpnt->Presentations->Open("D:\\MySlide.ppt"); /* This is line #16 */

$powerpnt->ActivePresentation->SaveAs($strPath."/".$FileName,17);

$powerpnt->Quit;
$powerpnt = null;

但出现以下致命错误:

致命错误:未捕获异常“com_exception”,消息为“来源:” Microsoft Office PowerPoint 2007
说明: PowerPoint 无法打开该文件。”在 C:\wamp\www\ppt2jpg\ppt2jpg.php:16 堆栈跟踪: #0 C:\wamp\www\ppt2jpg\ppt2jpg.php(16): 变体->Open('D:\MySlide.ppt' ) #1 {main} 在第 16 行 C:\wamp\www\ppt2jpg\ppt2jpg.php 中抛出

我该如何解决这个问题?

提前致谢。

I want to convert PPT to PNG with PHP. I wrote the following piece of code to solve the problem:

$powerpnt = new COM("PowerPoint.Application") or die('could not create the powerpoint instance');
$powerpnt->Visible = True;

$strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"])));

$FileName = "MyPP";

$powerpnt->Presentations->Open("D:\\MySlide.ppt"); /* This is line #16 */

$powerpnt->ActivePresentation->SaveAs($strPath."/".$FileName,17);

$powerpnt->Quit;
$powerpnt = null;

But I got the following Fatal error:

Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Microsoft Office PowerPoint 2007<br/><b>Description:</b> PowerPoint could not open the file.' in C:\wamp\www\ppt2jpg\ppt2jpg.php:16 Stack trace: #0 C:\wamp\www\ppt2jpg\ppt2jpg.php(16): variant->Open('D:\MySlide.ppt') #1 {main} thrown in C:\wamp\www\ppt2jpg\ppt2jpg.php on line 16

How can I solve this problem?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文