动态地将Powerpoint转换为HTML

时间:2017-06-13 11:44:45

标签: php html powerpoint

我正在尝试将我网站用户上传的Powerpoint转换为HTML,以便其他人可以看到它们。

我使用的是跟随代码,但没有任何反应......

<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 = "Teste.pptx";  
$FileName = "MyPP/MyPPt";  

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

//*** Save Document ***//  
$ppApp->ActivePresentation->SaveAs($strPath."/".$FileName,14);  
//$ppApp->ActivePresentation->SaveAs(realpath($FileName),14);  

$ppApp->Quit;  
$ppApp = null;  
?>  
PowerPoint Created <a href="<?=$FileName?>.htm">Click here</a> to View.  
</body>  
</html>  

错误是:

在第7行的/home/webitcloud/public_html/PW/1617/weduc/Teste4/Index.php中找不到类'COM'

我的Powerpoint名称是Teste.pptx。

0 个答案:

没有答案