Help me i want to save excel in pdf format The code:
include_once 'Classes/PHPExcel.php';
/** PHPExcel_IOFactory */
require_once ('Classes/PHPExcel/IOFactory.php');
include_once ('Classes/PHPExcel/Writer/Excel2007.php');
include_once ('Classes/PHPExcel/Writer/PDF.php');
include_once ('Classes/PHPExcel/Writer/PDF/DomPDF.php');
$rendererName = PHPExcel_Settings::PDF_RENDERER_DOMPDF;
//$rendererLibrary = 'tcPDF5.9';
//$rendererLibrary = 'mPDF5.4';
$rendererLibrary = 'domPDF0.6.0beta3';
$rendererLibraryPath = '/' . $rendererLibrary;
$objPHPExcel->getActiveSheet()->setTitle('Orari');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'PDF');
$objWriter->setSheetIndex(0);
$objWriter->save('esp.pdf');
I want to save in pdf format, but when i try to save i have an error response from phpexcel:
Fatal error: Uncaught exception 'PHPExcel_Writer_Exception' with message 'Unable to load PDF Rendering library' in C:xampphtdocsfservClassesPHPExcelWriterPDFDomPDF.php:34 Stack trace: #0 C:xampphtdocsfservesportatore.php(190): include_once() #1 C:xampphtdocsfservindex.php(44): include('C:xampphtdocs...') #2 {main} thrown in C:xampphtdocsfservClassesPHPExcelWriterPDFDomPDF.php on line 34