Node.jsでPDFに背景を追加する
次のコードスニペットは、Node.jsでAsposePdfAddBackgroundImage関数を使用してPDFページに背景画像を追加する方法を示しています。
Node.js環境で背景画像を追加するには、次のコードスニペットを確認してください。
CommonJS:
-
require
を呼び出し、asposepdfnodejs
モジュールをAsposePdf
変数としてインポートします。 -
背景画像を追加するPDFファイルの名前を指定します。
-
AsposePdf
をPromiseとして呼び出し、背景画像を追加する操作を実行します。成功した場合はオブジェクトを受け取ります。 -
関数AsposePdfAddBackgroundImageを呼び出します。
-
PDFファイルに背景画像を追加します。したがって、‘json.errorCode’が0の場合、操作の結果は"ResultAddBackgroundImage.pdf"に保存されます。json.errorCodeパラメータが0でない場合、そしてファイルにエラーが発生した場合、エラー情報は’json.errorText’に含まれます。
const AsposePdf = require('asposepdfnodejs');
const pdf_file = 'Aspose.pdf';
const background_file = 'Aspose.jpg';
AsposePdf().then(AsposePdfModule => {
/*PDFファイルに背景画像を追加し、"ResultBackgroundImage.pdf"として保存します*/
const json = AsposePdfModule.AsposePdfAddBackgroundImage(pdf_file, background_file, "ResultAddBackgroundImage.pdf");
console.log("AsposePdfAddBackgroundImage => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText);
});
ECMAScript/ES6:
-
asposepdfnodejs
モジュールをインポートします。 -
背景画像を追加するPDFファイルの名前を指定します。
-
AsposePdfモジュールを初期化します。成功した場合にオブジェクトを受け取ります。
-
関数 AsposePdfAddBackgroundImage を呼び出します。
-
PDFファイルに背景画像を追加します。したがって、‘json.errorCode’ が0の場合、操作の結果は “ResultAddBackgroundImage.pdf” に保存されます。json.errorCode パラメータが0でない場合、したがって、ファイルにエラーが表示される場合、エラー情報は ‘json.errorText’ に含まれます。
import AsposePdf from 'asposepdfnodejs';
const AsposePdfModule = await AsposePdf();
const pdf_file = 'Aspose.pdf';
const background_file = 'Aspose.jpg';
/*PDFファイルに背景画像を追加して "ResultBackgroundImage.pdf" を保存します*/
const json = AsposePdfModule.AsposePdfAddBackgroundImage(pdf_file, background_file, "ResultAddBackgroundImage.pdf");
console.log("AsposePdfAddBackgroundImage => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText);