Postingan

Menampilkan postingan dari September, 2022

Cara menambahkan Image dan menambahkan text (watermark) di pdf existing pada codeigniter

Gambar
     Berikut saya ingin membuat cara add watermark text dan image ke dalam sebuah pdf di codeigniter dengan versi php 5 ke atas   Pertama download dahulu library fpdf.php dan  FPDI.php jika sudah buat file untuk code php   INDEX.PHP <?php require ( 'rotation.php' ); class PDF extends PDF_Rotate {     protected $_outerText1 ; // dynamic text     protected $_outerText2 ;     function setWaterText ( $txt1 = "" , $txt2 = "" )     {         $this -> _outerText1 = $txt1 ;         $this -> _outerText2 = $txt2 ;     }     function Header ()     {         //Put the watermark         $this -> SetFont ( 'Arial' , 'B' , 70 );         $this -> SetTextColor ( 0 , 50 , 50 );         $this -> SetAlpha ( 0.5 );         $this -> RotatedText ( 55 , 180 , $this -> _outerText1 , 45 );         $this -> RotatedText ( 75 , 190 , $this -> _outerText2 , 45 );         // $this->Image('fpdf/myoldfhoto.jpg', 0, 0);