我尝试在codeigniter框架中安装phppresentation库。但是在codeigniter中无法使用命名空间。那么如何整合?
答案 0 :(得分:1)
这可能不是“最佳做法”示例,但我在PHPPresentation Packagist page上获得了“入门”示例,以便在CI 3.1.3中使用。
我正在使用CI手册中描述的默认方式来使用composer。
应用程序和系统dirs与root目录相比增加了一个级别。
composer.json文件位于应用程序目录中。
从packagist页面下面剪切粘贴到composer.json并运行composer update
,将其保存到application / vendor / phpoffice。
{
"require": {
"phpoffice/phppresentation": "dev-master"
}
}
在创建的{/ 1}}应用程序/库中。将“粘贴的入门”示例放入文件中。不得不添加类名和函数make_ppt。还使用Ppt_stuff.php
修复了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");
}
}
去http://localhost/home/use_presentation,它在/ downloads中创建了sample.pptx和sample.odp。
当我打开它们时,Powerpoint 2010抱怨并提出修复它们。