Home >Backend Development >PHP Tutorial >A detailed introduction to how php converts ppt to pictures and how php calls com components.
PHP calls the com component to convert ppt to picture.
Needs to be enabled in php.ini
extension=php_com_dotnet.dll com.allow_dcom = true
The test code is as follows:
<?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; ?>
Run on win7, no problem, but an error occurs when placed on 2008, there is oneexceptionCall unknown...
##Solution: cmd -》dcomcnfg
The above is the detailed content of A detailed introduction to how php converts ppt to pictures and how php calls com components.. For more information, please follow other related articles on the PHP Chinese website!