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