Converting Excel to PDF Files in PHP
Contents
[
Hide
]
Aspose.Cells - Converting Excel to PDF Files
To convert Excel to Pdf file using Aspose.Cells for Java in PHP, simply invoke excel_to_pdf() method of Converter module.
PHP Code
$saveFormat = new SaveFormat();
$workbook = new Workbook($dataDir . "Book1.xls");
//Save the document in PDF format
$workbook->save($dataDir . "OutBook1.pdf", $saveFormat->PDF);
Download Running Code
Download Converting Excel to PDF Files (Aspose.Cells) from any of the below mentioned social coding sites: