9

当我运行打击代码时:

/*** 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 中抛出

我无法弄清楚是什么问题。

4

3 回答 3

4

这种问题是由于以下因素造成的。

  1. PHP.ini 设置
  2. 文件夹权限
  3. 服务器未启用允许打开
  4. 允许上传大小
于 2012-07-21T22:19:48.347 回答
3

在您的错误中,您会看到以下消息:PowerPoint could not open the file.' in E:\wamp\www\temp\video_conversion.php:107

PHP 用户是否有权访问该文件E:\wamp\www\temp/a.pptx

尝试更正你的斜线:E:\wamp\www\temp\a.pptx通常/指的是选项或参数。

归根结底,似乎是权限错误、位置问题或类似问题阻止了对该文件的访问。你能用fopenor打开文件file_get_contents吗?

于 2012-07-21T14:37:35.653 回答
2

用 com 类试试这个:

COM 类参考: - http://us2.php.net/manual/en/class.com.php

<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<?
    $ppApp = new COM("PowerPoint.Application");
    $ppApp->Visible = True;

    $strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp

    $ppName = "MySlides.ppt";
    $FileName = "MyPP";

    //*** Open Document ***//
    $ppApp->Presentations->Open(realpath($ppName));

    //*** Save Document ***//
    $ppApp->ActivePresentation->SaveAs($strPath."/".$FileName,17);  //'*** 18=PNG, 19=BMP **'
    //$ppApp->ActivePresentation->SaveAs(realpath($FileName),17);

    $ppApp->Quit;
    $ppApp = null;
?>
PowerPoint Created to Folder <b><?=$FileName?></b>
</body>
</html>

或者试试这个:

$powerpnt = new COM("powerpoint.application") or die("Unable to instantiate Powerpoint");

$presentation = $powerpnt->Presentations->Open(realpath($file), false, false, false) or die("Unable to open presentation");

foreach($presentation->Slides as $slide)

{

    $slideName = "Slide_" . $slide->SlideNumber;

    $exportFolder = realpath($uploadsFolder);

    $slide->Export($exportFolder."\\".$slideName.".jpg", "jpg", "600", "400");

}

$powerpnt->quit();
于 2012-07-27T03:21:22.800 回答