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