文档彩票走势图>>Spire.Doc系列教程>>Spire.Doc系列教程(25):更改图片大小并添加题注
Spire.Doc系列教程(25):更改图片大小并添加题注
更多资源查看:Spire.XLS工作表教程 | Spire.Doc系列教程 | Spire.PDF系列教程
Spire.Doc for .NET是一个专业的Word .NET库,设计用于帮助开发人员高效地开发创建、阅读、编写、转换和打印任何来自.NET( C#, VB.NET, ASP.NET)平台的Word文档文件的功能。
本系列教程将为大家带来Spire.Doc for .NET在使用过程中的各类实际操作,本篇文章介绍了如何更改图片大小并添加题注。
C# 修改 Word 文档中图片的大小
在Word中我们可以对插入到文档中的图片的大小进行调整,使得图片与文章更加协调、美观。接下来将介绍如何使用Spire.Doc和C#来调整Word文档中图片的大小。
以下是使用的示例文档的截图:
//加载Word文档 Document document = new Document("Input.docx"); //获取第一个section Section section = document.Sections[0]; //获取第一个段落 Paragraph paragraph = section.Paragraphs[0]; //调整段落中图片的大小 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 中添加和删除题注
题注是指对象下方(或上方)的一行简短文字,用于描述该对象。在Word中使用题注功能可以保证文档中图片、表格或图表等项目能够有序地自动编号。如果移动、插入或删除带题注的项目时,Word 可以自动更新。接下来将详细介绍如何使用Spire.Doc来添加和删除题注。
添加题注
//实例化Document对象 Document document = new Document(); //添加一个Section Section s = document.AddSection(); //添加一个段落并在其中添加图片 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); //另加一个段落进行同样的操作 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);
删除题注
//加载刚才的结果文档 Document doc = new Document(); doc.LoadFromFile("caption.docx"); //查找然后获取第一个题注 TextSelection[] slcs = doc.FindAllString("Spire.Doc Logo_插 图", true, true); TextRange tr=slcs[0].GetAsOneRange(); Paragraph para= tr.OwnerParagraph; //删除其所在的段落 doc.Sections[0].Paragraphs.Remove(para); //更新域, 发现第二张插图的序号现在更新为1了 doc.IsUpdateFields = true; doc.SaveToFile("deleteCaption.docx",FileFormat.Docx2010);
*想要购买Spire.Doc正版授权的朋友可以点击哦~~