在 JavaScript 中将 DOC转换为PDF

用于将DOC转换为PDF的高速Node.js库

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

查看代码片段

在 JavaScript 中将 DOC 转换为 PDF

对于寻求将 DOC 转换为 PDF 的无缝解决方案的 JavaScript 开发人员, Aspose.Words for Node.js via .NET 提供了直观且直接的文件转换 API。我们的解决方案允许 JavaScript 开发人员轻松地将文件从一种格式转换为另一种格式,使其成为自动化文件转换任务不可或缺的工具。

无论您使用 DOC、PDF 还是其他文件格式, Aspose.Words for Node.js via .NET 都能涵盖所有这些格式并确保最高质量的结果。立即测试 JavaScript 代码如何与您的 DOC 文件配合使用。

在 JavaScript 中将 DOC 保存为 PDF

以下示例演示了如何仅使用几行 JavaScript 代码将 DOC 转换为 PDF。首先在 JavaScript 项目中包含Aspose.Words命名空间。接下来,指定输入文件的路径并创建一个Document对象来加载 DOC 内容。然后,您需要指定 PDF 输出文件的路径,并使用 save() 方法将结果保存为 PDF。转换API将根据指定的文件扩展名确定输出文件格式。

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

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

如何在 JavaScript 中将 DOC 转换为 PDF

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

JavaScript库将DOC转换为PDF

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.

其他支持的DOC转换

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

5%

订阅 Aspose 产品更新

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

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