• <menu id="w2i4a"></menu>
  • logo E-iceblue中文文檔

    文檔首頁>>E-iceblue中文文檔>>在 Word 中插入圖像

    在 Word 中插入圖像


    Spire.Doc for .NET是一款專門對(duì) Word 文檔進(jìn)行操作的 .NET 類庫。在于幫助開發(fā)人員無需安裝 Microsoft Word情況下,輕松快捷高效地創(chuàng)建、編輯、轉(zhuǎn)換和打印 Microsoft Word 文檔。擁有近10年專業(yè)開發(fā)經(jīng)驗(yàn)Spire系列辦公文檔開發(fā)工具,專注于創(chuàng)建、編輯、轉(zhuǎn)換和打印Word/PDF/Excel等格式文件處理,小巧便捷。下面我們將給您介紹如何在 Word 中插入圖像。

    Spire.Doc for.NET 最新下載

    Word 文檔中的圖像通常與文本內(nèi)容密切相關(guān)。與充滿文字的文檔相比,帶有圖像的文檔更具說明性和吸引力。在本文中,您將學(xué)習(xí)如何使用Spire.Doc for .NET以編程方式在 Word 文檔中插入圖像。通過這個(gè)專業(yè)的 Word 庫,您還可以設(shè)置圖像大小、位置以及環(huán)繞樣式。

    為 .NET 安裝 Spire.Doc

    首先,您需要添加 Spire.Doc for .NET 包中包含的 DLL 文件作為 .NET 項(xiàng)目中的引用。DLL 文件可以從此鏈接下載或通過NuGet安裝。

    
    
    
    
    PM> Install-Package Spire.Doc
    在 Word 文檔中插入圖像并設(shè)置其環(huán)繞樣式

    Spire.Doc for .NET 支持常見的環(huán)繞樣式,例如 In Line with Text、Square、Tight、Through、Top 和 Bottom、Behind the Text 以及 In Front of Text。以下是插入圖像然后設(shè)置其環(huán)繞樣式的詳細(xì)步驟。

    • 創(chuàng)建一個(gè)文檔實(shí)例。
    • 使用Document.LoadFromFile()方法加載示例 Word 文檔。
    • 使用Document.Sections[]屬性獲取 Word 文檔的第一部分。
    • 使用Section.Paragraphs[]屬性獲取該部分的指定段落。
    • 使用Paragraph.AppendPicture()方法加載圖像并在指定段落中插入圖像。
    • 使用DocPicture.TextWrappingType屬性設(shè)置圖像的環(huán)繞樣式。
    • 使用Document.SaveToFile()方法將文檔保存到另一個(gè)文件。

    【C?!?/span>

    using System.Drawing;
    using Spire.Doc;
    using Spire.Doc.Documents;
    using Spire.Doc.Fields;
    
    namespace WordImage
    {
    class ImageinWord
    {
    static void Main(string[] args)
    {
    //Create a Document instance
    Document document = new Document();
    
    //Load a sample Word document
    document.LoadFromFile("input.docx");
    
    //Get the first section
    Section section = document.Sections[0];
    
    //Get two specified paragraphs
    Paragraph para1 = section.Paragraphs[5];
    Paragraph para2 = section.Paragraphs[9];
    
    //Insert images in the specified paragraphs
    DocPicture Pic1 = para1.AppendPicture(Image.FromFile(@"C:\Users\Administrator\Desktop\pic1.jpg"));
    DocPicture Pic2 = para2.AppendPicture(Image.FromFile(@"C:\Users\Administrator\Desktop\pic2.png"));
    
    //Set wrapping styles to Square and Inline respectively
    Pic1.TextWrappingStyle = TextWrappingStyle.Square;
    Pic2.TextWrappingStyle = TextWrappingStyle.Inline;
    
    //Save the document to file
    document.SaveToFile("InsertImage.docx", FileFormat.Docx);
    }
    }
    }

    【VB.NET】

    Imports System.Drawing
    Imports Spire.Doc
    Imports Spire.Doc.Documents
    Imports Spire.Doc.Fields
    
    Namespace WordImage
    Class ImageinWord
    Private Shared Sub Main(ByVal args As String())
    
    'Create a Document instance
    Dim document As Document = New Document()
    
    'Load a sample Word document
    document.LoadFromFile("sample.docx")
    
    'Get the first section
    Dim section As Section = document.Sections(0)
    
    'Get two specified paragraphs
    Dim para1 As Paragraph = section.Paragraphs(5)
    Dim para2 As Paragraph = section.Paragraphs(9)
    
    'Insert images in the specified paragraphs
    Dim Pic1 As DocPicture = para1.AppendPicture(Image.FromFile("C:\Users\Administrator\Desktop\pic1.jpg"))
    Dim Pic2 As DocPicture = para2.AppendPicture(Image.FromFile("C:\Users\Administrator\Desktop\pic2.png"))
    
    ‘Set wrapping styles to Square and Inline respectively
    Pic1.TextWrappingStyle = TextWrappingStyle.Square
    Pic2.TextWrappingStyle = TextWrappingStyle.Inline
    
    'Save the document to file
    document.SaveToFile("InsertImage.docx", FileFormat.Docx)
    End Sub
    End Class
    End Namespace

    C#/VB.NET:在 Word 中插入圖像

    在 Word 文檔的指定位置插入圖像

    Spire.Doc for .NET 提供的DocPicture.Horizo ntalPositionDocPicture.VerticalPosition屬性允許您在指定位置插入圖像。詳細(xì)步驟如下。

    • 創(chuàng)建一個(gè)文檔實(shí)例。
    • 使用Document.LoadFromFile()方法加載示例 Word 文檔。
    • 使用Document.Sections[]屬性獲取 Word 文檔的第一部分。
    • 使用Section.Paragraphs[]屬性獲取該部分的指定段落。
    • 使用Paragraph.AppendPicture()方法加載圖像并將圖像插入到文檔中。
    • 使用DocPicture.HorizontalPositionDocPicture.VerticalPosition屬性設(shè)置圖像的水平和垂直位置。
    • 使用DocPicture.WidthDocPicture.Height屬性設(shè)置圖像的高度和寬度。
    • 使用DocPicture.TextWrappingType屬性設(shè)置圖像的環(huán)繞樣式。
    • 使用Document.SaveToFile()方法將文檔保存到另一個(gè)文件。

    【C#】

    using Spire.Doc;
    using Spire.Doc.Documents;
    using Spire.Doc.Fields;
    using System.Drawing;
    
    namespace InsertImage
    {
    class Program
    {
    static void Main(string[] args)
    {
    //Create a Document instance
    Document document = new Document();
    
    //Load a sample Word document
    document.LoadFromFile("input.docx");
    
    //Get the first section
    Section section = document.Sections[0];
    
    //Load an image and insert it to the document
    DocPicture picture = section.Paragraphs[0].AppendPicture(Image.FromFile(@"C:\Users\Administrator\Desktop\pic.jpg"));
    
    //Set the position of the image
    picture.HorizontalPosition = 90.0F;
    picture.VerticalPosition = 50.0F;
    
    //Set the size of the image
    picture.Width = 150;
    picture.Height = 150;
    
    //Set the wrapping style to Behind
    picture.TextWrappingStyle = TextWrappingStyle.Behind;
    
    // Save the document to file
    document.SaveToFile("Insert.docx", FileFormat.Docx);
    }
    }
    }

    【VB.NET】

    Imports Spire.Doc
    Imports Spire.Doc.Documents
    Imports Spire.Doc.Fields
    
    Namespace InsertImage
    Class Program
    Private Shared Sub Main(ByVal args As String())
    
    'Create a Document instance
    Dim document As Document = New Document()
    
    'Load a sample Word document
    document.LoadFromFile("input.docx")
    
    'Get the first section
    Dim section As Section = document.Sections(0)
    
    'Load an image and insert it to the document
    Dim picture As DocPicture = section.Paragraphs(0).AppendPicture(Image.FromFile("C:\Users\Administrator\Desktop\pic.jpg"))
    
    'Set the position of the image
    picture.HorizontalPosition = 90.0F
    picture.VerticalPosition = 50.0F
    
    'Set the size of the image
    picture.Width = 150
    picture.Height = 150
    
    ' Set the wrapping style to Behind
    picture.TextWrappingStyle = TextWrappingStyle.Behind
    
    ' Save the document to file
    document.SaveToFile("Insert.docx", FileFormat.Docx)
    End Sub
    End Class
    End Namespace

    C#/VB.NET:在 Word 中插入圖像

    以上便是如何在 Word 中插入圖像(C#/VB.NET),如果您有其他問題也可以繼續(xù)瀏覽本系列文章,獲取相關(guān)教程,你還可以給我留言或者加入我們的官方技術(shù)交流群。

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();