HTML を Word に変換するシームレスなソリューションを求める JavaScript 開発者向けに、 Aspose.Words for Node.js via .NET 直感的で簡単なファイル変換 API を提供します。私たちのソリューションを使用すると、JavaScript 開発者はファイルをある形式から別の形式に簡単に変換できるため、ファイル変換タスクを自動化するために不可欠なツールになります。
HTML、Word、またはその他のファイル形式を使用しているかどうかに関係なく、 Aspose.Words for Node.js via .NET はそれらをすべてカバーし、最高品質の結果を保証します。 JavaScript コードが HTML ファイルでどのように動作するかを今すぐテストしてください。
次の例は、わずか数行の JavaScript コードを使用して HTML を Word に変換する方法を示しています。まず、 Aspose.Words名前空間を JavaScript プロジェクトに含めます。次に、入力ファイルへのパスを指定し、HTML コンテンツをロードするためのDocumentオブジェクトを作成します。次に、Word 出力ファイルへのパスを指定し、save() メソッドを使用して結果を Word として保存する必要があります。変換 API は、指定されたファイル拡張子に基づいて出力ファイル形式を決定します。
npm install @aspose/words
コピー
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.html")
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.html")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.html")
shape.getShapeRenderer().save("Output.docx", new aw.Saving.ImageSaveOptions(aw.SaveFormat.docx))
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.
HTMLは他の多くのファイル形式に変換できます。