Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Convert Microsoft Excel file to PDF
PHP Code
$dataDir = '';
// Create Aspose.Cells helper object
$ptr = new \COM('Aspose.Cells.Interop.InteropHelper');
// Opening through path
// Creating a Workbook object and opening an Excel file using its file path
$workbook = $ptr->New("Aspose.Cells.Workbook", array($dataDir . '/Book1.xls'));
$ptr->Call($workbook, "Save", array($dataDir . "/outBook1.pdf"));
print "Conversion Completed" . PHP_EOL;
Download Excel to PDF Conversion (Aspose.Cells) from any of the social coding sites mentioned below:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.