彩票走势图

logo E-iceblue中文文档
文档彩票走势图>>E-iceblue中文文档>>将文本环绕在图像周围

将文本环绕在图像周围


Spire.Doc for .NET是一款专门对 Word 文档进行操作的 .NET 类库。在于帮助开发人员无需安装 Microsoft Word情况下,轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档。拥有近10年专业开发经验Spire系列办公文档开发工具,专注于创建、编辑、转换和打印Word/PDF/Excel等格式文件处理,小巧便捷。在 C#、VB.NET 中从 Word 中提取图像。

Spire.Doc for.NET 最新下载

当我们将图像添加到word文档中时,我们当然希望将它准确地移动到我们想要使页面整洁美观的位置。借助 Spire.Doc,我们可以设置环绕样式来调整图像的位置。通常有七种环绕样式:In Line with Text、Square、Tight、Through、Top and Bottom、Behind the Text、In Front of Text,Spire.Doc 都支持。本文将向您展示如何在 C# 中将文本环绕在图像周围。步骤如下:

第 1 步创建一个新的 word 文档并从文件中加载文档。

Document document = new Document();
document.LoadFromFile("Sample.docx");

第 2 步为第一部分添加一个段落。

Paragraph paragraph = document.Sections[0].AddParagraph();

第 3 步在段落中添加图片。

DocPicture picture = paragraph.AppendPicture(Image.FromFile("image.jpg"));

第 4 步将文本环绕样式设置为方形。

picture.TextWrappingStyle = TextWrappingStyle.Square;

第 5 步将文本环绕类型设置为两者。

picture.TextWrappingType = TextWrappingType.Both;

第 6 步将文档保存到文件并进行处理。

document.SaveToFile(output,FileFormat.Docx);
System.Diagnostics.Process.Start(output);

图像周围扭曲文本的有效截图:

如何在 C# 中将文本环绕在图像周围

完整代码

using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
using System.Drawing;

namespace wrap_text_around_image
{
class Program
{
static void Main(string[] args)
{
Document document = new Document();
document.LoadFromFile("Sample.docx");
Paragraph paragraph = document.Sections[0].AddParagraph();

DocPicture picture = paragraph.AppendPicture(Image.FromFile("image.jpg"));
picture.TextWrappingStyle = TextWrappingStyle.Square;
picture.TextWrappingType = TextWrappingType.Both;
string output = "output.docx";
document.SaveToFile(output,FileFormat.Docx);
System.Diagnostics.Process.Start(output);

}

}
}

 以上便是如何在 C# 中将文本环绕在图像周围,如果您有其他问题也可以继续浏览本系列文章,获取相关教程,你还可以给我留言或者加入我们的官方技术交流群(767755948)


扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP