Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
This page describes how to convert documents to PDF in PHP using Aspose.Words.
Document to PDF Conversion Example
PHP Code
$dataDir = '.';
$comHelper = new \COM("Aspose.Words.ComHelper");
$doc = $comHelper->Open($dataDir."/Template.doc");
// Save the document in PDF format.
$doc->Save($dataDir . "/Doc2PdfSave Out.pdf");
print "Document converted to PDF successfully.\nFile saved at " . $dataDir . "Doc2PdfSave Out.pdf" . PHP_EOL;Download **Document to PDF Conversion Example (Aspose.Words)**fromany of the below mentioned social coding sites:
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.