需要以編程方式將文檔從一種格式轉換為另一種格式嗎?使用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.