How to use PHP & PowerPoint - Export/Convert PPT To JPG Format The Learn / Tutorial / Sctipts php programming how to using PHP Create PowerPoint and Export/Convert PPT To JPG Format
ShotDev Focus:
- PHP & Create PowerPoint and Export/Convert PPT To JPG Format
Example
php_ppt_to_jpg.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,17); //'*** 18=PNG, 19=BMP **'
//$ppApp->ActivePresentation->SaveAs(realpath($FileName),17);
$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_jpg.php
Screenshot


