プログラムでドキュメントをある形式から別の形式に変換する必要がありますか? 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.