【发布时间】:2011-11-29 09:48:00
【问题描述】:
我一直在尝试一些新的东西,我需要从流中插入图像,但每次我尝试插入图像时都会破坏 word 文档,我使用的是 office 2010。
我有以下代码将图像添加到 word 文档中
private void AddImageToBody(WordprocessingDocument wordDoc, string relationshipId, string documentName)
{
var element = new Drawing(new DW.Inline(new DW.Extent { Cx = 990000L, Cy = 792000L }, new DW.EffectExtent
{
LeftEdge = 0L,
TopEdge = 0L,
RightEdge = 0L,
BottomEdge = 0L
},
new DW.DocProperties
{
Id = (UInt32Value)1U,
Name = "Picture 1"
}, new DW.NonVisualGraphicFrameDrawingProperties(new A.GraphicFrameLocks { NoChangeAspect = true }), new A.Graphic(new A.GraphicData(new PIC.Picture(new PIC.NonVisualPictureProperties(
new PIC.NonVisualDrawingProperties
{
Id = (UInt32Value)0U,
Name = documentName
}, new PIC.NonVisualPictureDrawingProperties()), new PIC.BlipFill(new A.Blip
{
Embed = relationshipId,
CompressionState =
A.BlipCompressionValues.Print
}, new A.Stretch(new A.FillRectangle())), new PIC.ShapeProperties(new A.Transform2D(new A.Offset { X = 0L, Y = 0L }, new A.Extents { Cx = 990000L, Cy = 792000L }), new A.PresetGeometry(
new A.AdjustValueList()) { Preset = A.ShapeTypeValues.Rectangle })))))
{
DistanceFromTop = (UInt32Value)0U,
DistanceFromBottom = (UInt32Value)0U,
DistanceFromLeft = (UInt32Value)0U,
DistanceFromRight = (UInt32Value)0U
});
wordDoc.MainDocumentPart.Document.Body.AppendChild(new Run(element));
}
感谢困惑
但这也无济于事,所以我将图像保存到一个文件夹并使用 Interop 中的 AddPicture 方法
【问题讨论】: