执行以下代码以将图像添加到单元格:
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(byteArrayOriginalStream, true))
{
using (Stream imageStream = new MemoryStream())
{
using (FileStream tempStream = new FileStream("C:\Images\xxxx Critical.jpg", FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
tempStream.CopyTo(imageStream);
}
ImagePart imagePart = wordDoc.MainDocumentPart.AddImagePart(ImagePartType.Jpeg);
imageStream.Seek(0, SeekOrigin.Begin);
imagePart.FeedData(imageStream);
pictureCell.RemoveAllChildren();
AddImageToCell(pictureCell, wordDoc.MainDocumentPart.GetIdOfPart(imagePart));
}
wordDoc.MainDocumentPart.Document.Save();
//copy the bytearraystream to outputfilestream
byteArrayOriginalStream.Seek(0, SeekOrigin.Begin);
byteArrayOriginalStream.CopyTo(outputStream);
}
然后,这会在传递给服务的目标网址中的WCF服务中创建一个word文档,但是,word文档始终显示“我们很抱歉。我们无法打开{nameoffile} .docx,因为我们发现了一个问题使用它的内容,如果按下确定,请参阅红色x,“此图像无法显示”。
在WCF服务中创建文档导致此问题,不应该是因为没有返回消息而是创建文件。
jpg文件大小只有32kb所以不会想到这个问题。
如何显示图像?
如果存在
的问题,则下面是AddImageToCell代码 }
private static void AddImageToCell(TableCell cell, string relationshipId)
{
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 = "New Bitmap Image.jpg"
},
new PIC.NonVisualPictureDrawingProperties()),
new PIC.BlipFill(
new A.Blip(
new A.BlipExtensionList(
new A.BlipExtension()
{
Uri = "{28A0092B-C50C-407E-A947-70E740481C1C}"
})
)
{
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 }))
)
{ Uri = "http://schemas.openxmlformats.org/drawingml/2006/picture" })
)
{
DistanceFromTop = (UInt32Value)0U,
DistanceFromBottom = (UInt32Value)0U,
DistanceFromLeft = (UInt32Value)0U,
DistanceFromRight = (UInt32Value)0U
});
cell.Append(new Paragraph(new Run(element)));
}
答案 0 :(得分:0)
我设法重新创建类似的场景,并在使用流打开时将插入的图像出错,然后再将结果保存到流中。
问题是与图像部分的关系未正确保存在文档中。经过一些研究后我发现this post,其中提到关系在文档关闭时保存。 在您的代码中,文档流将在文档关闭之前复制到生成的流中。这似乎是问题的原因。
有几种方法可以解决这个问题。您可以尝试:
将文档复制移出文档打开的using
语句:
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(byteArrayOriginalStream, true))
{
//...
}
byteArrayOriginalStream.Seek(0, SeekOrigin.Begin);
byteArrayOriginalStream.CopyTo(outputStream);
或
explicilty在复制前调用文档实例上的Close()
方法:
using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(byteArrayOriginalStream, true))
{
//...
wordDoc.MainDocumentPart.Document.Save();
wordDoc.Close();
//copy the bytearraystream to outputfilestream
byteArrayOriginalStream.Seek(0, SeekOrigin.Begin);
byteArrayOriginalStream.CopyTo(outputStream);
}
如果这不能解决问题,或者您有任何其他问题,请不要犹豫,问:)。