在 JavaScript 中将 TIFF转换为Word

用于将TIFF转换为Word的高速Node.js库

使用Node.js以编程方式将 TIFF 转换为 Word。 探索Node.js的强大功能,实现高效且可扩展的 TIFF 到 Word 转换。

查看代码片段

使用 JavaScript 将 TIFF 转换为 Word

需要以编程方式将 TIFF 图像转换为 Word?借助Aspose.Words for Node.js via .NET,任何开发人员只需几行 JavaScript 代码即可将 TIFF 转换为 Word 文档格式。

现代图像处理 JavaScript API 从具有专业品质的 TIFF 图像创建 Word 文档。直接在浏览器中测试最高质量的 TIFF 到 Word 转换。强大的 JavaScript 库允许将 TIFF 图像转换为几乎所有 Word 格式。

在 JavaScript 中将 TIFF 保存为 Word 文档

以下示例演示了如何在 JavaScript 中将 TIFF 转换为 Word 文档格式。

按照简单的步骤将 TIFF 图像转换为 Word 文档格式。从本地驱动器读取 TIFF 文件,然后只需将其保存为文档格式,并通过 Word 文档扩展名指定所需的文件格式。对于 TIFF 读取和 Word 文档写入,您可以使用完全限定的文件名。

JavaScript代码示例将TIFF转换为DOCX格式
上传您要转换的文件
运行代码
从列表中选择目标格式
npm install @aspose/words
复制
const aw = require('@aspose/words');

var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)

builder.insertImage("Input.tiff")

doc.save("Output.docx")
const aw = require('@aspose/words'); var doc = new aw.Document("Input.tiff") doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document("Input.tiff") for (var page = 0; page < doc.pageCount; page++) { var extractedPage = doc.extractPages(page, 1); extractedPage.save(`Output_${page + 1}.docx`); } const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) builder.insertImage("Input.tiff") doc.save("Output.docx") const aw = require('@aspose/words'); var doc = new aw.Document() var builder = new aw.DocumentBuilder(doc) shape = builder.insertImage("Input.tiff") shape.getShapeRenderer().save("Output.docx", new aw.Saving.ImageSaveOptions(aw.SaveFormat.docx))
运行代码
在社交媒体上分享代码:

如何在 JavaScript 中将 TIFF 转换为 Word

  1. Aspose.Words for Node.js via .NET安装 Aspose.Words。
  2. 将库引用(导入库)添加到您的JavaScript项目。.
  3. 在JavaScript打开源TIFF文件。.
  4. 调用save()方法,传递带有Word扩展名的输出文件名。.
  5. TIFF转换的结果Word 。.

JavaScript库将TIFF转换为Word

We host our Node.js via .Net packages in NPM repositories. Please follow the step-by-step instructions on how to install "Aspose.Words for Node.js via .NET" to your developer environment.

System Requirements

This package is compatible with Node.js 14.17.0 or higher.

其他支持的TIFF转换

您可以将TIFF转换为许多其他文件格式:

5%

订阅 Aspose 产品更新

获取直接发送到您的邮箱的每月通讯和优惠。

© Aspose Pty Ltd 2001-2024. 版权所有。