123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- class PHPExcel_Writer_PDF implements PHPExcel_Writer_IWriter
- {
-
- private $renderer = null;
-
- public function __construct(PHPExcel $phpExcel)
- {
- $pdfLibraryName = PHPExcel_Settings::getPdfRendererName();
- if (is_null($pdfLibraryName)) {
- throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined.");
- }
- $pdfLibraryPath = PHPExcel_Settings::getPdfRendererPath();
- if (is_null($pdfLibraryName)) {
- throw new PHPExcel_Writer_Exception("PDF Rendering library path has not been defined.");
- }
- $includePath = str_replace('\\', '/', get_include_path());
- $rendererPath = str_replace('\\', '/', $pdfLibraryPath);
- if (strpos($rendererPath, $includePath) === false) {
- set_include_path(get_include_path() . PATH_SEPARATOR . $pdfLibraryPath);
- }
- $rendererName = 'PHPExcel_Writer_PDF_' . $pdfLibraryName;
- $this->renderer = new $rendererName($phpExcel);
- }
-
- public function __call($name, $arguments)
- {
- if ($this->renderer === null) {
- throw new PHPExcel_Writer_Exception("PDF Rendering library has not been defined.");
- }
- return call_user_func_array(array($this->renderer, $name), $arguments);
- }
-
- public function save($pFilename = null)
- {
- $this->renderer->save($pFilename);
- }
- }
|