2017 © Pedro Peláez
 

library phppowerpoint

PHPPowerPoint - Read, Create and Write Presentations documents in PHP

image

cleverape/phppowerpoint

PHPPowerPoint - Read, Create and Write Presentations documents in PHP

  • Wednesday, December 16, 2015
  • by CleverApe
  • Repository
  • 2 Watchers
  • 1 Stars
  • 144 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 291 Forks
  • 0 Open issues
  • 3 Versions
  • 30 % Grown

The README.md

PHPPowerPoint

Latest Stable Version Build Status Code Quality Code Coverage Total Downloads License, (*1)

PHPPowerPoint is a library written in pure PHP that provides a set of classes to write to different presentation file formats, i.e. Microsoft Office Open XML (OOXML or OpenXML) or OASIS Open Document Format for Office Applications (OpenDocument or ODF)., (*2)

PHPPowerPoint is an open source project licensed under the terms of LGPL version 3. PHPPowerPoint is aimed to be a high quality software product by incorporating continuous integration and unit testing. You can learn more about PHPPowerPoint by reading the Developers' Documentation and the API Documentation., (*3)

Read more about PHPPowerPoint:, (*4)

Features

  • Create an in-memory presentation representation
  • Set presentation meta data (author, title, description, etc)
  • Add slides from scratch or from existing one
  • Supports different fonts and font styles
  • Supports different formatting, styles, fills, gradients
  • Supports hyperlinks and rich-text strings
  • Add images with different styles (positioning, rotation, shadow)
  • Set printing options (header, footer, page margins, paper size, orientation)
  • Output to different file formats: PowerPoint 2007 (.pptx), OpenDocument Presentation (.odp), Serialized Presentation)
  • ... and lots of other things!

Requirements

PHPPowerPoint requires the following:, (*5)

Installation

It is recommended that you install the PHPPowerPoint library through composer. To do so, add the following lines to your composer.json., (*6)

{
    "require": {
       "phpoffice/phppowerpoint": "dev-master"
    }
}

Alternatively, you can download the latest release from the releases page. In this case, you will have to register the autoloader. Register autoloading is required only if you do not use composer in your project., (*7)

require_once 'path/to/PhpPowerpoint/src/PhpPowerpoint/Autoloader.php';
\PhpOffice\PhpPowerpoint\Autoloader::register();

Getting started

The following is a basic usage example of the PHPPowerPoint library., (*8)

require_once 'src/PhpPowerpoint/Autoloader.php';
\PhpOffice\PhpPowerpoint\Autoloader::register();

$objPHPPowerPoint = new PhpPowerpoint();

// Create slide
$currentSlide = $objPHPPowerPoint->getActiveSlide();

// Create a shape (drawing)
$shape = $currentSlide->createDrawingShape();
$shape->setName('PHPPowerPoint logo')
      ->setDescription('PHPPowerPoint logo')
      ->setPath('./resources/phppowerpoint_logo.gif')
      ->setHeight(36)
      ->setOffsetX(10)
      ->setOffsetY(10);
$shape->getShadow()->setVisible(true)
                   ->setDirection(45)
                   ->setDistance(10);

// Create a shape (text)
$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 PHPPowerPoint!');
$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");

More examples are provided in the samples folder. You can also read the Developers' Documentation and the API Documentation for more detail., (*9)

Contributing

We welcome everyone to contribute to PHPPowerPoint. Below are some of the things that you can do to contribute:, (*10)

The Versions

16/12 2015

dev-master

9999999-dev http://phpoffice.github.io

PHPPowerPoint - Read, Create and Write Presentations documents in PHP

  Sources   Download

LGPL

The Requires

  • php >=5.3.0
  • ext-xml *
  • ext-zip *

 

The Development Requires

php powerpoint pptx libreoffice ppt odp presentations

23/10 2014

dev-develop

dev-develop http://phpoffice.github.io

PHPPowerPoint - Read, Create and Write Presentations documents in PHP

  Sources   Download

LGPL

The Requires

  • php >=5.3.0
  • ext-xml *
  • ext-zip *

 

The Development Requires

php powerpoint pptx libreoffice ppt odp presentations

22/07 2014

0.2.0

0.2.0.0 http://phpoffice.github.io

PHPPowerPoint - Read, Create and Write Presentations documents in PHP

  Sources   Download

LGPL

The Requires

  • php >=5.3.0
  • ext-xml *
  • ext-zip *

 

The Development Requires

php powerpoint pptx libreoffice ppt odp presentations