fpdf
PHP powered
home was ist fpdf? downloads & add-ons dokumentation faq forum impressum links kontakt
 

Downloads > Add-On

 
         
 

Write HTML

Informations

Author: Clément Lavoillotte
License: Freeware

Description

This is an enhancement of the WriteHTML() method from tutorial 6. Supported tags are:

<b> <i> <u> (as well as <strong> and <em>)
<a href="...">
<p> <br> (<tr> and <blockquote> treated as <br>)
<img src="..." width="..." [height="..."]>
<font face="..." color="...">

Source

<?php
//HTML2PDF by Clément Lavoillotte
//ac.lavoillotte@noos.fr
//webmaster@streetpc.tk
//http://www.streetpc.tk

define('FPDF_FONTPATH', 'font/');
require(
'fpdf.php');

//function hex2dec
//returns an associative array (keys: R, G, B) from
//a hex html code (e.g. #3FE5AA)
function hex2dec($couleur = "#000000"){
    $R = substr($couleur, 1, 2);
    $rouge = hexdec($R);
    $V = substr($couleur, 3, 2);
    $vert = hexdec($V);
    $B = substr($couleur, 5, 2);
    $bleu = hexdec($B);
    $tbl_couleur = array();
    $tbl_couleur['R']=$rouge;
    $tbl_couleur['G']=$vert;
    $tbl_couleur['B']=$bleu;
    return $tbl_couleur;
}

//conversion pixel -> millimeter in 72 dpi
function px2mm($px){
    return $px*25.4/72;
}

function
txtentities($html){
    $trans = get_html_translation_table(HTML_ENTITIES);
    $trans = array_flip($trans);
    return strtr($html, $trans);
}
////////////////////////////////////

class PDF extends FPDF
{
//variables of html parser
var $B;
var
$I;
var
$U;
var
$HREF;
var
$fontList;
var
$issetfont;
var
$issetcolor;

function
PDF($orientation='P', $unit='mm', $format='A4')
{
    //Call parent constructor
    $this->FPDF($orientation, $unit, $format);
    //Initialization
    $this->B=0;
    $this->I=0;
    $this->U=0;
    $this->HREF='';
    $this->fontlist=array("arial", "times", "courier", "helvetica", "symbol");
    $this->issetfont=false;
    $this->issetcolor=false;
}

//////////////////////////////////////
//html parser

function WriteHTML($html)
{
    $html=strip_tags($html, "<b><u><i><a><img><p>
<strong><em><font><tr><blockquote>"
); //remove all unsupported tags
    $html=str_replace("\n", ' ', $html); //replace carriage returns by spaces
    $a=preg_split('/<(.*)>/U', $html, -1, PREG_SPLIT_DELIM_CAPTURE); //explodes the string
    foreach($a as $i=>$e)
    {
        if($i%2==0)
        {
            //Text
            if($this->HREF)
                $this->PutLink($this->HREF, $e);
            else
                $this
->Write(5, stripslashes(txtentities($e)));
        }
        else
        
{
            //Tag
            if($e{0}=='/')
                $this->CloseTag(strtoupper(substr($e, 1)));
            else
            
{
                //Extract attributes
                $a2=explode(' ', $e);
                $tag=strtoupper(array_shift($a2));
                $attr=array();
                foreach($a2 as $v)
                    if(ereg('^([^=]*)=["\']?([^"\']*)["\']?$', $v, $a3))
                        $attr[strtoupper($a3[1])]=$a3[2];
                $this->OpenTag($tag, $attr);
            }
        }
    }
}

function
OpenTag($tag, $attr)
{
    //Opening tag
    switch($tag){
        case 'STRONG':
            $this->SetStyle('B', true);
            break;
        case 'EM':
            $this->SetStyle('I', true);
            break;
        case 'B':
        case 'I':
        case 'U':
            $this->SetStyle($tag, true);
            break;
        case 'A':
            $this->HREF=$attr['HREF'];
            break;
        case 'IMG':
            if(isset($attr['SRC']) and (isset($attr['WIDTH']) or isset($attr['HEIGHT']))) {
                if(!isset($attr['WIDTH']))
                    $attr['WIDTH'] = 0;
                if(!isset($attr['HEIGHT']))
                    $attr['HEIGHT'] = 0;
                $this->Image($attr['SRC'], $this->GetX(), $this->GetY(), px2mm($attr['WIDTH']), px2mm($attr['HEIGHT']));
            }
            break;
        case 'TR':
        case 'BLOCKQUOTE':
        case 'BR':
            $this->Ln(5);
            break;
        case 'P':
            $this->Ln(10);
            break;
        case 'FONT':
            if (isset($attr['COLOR']) and $attr['COLOR']!='') {
                $coul=hex2dec($attr['COLOR']);
                $this->SetTextColor($coul['R'], $coul['G'], $coul['B']);
                $this->issetcolor=true;
            }
            if (isset($attr['FACE']) and in_array(strtolower($attr['FACE']), $this->fontlist)) {
                $this->SetFont(strtolower($attr['FACE']));
                $this->issetfont=true;
            }
            break;
    }
}

function
CloseTag($tag)
{
    //Closing tag
    if($tag=='STRONG')
        $tag='B';
    if($tag=='EM')
        $tag='I';
    if($tag=='B' or $tag=='I' or $tag=='U')
        $this->SetStyle($tag, false);
    if($tag=='A')
        $this->HREF='';
    if($tag=='FONT'){
        if ($this->issetcolor==true) {
            $this->SetTextColor(0);
        }
        if ($this->issetfont) {
            $this->SetFont('arial');
            $this->issetfont=false;
        }
    }
}

function
SetStyle($tag, $enable)
{
    //Modify style and select corresponding font
    $this->$tag+=($enable ? 1 : -1);
    $style='';
    foreach(array('B', 'I', 'U') as $s)
        if($this->$s>0)
            $style.=$s;
    $this->SetFont('', $style);
}

function
PutLink($URL, $txt)
{
    //Put a hyperlink
    $this->SetTextColor(0, 0, 255);
    $this->SetStyle('U', true);
    $this->Write(5, $txt, $URL);
    $this->SetStyle('U', false);
    $this->SetTextColor(0);
}

}
//end of class
?>

