图像大小存储在使用图形的位置(因为您可以以不同的大小多次使用相同的图形),在与使用图像的位置一致的 a:graphic 标记中。与之前一样,这里的数据不再指向关系 ID。
关系列表位于文件的顶部,您找到的其中一个将具有“图像”类型。关系的属性将是目标的名称(例如 media/image1.jpeg)。这是一个指向图像二进制文件的链接,稍后将位于 pkg:part/pkg:binaryData 元素中。
它看起来有点像这样:
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Id="rId8" Target="media/image1.jpeg" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" />
.. other relationships
</Relationships>
.. lots more document
<pkg:part pkg:name="/word/media/image1.jpeg" pkg:contentType="image/jpeg" pkg:compression="store">
<pkg:binaryData>/9j/7QAsUGhvdG9zaG9wIDMuMAA....blah
</pkg:part>
.. lots more document
<w:drawing>
<wp:inline distT="0" distB="0" distL="0" distR="0">
<wp:extent cx="2266950" cy="1543050"/>
<wp:effectExtent l="19050" t="0" r="0" b="0"/>
<wp:cNvGraphicFramePr>
<a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
<pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
<a:blip r:embed="rId8" cstate="print"/>
<a:ext cx="2266950" cy="1543050"/>
.. lots more document