文档彩票走势图>>Aspose中文文档>>将图像插入 Word 文档
将图像插入 Word 文档
Aspose.Words是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。
使用 Aspose.WordsDocumentBuilder是一个与文档关联的功能强大的类,允许从头开始构建动态文档或向现有文档添加新元素。它提供了插入文本、段落、列表、表格、图像和其他内容的方法,以及字体、段落、部分格式和其他内容的规范。
DocumentBuilder 补充了 Aspose.Words 文档对象模型 (DOM) 中可用的类和方法,以简化最常见的文档构建任务,例如插入文本、表格、字段和超链接。
以下代码示例演示如何将图像插入到文档中的指定位置和尺寸:
// For complete examples and data files, please go to //github.com/aspose-words/Aspose.Words-for-.NET Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.InsertImage(dataDir + "Watermark.png", RelativeHorizontalPosition.Margin, 100, RelativeVerticalPosition.Margin, 100, 200, 100, WrapType.Square); dataDir = dataDir + "DocumentBuilderInsertFloatingImage_out.doc"; doc.Save(dataDir);
点击复制
使用 Open XML SDK
需要添加的命名空间:
using System.IO; using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml.Wordprocessing; using NUnit.Framework; using A = DocumentFormat.OpenXml.Drawing; using DW = DocumentFormat.OpenXml.Drawing.Wordprocessing; using Paragraph = DocumentFormat.OpenXml.Wordprocessing.Paragraph; using PIC = DocumentFormat.OpenXml.Drawing.Pictures; using Run = DocumentFormat.OpenXml.Wordprocessing.Run;
点击复制
以下代码示例演示如何使用主函数InsertAPicture和子函数AddImageToBody将图像插入到 Word 文档的正文部分:
public static void InsertPictureInWordDocumentFeature() { using (WordprocessingDocument wordprocessingDocument = WordprocessingDocument.Create(ArtifactsDir + "Insert picture - OpenXML.docx", WordprocessingDocumentType.Document)) { MainDocumentPart mainPart = wordprocessingDocument.MainDocumentPart; ImagePart imagePart = mainPart.AddImagePart(ImagePartType.Jpeg); using (FileStream stream = new FileStream(MyDir + "Aspose.Words.png", FileMode.Open)) { imagePart.FeedData(stream); } AddImageToBody(wordprocessingDocument, mainPart.GetIdOfPart(imagePart)); } } private static void AddImageToBody(WordprocessingDocument wordDoc, string relationshipId) { // Define the reference of the image. 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 = 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 = 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 = "//schemas.openxmlformats.org/drawingml/2006/picture" }) ) { DistanceFromTop = 0U, DistanceFromBottom = 0U, DistanceFromLeft = 0U, DistanceFromRight = 0U, EditId = "50D07946" }); // Append the reference to body, the element should be in a Run. wordDoc.MainDocumentPart.Document.Body.AppendChild(new Paragraph(new Run(element))); }
点击复制