Example

This example allows to enter some HTML code in a form and generate the corresponding PDF:

<?php
//HTML2PDF by Clément Lavoillotte

include_once('html2pdf.php');

if(isset(
$html))
{
    $pdf=new PDF();
    $pdf->Open();
    $pdf->SetCreator("HTML2PDF");
    $pdf->SetTitle($title);
    $pdf->SetSubject($subject);
    $pdf->SetAuthor($author);
    $pdf->SetFont('Arial', '', 12);
    $pdf->AddPage();
    if(ini_get('magic_quotes_gpc')=='1')
        $html=stripslashes($html);
    $pdf->WriteHTML($html);
    //save and redirect
    $pdf->Output('test.pdf');
    header('Location: test.pdf');
    exit;
}
?>
<html><head><title>HTML2PDF</title>
<style>
INPUT, TEXTAREA, SELECT {
    font-family: lucida console;
    font-size: 8pt;
    border: 1px solid #E0E0E0;
    background-color: #F0F0F0;
    SCROLLBAR-FACE-COLOR: #b9b9b9;
    SCROLLBAR-HIGHLIGHT-COLOR: #b9b9b9;
    SCROLLBAR-SHADOW-COLOR: #b9b9b9;
    SCROLLBAR-3DLIGHT-COLOR: #b9b9b9;
    SCROLLBAR-DARKSHADOW-COLOR: #b9b9b9;
    SCROLLBAR-ARROW-COLOR: #F0F0F0;
    SCROLLBAR-TRACK-COLOR: #F0F0F0;
    SCROLLBAR-BASE-COLOR: #F0F0F0;
}
BODY {
    font-family: lucida console;
    font-size: 8pt;
    background-color: #F0F0F0;
    SCROLLBAR-FACE-COLOR: #b9b9b9;
    SCROLLBAR-HIGHLIGHT-COLOR: #b9b9b9;
    SCROLLBAR-SHADOW-COLOR: #b9b9b9;
    SCROLLBAR-3DLIGHT-COLOR: #b9b9b9;
    SCROLLBAR-DARKSHADOW-COLOR: #b9b9b9;
    SCROLLBAR-ARROW-COLOR: #F0F0F0;
    SCROLLBAR-TRACK-COLOR: #F0F0F0;
    SCROLLBAR-BASE-COLOR: #F0F0F0;
}
</style>
</head><body>
<h1>HTML2PDF</h1>
<div style="border: 1px solid black;">
Supported tags are the following:
<ul type="square">
<li>&lt;br&gt; and &lt;p&gt;</li>
<li>&lt;b&gt;, &lt;i&gt; and &lt;u&gt;</li>
<li>&lt;img&gt; (src and width (or height) are mandatory)</li>
<li>&lt;a&gt; (href is mandatory)</li>
<li>&lt;font&gt;: possible attributes are
<ul><li>color: hex color code</li>
<li>face: available fonts are: arial, times, courier, helvetica, symbol</li></ul>
</li></ul>
To display these tags without interpreting them, use &amp;lt; and &amp;gt;</div>
<form name="pdfgen" method="post" action="<?php echo $PHP_SELF; ?>" target="_blank">
Title :<input type="text" maxlength="30" name="title">

Subject :<input type="text" maxlength="30" name="subject">

Author :<input type="text" maxlength="30" name="author">

Content:

<textarea name="html" cols="50" rows="15"></textarea>

<input type="submit" value="Generate PDF">
</form>
</body></html>

With this code:

<font face="times">The </font><b><font color="#7070D0">FPDF</font></b><font face="times"> logo:</font>
<br><br>
<img src="logo.png" width="104">


you get this result.

Download

ZIP | TGZ
 






 
         
         
 
 
fpdf.de © Copyright 2004-2006 carrib internet solutions - Beachten Sie bitte die Nutzungsbedingungen
Eine Verwendung der auf fpdf.de befindlichen Inhalte (Texte, Grafiken) ist nur mit Zustimmung des Betreibers zulässig.