JPG イメージをプログラムで Word に変換する必要がありますか? Aspose.Words for Node.js via .NETを使用すると、開発者はわずか数行の JavaScript コードで JPG を Word ドキュメント形式に変換できます。
最新の画像処理 JavaScript API は、プロ品質の JPG 画像から Word ドキュメントを作成します。最高品質の JPG から Word への変換をブラウザで直接テストします。強力な JavaScript ライブラリにより、JPG イメージをほぼすべての Word 形式に変換できます。
次の例は、JavaScript で JPG を Word ドキュメント形式に変換する方法を示しています。
簡単な手順に従って、JPG 画像を Word ドキュメント形式に変換します。ローカル ドライブから JPG ファイルを読み取り、Word ドキュメント拡張子で必要なファイル形式を指定してドキュメント形式で保存します。 JPG の読み取りと Word ドキュメントの書き込みの両方で、完全修飾ファイル名を使用できます。
npm install @aspose/words
コピー
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.jpg")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.jpg")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.jpg")
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.jpg")
doc.save("Output.docx")
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
shape = builder.insertImage("Input.jpg")
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.
JPGは他の多くのファイル形式に変換できます。