How to use PHP & PowerPoint - Export/Convert PPT To WMF Format The Learn / Tutorial / Sctipts php programming how to using PHP Create PowerPoint and Export/Convert PPT To WMF Format
ShotDev Focus:
- PHP & Create PowerPoint and Export/Convert PPT To WMF Format
Example
php_ppt_to_wmf.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,15); //$ppApp->ActivePresentation->SaveAs(realpath($FileName),15); $ppApp->Quit; $ppApp = null; ?> PowerPoint Created to Folder <b><?=$FileName?></b> </body> </html>
Create a php file and save to path root-path/myphp/
Run
http://localhost/myphp/php_ppt_to_wmf.php
Screenshot