Search
 
SCRIPT & CODE EXAMPLE
 

PHP

How to add watermark in FPDF PHP - Parte 1

<?php
require('fpdf.php');

class PDF_Rotate extends FPDF
{
var $angle=0;

function Rotate($angle,$x=-1,$y=-1)
{
    if($x==-1)
        $x=$this->x;
    if($y==-1)
        $y=$this->y;
    if($this->angle!=0)
        $this->_out('Q');
    $this->angle=$angle;
    if($angle!=0)
    {
        $angle*=M_PI/180;
        $c=cos($angle);
        $s=sin($angle);
        $cx=$x*$this->k;
        $cy=($this->h-$y)*$this->k;
        $this->_out(sprintf('q %.5F %.5F %.5F %.5F %.2F %.2F cm 1 0 0 1 %.2F %.2F cm',$c,$s,-$s,$c,$cx,$cy,-$cx,-$cy));
    }
}

function _endpage()
{
    if($this->angle!=0)
    {
        $this->angle=0;
        $this->_out('Q');
    }
    parent::_endpage();
}
}
?>
Comment

How to add watermark in FPDF PHP - Parte 2

<?php
require('rotation.php');

class PDF extends PDF_Rotate
{
function Header()
{
    /* Put the watermark */
    $this->SetFont('Arial','B',50);
    $this->SetTextColor(255,192,203);
    $this->RotatedText(35,190,'W a t e r m a r k   d e m o',45);
}

function RotatedText($x, $y, $txt, $angle)
{
    /* Text rotated around its origin */
    $this->Rotate($angle,$x,$y);
    $this->Text($x,$y,$txt);
    $this->Rotate(0);
}
}

$pdf=new PDF();
$pdf->AddPage();
$pdf->SetFont('Arial','',12);
$txt="FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say ".
    "without using the PDFlib library. F from FPDF stands for Free: you may use it for any ".
    "kind of usage and modify it to suit your needs.

";
for($i=0;$i<25;$i++) 
    $pdf->MultiCell(0,5,$txt,0,'J');
$pdf->Output();
?>
Comment

PREVIOUS NEXT
Code Example
Php :: comment acceder à la base de données phpmyadmin sur mac ave 
Php :: blocking youtube adds in php 
Php :: contact us page mail prestashop 
Php :: how to prevent iframe for your site by PHP 
Php :: convert array to associative array php 
Php :: php formula return more results 
Php :: @sectionMissing 
Php :: app/View/Errors/missing_controller.ctp 
Php :: how to click anchor tag in selenium in php 
Php :: Call to undefined function can() laravel spatie 
Php :: Get Now Time In Persian Format JDF PHP Function 
Php :: php check bracket correct open and close 
Php :: -inurl:(htm/html/php/pls/txt) intitle:index.of "last modified" (mp4/wma/aac/avi) 
Php :: objeto php em sessão 
Php :: bitnami lightsail PHP Fatal error: Out of memory (allocated 
Php :: datatables compactible with bootstrap v4 
Php :: how to echo whole array php 
Php :: php inline variables string 
Php :: php detect daylight saving time 
Php :: codeigniter input required function in php 
Php :: laravel check if postback 
Php :: back to same page after changing locale 
Php :: php composer copy library to public vendor folder 
Php :: Compare current time with another time in PHP 
Php :: codeception field datetime firefox 
Php :: PDF Library Persian Language UTF-8 Support mPDF Lib 
Php :: string length php online 
Php :: auto check a category when creating new post 
Php :: laravel softdeletes not working giving empty data 
Php :: evaluate home tilde ~ in php 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =