PPT到图像转换概念

时间:2013-12-22 06:00:14

标签: php html

我想在下面的代码中实现ppt到html幻灯片,但是这段代码只在localhost中工作,但是如果我放入我的cpanel服务器,它会显示“com”相关的错误。

我使用了以下代码

 $filepath= $_GET['File_name'];
    $ppApp = new COM("PowerPoint.Application");
    $ppApp->Visible = True;
    $strPath = realpath(basename(getenv($_SERVER["SCRIPT_NAME"]))); // C:/AppServ/www/myphp
    $FileName = "ppt_images";
    //$ppName = "MySlides.ppt";
    $ppName=$strPath."/MyPP/".$filepath;

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

但它只在localhost中工作。如果我在我的cpanel中使用此代码,则在“COM”行显示错误。

您可以在不使用COM的情况下建议任何其他代码。

0 个答案:

没有答案