我需要在.docx上计算页数 使用以下功能执行此操作非常简单:
function getNumPages($filename)
{
$zip = new ZipArchive();
if($zip->open($filename) === true)
{
if(($index = $zip->locateName('docProps/app.xml')) !== false)
{
$data = $zip->getFromIndex($index);
$zip->close();
$xml = new SimpleXMLElement($data);
return $xml->Pages;
}
$zip->close();
}
return false;
}
但首先我需要更改所有文档的字体类型和大小。这该怎么做?谢谢。