需要以编程方式将 TIFF 图像转换为 Word?借助Aspose.Words for .NET,任何开发人员只需几行 C# 代码即可将 TIFF 转换为 Word 文档格式。
现代图像处理 C# API 从具有专业品质的 TIFF 图像创建 Word 文档。直接在浏览器中测试最高质量的 TIFF 到 Word 转换。强大的 C# 库允许将 TIFF 图像转换为几乎所有 Word 格式。
以下示例演示了如何在 C# 中将 TIFF 转换为 Word 文档格式。
按照简单的步骤将 TIFF 图像转换为 Word 文档格式。从本地驱动器读取 TIFF 文件,然后只需将其保存为文档格式,并通过 Word 文档扩展名指定所需的文件格式。对于 TIFF 读取和 Word 文档写入,您可以使用完全限定的文件名。
dotnet add package Aspose.Words
复制
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
builder.InsertImage("Input.tiff");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document("Input.tiff");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document("Input.tiff");
var saveOptions = new ImageSaveOptions(SaveFormat.docx);
for (int page = 0; page < doc.PageCount; page++)
{
saveOptions.PageSet = new PageSet(page);
doc.Save($"Output_{page + 1}.docx", saveOptions);
}
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
builder.InsertImage("Input.tiff");
doc.Save("Output.docx");
using Aspose.Words;
var doc = new Document();
var builder = new DocumentBuilder(doc);
var shape = builder.InsertImage("Input.tiff");
shape.GetShapeRenderer().Save("Output.docx", new ImageSaveOptions(SaveFormat.docx));
在您的系统上 "Aspose.Words for .NET" 有三个备选选项。请选择符合您需求的一种,并按照分步说明进行操作:
我们的产品是完全跨平台的,并支持所有主要的 .NET 实现:
由于 .NET 代码不依赖于底层硬件或操作系统,而只依赖于虚拟机,因此您可以自由地为 Windows、macOS、Android、iOS 和 Linux 开发任何类型的软件。只需确保您已安装相应版本的.NET Framework, .NET Core, Windows Azure, Mono或Xamarin即可。
我们建议使用 Microsoft Visual Studio、Xamarin 和 MonoDevelop 集成开发环境来创建C#, F#, VB.NET应用程序。
更多详细信息请参阅产品文档。