FPDF($orientation,$unit,$format); //$this->SetCompression(false); } // Simple HTML to PDF converter function ConvertFromHTML($html) { $html = str_replace("\n",' ',$html); $a = preg_split('/<(.*)>/U',$html,-1,PREG_SPLIT_DELIM_CAPTURE); foreach($a as $i=>$e) { if ($i % 2 == 0) { //Text if($this->HREF) $this->PutLink($this->HREF,$e); else $this->Write(5,$e); } else { //Tag if ($e{0} == '/') $this->CloseTag(strtoupper(substr($e,1))); else { //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 Header() { $this->SetY(-15); $this->SetFont('Arial','',9); //URL - space from side - space from top - width if (!DEBUG) { $imgurl = $GLOBALS['Theme']->_findFile("images/logo.png"); // header and wikilogo if ($imgurl) $this->Image($imgurl,3,3); } //Line break //$this->Ln(30); } function Footer() { //global $cfg, $config, $lang; //1.5cm below top $this->SetY(-15); //Arial italic 8 $this->SetFont('arial','I',8); } function OpenTag($tag,$attr) { if($tag=='B' or $tag=='I' or $tag=='U') $this->SetStyle($tag,true); if($tag=='A') $this->HREF=$attr['HREF']; if($tag=='BR') $this->Ln(5); } function CloseTag($tag) { if($tag=='B' or $tag=='I' or $tag=='U') $this->SetStyle($tag,false); if($tag=='A') $this->HREF=''; } //Wijzig stijl en selecteer lettertype function SetStyle($tag,$enable) { $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) { // hyperlink as simple underlined text $this->SetTextColor(0,0,255); $this->SetStyle('U',true); $this->Write(5,$txt,$URL); $this->SetStyle('U',false); $this->SetTextColor(0); } } // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>