Core code:
Copy the Code code as follows:
Preserveimages = true;
$html 2rtfcom->pagenumbers = 1;
$html 2RTFCOM->PAGENUMBERSALIGNH = 1;
$html 2RTFCOM->PAGENUMBERSALIGNV = 5;
$htmlFile = "a.html";
$rtfFile = "A.rtf";
$result = $html 2rtfcom->convertfile ($htmlFile, $rtfFile, "head", "foot");
Print ($result);
unset ($html 2RTFCom);
echo "Done";
?>
Problems you may encounter Fatal Error:class ' COM ' not found inxxx
Workaround:
• Copy the Php_com_dotnet.dll to the PHP root ext folder
php.ini Make sure that you have this statement
[Php_com_dotnet]
Extension=php_com_dotnet.dll
• Ensure that the COM + Event System service is turned on
http://www.bkjia.com/PHPjc/779159.html www.bkjia.com true http://www.bkjia.com/PHPjc/779159.html techarticle Core Code: Copy code code as follows:!--? php $html 2RTFCom = new COM ("Html2rtf. Converter "); $html 2RTFCom---preserveimages = true; $html 2rtfcom-pagenumbers = 1; $html 2rtfcom-pa ...