我有一个使用OpenXML处理的.docx
文档。我所做的任务之一是通过在原始文档中找到它的大小来替换和成像,并生成一个新的,应该大小正确。然而,在某些情况下并非如此。这个词似乎想忽略我的DPI设置,我不知道为什么。
例如,在查看XML时,我得到了一个带有以下内容的图像:
<wp:extent cx="4572000" cy="2971800" />
将EMU转换为具有我想要的300
DPI的像素,这应该会给我975
x 1500
像素的尺寸(即2971800 * 300 / 914400 = 975
和4572000 * 300 / 914400 = 1500
)。因此,我生成了我的图像,并将其推送到文档中,以代替原始图像。文档中的图像应该是3.25" x 5"
。但是,当我加载生成的文档并查看单词中的"大小和位置"时,它声称图像的原始大小是10.16"
x 15.62"
,并且在两个维度上都按比例缩小到32%
。文档中的打包图像确实是我想要的975
x 1500
,但Word似乎将其视为96
dpi(975/10.16 = 96
)。所以我的问题是,它为什么要这样做,我该如何阻止它?我已经明确地在BlipFill
上设置了DPI,但它似乎被忽略了。
以下是整个事情在XML文档中的样子:
<w:drawing xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
<wp:inline distT="0" distB="0" distL="0" distR="0" wp14:anchorId="1D5F6FCE" xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing" xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing">
<wp:extent cx="4572000" cy="2971800" />
<wp:effectExtent l="0" t="0" r="0" b="0" />
<wp:docPr id="2" name="Picture 2" title="work" />
<wp:cNvGraphicFramePr>
<a:graphicFrameLocks xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" noChangeAspect="1" />
</wp:cNvGraphicFramePr>
<a:graphic xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
<a:graphicData uri="http://schemas.openxmlformats.org/drawingml/2006/picture">
<pic:pic xmlns:pic="http://schemas.openxmlformats.org/drawingml/2006/picture">
<pic:nvPicPr>
<pic:cNvPr id="0" name="Picture 2" />
<pic:cNvPicPr>
<a:picLocks noChangeAspect="1" noChangeArrowheads="1" />
</pic:cNvPicPr>
</pic:nvPicPr>
<pic:blipFill dpi="300">
<a:blip r:embed="rId13" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
<a:extLst>
<a:ext uri="{28A0092B-C50C-407E-A947-70E740481C1C}">
<a14:useLocalDpi xmlns:a14="http://schemas.microsoft.com/office/drawing/2010/main" val="0" />
</a:ext>
</a:extLst>
</a:blip>
<a:srcRect />
<a:stretch>
<a:fillRect />
</a:stretch>
</pic:blipFill>
<pic:spPr bwMode="auto">
<a:xfrm>
<a:off x="0" y="0" />
<a:ext cx="4572000" cy="2971800" />
</a:xfrm>
<a:prstGeom prst="rect">
<a:avLst />
</a:prstGeom>
<a:noFill />
</pic:spPr>
</pic:pic>
</a:graphicData>
</a:graphic>
</wp:inline>
</w:drawing>
要生成所需的原始大小值,我认为您需要将图像二进制文件中的DPI值设置为300 DPI。
您提到的<pic:blipFill>
上的dpi
属性似乎仅在打印过程中或图像二进制文件没有DPI值时由Word使用。在任何情况下,它都不用于计算文档中的图像显示大小。Word很可能更喜欢存储在图像本身中的dpi值,如果它记录在那里的话。这可能值得用图像查看器或其他任何方法进行检查。通常,图像dpi默认值为72dpi。96是Windows下的系统"屏幕"dpi,这让我怀疑这是嵌入图像二进制文件中的dpi,尤其是如果它是由Windows应用程序生成的。
至于让图像在文档中以合适的大小显示,这是您想要的cx和cy值。如果你将<wp:extent/>
中的设置为你想要的大小,那么屏幕显示就可以了。然而,如果您希望它也以正确的大小打印出来,您还需要更改pic:spPr/a:xfrm/a:ext中的那些。
从你的问题听起来,它实际上以正确的大小出现,只是Word对话框中报告的原始大小不是预期值。我希望如果你在图像中设置了实际的图像dpi值,你会看到你想要的行为。