Home > Article > Backend Development > PHP calls the com component to convert ppt to pictures
PHP calls the com component to convert ppt to pictures.
Needs to be enabled in php.ini
<?php $powerpnt = new COM("powerpoint.application") or die("Unable to instantiate Powerpoint"); $file='1.ppt'; echo realpath($file); $addr = $_SERVER['DOCUMENT_ROOT'].'/ppt/1.ppt'; echo $addr; $presentation = $powerpnt->Presentations->Open($addr, false, false, false) or die("Unable to open presentation"); $presentation->Fonts->Replace('黑体','幼圆'); $presentation->Fonts->Replace('MS Gothic','幼圆'); $presentation->Fonts->Replace('方正粗倩简体','幼圆'); $presentation->Fonts->Replace('方正小标宋简体','幼圆'); $presentation->Fonts->Replace('Arial Black','幼圆'); $presentation->Fonts->Replace('华文中宋','幼圆'); $presentation->Fonts->Replace('Arial Unicode MS','幼圆'); $presentation->Fonts->Replace('方正细圆简体','幼圆'); $presentation->Fonts->Replace('Times New Roman','幼圆'); foreach($presentation->Fonts as $c) { echo $c->name."<br />"; //echo $c->Replace('',''); } foreach($presentation->Slides as $slide) { $slideName = "Slide_" . $slide->SlideNumber; $uploadsFolder = 'iii'; $exportFolder = realpath($uploadsFolder); $slide->Export($exportFolder."//".$slideName.".jpg", "jpg", "1920", "1080"); } $presentation->Close(); $powerpnt->Quit(); $powerpnt = null; ?>
When running on win7, there is no problem. However, when running on 2008, an error occurs. There is an exception called unknown. ..
Solution:
cmd -》 dcomcnfg
##
The above is the detailed content of PHP calls the com component to convert ppt to pictures. For more information, please follow other related articles on the PHP Chinese website!