如何在 codeigniter 中使用 MPDF 添加水印图像

How to add watermark Image using MPDF in codeigniter

here is the pdf image

我想使用 MPDF 将这种背景图像添加到我的 PDF 中。但我也想降低背景图像的不透明度。

试试这个-

$mpdf->SetWatermarkImage(
  'assets/dist/img/ExampleLogo1.png',
   0.3,                 // this for transparency
   array(x,y),      // Alignment
);