1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?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);
- }
- }
|