Spire.Doc系列教程(25):更改圖片大小并添加題注
更多資源查看:Spire.XLS工作表教程 | Spire.Doc系列教程 | Spire.PDF系列教程
Spire.Doc for .NET是一個(gè)專業(yè)的Word .NET庫(kù),設(shè)計(jì)用于幫助開(kāi)發(fā)人員高效地開(kāi)發(fā)創(chuàng)建、閱讀、編寫(xiě)、轉(zhuǎn)換和打印任何來(lái)自.NET( C#, VB.NET, ASP.NET)平臺(tái)的Word文檔文件的功能。
本系列教程將為大家?guī)?lái)Spire.Doc for .NET在使用過(guò)程中的各類實(shí)際操作,本篇文章介紹了如何更改圖片大小并添加題注。
C# 修改 Word 文檔中圖片的大小
在Word中我們可以對(duì)插入到文檔中的圖片的大小進(jìn)行調(diào)整,使得圖片與文章更加協(xié)調(diào)、美觀。接下來(lái)將介紹如何使用Spire.Doc和C#來(lái)調(diào)整Word文檔中圖片的大小。
以下是使用的示例文檔的截圖:
//加載Word文檔 Document document = new Document("Input.docx"); //獲取第一個(gè)section Section section = document.Sections[0]; //獲取第一個(gè)段落 Paragraph paragraph = section.Paragraphs[0]; //調(diào)整段落中圖片的大小 foreach (DocumentObject docObj in paragraph.ChildObjects) { if (docObj is DocPicture) { DocPicture picture = docObj as DocPicture; picture.Width = 50f; picture.Height = 50f; } } //保存文檔 document.SaveToFile("ResizeImages.docx");
C# Word 中添加和刪除題注
題注是指對(duì)象下方(或上方)的一行簡(jiǎn)短文字,用于描述該對(duì)象。在Word中使用題注功能可以保證文檔中圖片、表格或圖表等項(xiàng)目能夠有序地自動(dòng)編號(hào)。如果移動(dòng)、插入或刪除帶題注的項(xiàng)目時(shí),Word 可以自動(dòng)更新。接下來(lái)將詳細(xì)介紹如何使用Spire.Doc來(lái)添加和刪除題注。
添加題注
//實(shí)例化Document對(duì)象 Document document = new Document(); //添加一個(gè)Section Section s = document.AddSection(); //添加一個(gè)段落并在其中添加圖片 Paragraph par1 = s.AddParagraph(); par1.Format.AfterSpacing = 10; DocPicture pic1 = par1.AppendPicture(Image.FromFile(@"logo1.png")); pic1.Height = 100; pic1.Width = 120; //在圖片上添加題注 CaptionNumberingFormat format = CaptionNumberingFormat.Number; pic1.AddCaption("Spire.Doc Logo_插 圖", format, CaptionPosition.AfterImage); //另加一個(gè)段落進(jìn)行同樣的操作 Paragraph par2 = s.AddParagraph(); DocPicture pic2 = par2.AppendPicture(Image.FromFile(@"logo2.png")); pic2.Height = 100; pic2.Width = 120; pic2.AddCaption("Spire.Doc Logo_插 圖", format, CaptionPosition.AfterImage); //更新域并保存文檔 document.IsUpdateFields = true; document.SaveToFile("caption.docx", FileFormat.Docx);
刪除題注
//加載剛才的結(jié)果文檔 Document doc = new Document(); doc.LoadFromFile("caption.docx"); //查找然后獲取第一個(gè)題注 TextSelection[] slcs = doc.FindAllString("Spire.Doc Logo_插 圖", true, true); TextRange tr=slcs[0].GetAsOneRange(); Paragraph para= tr.OwnerParagraph; //刪除其所在的段落 doc.Sections[0].Paragraphs.Remove(para); //更新域, 發(fā)現(xiàn)第二張插圖的序號(hào)現(xiàn)在更新為1了 doc.IsUpdateFields = true; doc.SaveToFile("deleteCaption.docx",FileFormat.Docx2010);
*想要購(gòu)買Spire.Doc正版授權(quán)的朋友可以點(diǎn)擊"咨詢?cè)诰€客服"哦~~