需要以编程方式将文档从一种格式转换为另一种格式吗?使用Aspose.Words for Node.js via .NET您只需使用几行 JavaScript 代码即可转换文件。
强大的 Node.js via .NET 转换 API 允许将文档转换为许多具有专业品质的流行格式:
以下示例演示如何转换 JavaScript 的文档。从本地驱动器加载文件,然后简单地保存它,在扩展名中指定所需的文件格式。对于输入和输出文件,您可以使用完全限定的文件名。输出内容和格式将与原始文档相同。
npm install @aspose/words
复制
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.docx")
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.docx")
doc.save("Output.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.docx")
shape.getShapeRenderer().save("Output.pdf", new aw.Saving.ImageSaveOptions(aw.SaveFormat.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.
This package is compatible with Node.js 14.17.0 or higher.