我正在尝试使用PHP将二进制数据作为图像加载到Word文档(Opem XML)中,以便以后用于XSLT。
将Word文档作为PHP ZipArchive打开后,我能够成功将图像加载到 word / media 文件夹中,并且还可以更新 word / document.xml 文件。但是我无法更新 word / rels / document.xml.rels 文件中的<Relationships/>
。
我已经交叉检查了xml的格式是否正确。
以下是我尝试使用的代码段,
$zipArchive=new ZipArchive();
$zipArchive->open($pathToDoc);
$imagePre="image";
$relIdPre="rId";
$index=100;
$nodeList = $reportDOM->getElementsByTagName("Node");
$i=0;
foreach($nodeList as $node) {
$divList = $node->getElementsByTagName("*");
foreach ($divList as $divNode) {
if (strncasecmp($divNode->nodeName, "wizChart", 8) == 0) {
$imgData=$divNode->getAttribute("src");
$imgData=base64_decode(substr($imgData,22));
$zipArchive->
addFromString("word/media/".$imagePre."".$index.".png",$imgData);
$fp=$zipArchive->getStream("word/_rels/document.xml.rels");
$contents='';
while (!feof($fp)) {
$contents .= fread($fp, 2);
}
$serviceOutput=new DOMDocument();
$serviceOutput->loadXML($contents);
$serviceList=$serviceOutput->getElementsByTagName("Relationships");
$element=$serviceOutput->createElement("Relationship");
$element->setAttribute("Id",$relIdPre."".$index);
$element->setAttribute("Type","http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");
$element->setAttribute("Target","word/media/".$imagePre."".$index.".png");
foreach ($serviceList as $serviceNode) {
$serviceNode->appendChild($element);
}
$zipArchive->addEmptyDir("word/_rels/");
$zipArchive->addFromString("word/_rels/document.xml.rels", $serviceOutput->saveXML());
$index++;
}
}
}
$zipArchive->close();
有人能说出我可能做错了吗?
答案 0 :(得分:0)
您在添加PNG时也添加了新的内容类型,因此您需要在[Content_Types] .xml中进行设置。有关详细信息,请参阅Is it possible to add some data to a Word document?。