0

我尝试在 codeigniter 框架中安装 phppresentation 库。但是在 codeigniter 中不能使用命名空间。那么如何整合呢?

4

1 回答 1

1

这可能不是一个“最佳实践”示例,但我在PHPPresentation Packagist 页面上获得了“入门”示例,以便在 CI 3.1.3 中工作。

我正在使用 CI 手册中描述的默认方式来使用 composer。

应用程序和系统目录比根目录高一级。

composer.json 文件位于应用程序目录中。

从 packagist 页面剪切并粘贴到 composer.json 并运行composer update并将其保存到 application/vendor/phpoffice。

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

在创建的应用程序/库Ppt_stuff.php中。将“入门”示例剪切并粘贴到文件中。不得不添加类名和函数make_ppt。还修复了 setPath 和 Save 函数路径名称为realpath('.').

<?php defined('BASEPATH') OR exit('No direct script access allowed');

use PhpOffice\PhpPresentation\PhpPresentation;
use PhpOffice\PhpPresentation\IOFactory;
use PhpOffice\PhpPresentation\Style\Color;
use PhpOffice\PhpPresentation\Style\Alignment;

class Ppt_stuff {

  public function make_ppt() {

    $objPHPPowerPoint = new PhpPresentation();

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

// Create a shape (drawing)
    $shape = $currentSlide->createDrawingShape();
    $shape->setName('PHPPresentation logo')
        ->setDescription('PHPPresentation logo')
        ->setPath(realpath('.') . '/../application/vendor/phpoffice/phppresentation/samples/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 PHPPresentation!');
    $textRun->getFont()->setBold(true)
        ->setSize(60)
        ->setColor(new Color('FFE06B20'));

    $oWriterPPTX = IOFactory::createWriter($objPHPPowerPoint, 'PowerPoint2007');
    $oWriterPPTX->save(realpath('.') . "/downloads/sample.pptx");
    $oWriterODP = IOFactory::createWriter($objPHPPowerPoint, 'ODPresentation');
    $oWriterODP->save(realpath('.') . "/downloads/sample.odp");

  }

}

在根目录中创建 /downloads 目录。

将此添加到 Home 控制器。

public function use_presentation() {

   // load library
   $this->load->library('Ppt_stuff');
   // call make_ppt
   $this->ppt_stuff->make_ppt();
   return;

}

访问http://localhost/home/use_presentation并在 /downloads 中创建了 sample.pptx 和 sample.odp。

当我打开它们时,Powerpoint 2010 抱怨并提出修复它们。

于 2017-03-09T15:39:51.540 回答