JPG 画像を PDF ファイルにプログラムで変換する必要がありますか? Aspose.Words for Node.js via .NET JavaScript コードを数行使用するだけで JPG を PDF 形式に簡単に変換できます。
現代の画像処理 JavaScript APIが作成されます PDF から JPG 高速の画像。 JPG から PDF への変換の品質をテストします。強力な JavaScript ライブラリを使用すると、 JPG 画像を多くの一般的なドキュメント形式に変換できます。
次の例では、変換する方法を示し JPG へ PDF に JavaScript 。
簡単な手順に従って、 JPG 画像を PDF 形式に変換します。読む JPG その後、単純に名前を付けて保存、ローカルドライブから画像 PDF によって必要な文書フォーマットを指定し、 PDF 拡張子。 JPG 読み取りと PDF 書き込みの両方で、完全修飾ファイル名を使用できます。出力される PDF コンテンツは、元の JPG イメージと同じになります。
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.pdf")
const aw = require('@aspose/words');
var doc = new aw.Document("Input.jpg")
doc.save("Output.pdf")
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}.pdf`);
}
const aw = require('@aspose/words');
var doc = new aw.Document()
var builder = new aw.DocumentBuilder(doc)
builder.insertImage("Input.jpg")
doc.save("Output.pdf")
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.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.
JPGは他の多くのファイル形式に変換できます。