PHP code example of phpoffice / phppowerpoint
1. Go to this page and download the library: Download phpoffice/phppowerpoint library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
phpoffice / phppowerpoint example snippets
\PhpOffice\PhpPresentation\Autoloader::register();
\PhpOffice\Common\Autoloader::register();
on\Autoloader::register();
Composer
e\PhpPresentation\IOFactory;
use PhpOffice \PhpPresentation \Style \Color ;
use PhpOffice \PhpPresentation \Style \Alignment ;
$objPHPPowerPoint = new PhpPresentation();
$currentSlide = $objPHPPowerPoint->getActiveSlide();
$shape = $currentSlide->createDrawingShape();
$shape->setName('PHPPresentation logo' )
->setDescription('PHPPresentation logo' )
->setPath('./resources/phppowerpoint_logo.gif' )
->setHeight(36 )
->setOffsetX(10 )
->setOffsetY(10 );
$shape->getShadow()->setVisible(true )
->setDirection(45 )
->setDistance(10 );
$shape = $currentSlide->createRichTextShape()
->setHeight(300 )
->setWidth(600 )
->setOffsetX(170 )
->setOffsetY(180 );
$shape->getActiveParagraph()->getAlignment()->setHorizontal( Alignment::HORIZONTAL_CENTER );
$textRun = $shape->createTextRun('Thank you for using PHPPresentation!' );
$textRun->getFont()->setBold(true )
->setSize(60 )
->setColor( new Color( 'FFE06B20' ) );
$oWriterPPTX = IOFactory::createWriter($objPHPPowerPoint, 'PowerPoint2007' );
$oWriterPPTX->save(__DIR__ . "/sample.pptx" );
$oWriterODP = IOFactory::createWriter($objPHPPowerPoint, 'ODPresentation' );
$oWriterODP->save(__DIR__ . "/sample.odp" );