', $content);
$content = preg_replace('/
]*)>/isU', '
'.HTML2PDF::textGET('vue03').' : $1
', $content);
$content = preg_replace('/<\/page([^>]*)>/isU', '
', $content);
$content = preg_replace('/]*)>/isU', '
bookmark : $1
', $content);
$content = preg_replace('/<\/bookmark([^>]*)>/isU', '', $content);
echo '
'.HTML2PDF::textGET('vue04').' HTML
'.$content.'
';
exit;
}
/**
* chargement de l'action correspondante à un element de parsing
*
* @param array élément de parsing
* @return null
*/
function loadAction($row)
{
// nom de l'action
$fnc = ($row['close'] ? 'c_' : 'o_').strtoupper($row['name']);
// parametres de l'action
$param = $row['param'];
// si aucune page n'est créé, on la créé
if ($fnc!='o_PAGE' && $this->FirstPage)
{
$this->setNewPage();
}
// lancement de l'action
if (is_callable(array(&$this, $fnc)))
{
$this->{$fnc}($param);
$this->previousCall = $fnc;
}
else
{
HTML2PDF::makeError(1, __FILE__, __LINE__, strtoupper($row['name']));
}
}
/**
* balise : PAGE
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_PAGE($param)
{
$newPageSet= (!isset($param['pageset']) || $param['pageset']!='old');
$this->maxH = 0;
if ($newPageSet)
{
$this->subHEADER = array();
$this->subFOOTER = array();
// identification de l'orientation demandée
$orientation = '';
if (isset($param['orientation']))
{
$param['orientation'] = strtolower($param['orientation']);
if ($param['orientation']=='p') $orientation = 'P';
if ($param['orientation']=='portrait') $orientation = 'P';
if ($param['orientation']=='l') $orientation = 'L';
if ($param['orientation']=='paysage') $orientation = 'L';
if ($param['orientation']=='landscape') $orientation = 'L';
}
// identification des propriétés du background
$background = array();
if (isset($param['backimg']))
{
$background['img'] = isset($param['backimg']) ? $param['backimg'] : ''; // nom de l'image
$background['posX'] = isset($param['backimgx']) ? $param['backimgx'] : 'center'; // position horizontale de l'image
$background['posY'] = isset($param['backimgy']) ? $param['backimgy'] : 'middle'; // position verticale de l'image
$background['width'] = isset($param['backimgw']) ? $param['backimgw'] : '100%'; // taille de l'image (100% = largueur de la feuille)
// conversion du nom de l'image, en cas de paramètres en _GET
$background['img'] = str_replace('&', '&', $background['img']);
// conversion des positions
if ($background['posX']=='left') $background['posX'] = '0%';
if ($background['posX']=='center') $background['posX'] = '50%';
if ($background['posX']=='right') $background['posX'] = '100%';
if ($background['posY']=='top') $background['posY'] = '0%';
if ($background['posY']=='middle') $background['posY'] = '50%';
if ($background['posY']=='bottom') $background['posY'] = '100%';
// si il y a une image de précisé
if ($background['img'])
{
// est-ce que c'est une image ?
$infos=@GetImageSize($background['img']);
if (count($infos)>1)
{
// taille de l'image, en fonction de la taille spécifiée.
$Wi = $this->style->ConvertToMM($background['width'], $this->pdf->w);
$Hi = $Wi*$infos[1]/$infos[0];
// récupération des dimensions et positions de l'image
$background['width'] = $Wi;
$background['posX'] = $this->style->ConvertToMM($background['posX'], $this->pdf->w - $Wi);
$background['posY'] = $this->style->ConvertToMM($background['posY'], $this->pdf->h - $Hi);
}
else
$background = array();
}
else
$background = array();
}
// marges TOP et BOTTOM pour le texte.
$background['top'] = isset($param['backtop']) ? $param['backtop'] : '0';
$background['bottom'] = isset($param['backbottom']) ? $param['backbottom'] : '0';
$background['left'] = isset($param['backleft']) ? $param['backleft'] : '0';
$background['right'] = isset($param['backright']) ? $param['backright'] : '0';
if (preg_match('/^([0-9]*)$/isU', $background['top'])) $background['top'] .= 'mm';
if (preg_match('/^([0-9]*)$/isU', $background['bottom'])) $background['bottom'] .= 'mm';
if (preg_match('/^([0-9]*)$/isU', $background['left'])) $background['left'] .= 'mm';
if (preg_match('/^([0-9]*)$/isU', $background['right'])) $background['right'] .= 'mm';
$background['top'] = $this->style->ConvertToMM($background['top'], $this->pdf->h);
$background['bottom'] = $this->style->ConvertToMM($background['bottom'], $this->pdf->h);
$background['left'] = $this->style->ConvertToMM($background['left'], $this->pdf->w);
$background['right'] = $this->style->ConvertToMM($background['right'], $this->pdf->w);
$res = false;
$background['color'] = isset($param['backcolor']) ? $this->style->ConvertToRVB($param['backcolor'], $res) : null;
if (!$res) $background['color'] = null;
$this->style->save();
$this->style->analyse('PAGE', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// nouvelle page
$this->setNewPage($orientation, $background);
// footer automatique
if (isset($param['footer']))
{
$lst = explode(';', $param['footer']);
foreach($lst as $key => $val) $lst[$key] = trim(strtolower($val));
$page = in_array('page', $lst);
$date = in_array('date', $lst);
$heure = in_array('heure', $lst);
$form = in_array('form', $lst);
}
else
{
$page = null;
$date = null;
$heure = null;
$form = null;
}
$this->pdf->SetMyFooter($page, $date, $heure, $form);
}
else
{
$this->style->save();
$this->style->analyse('PAGE', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$this->setNewPage();
}
}
/**
* balise : PAGE
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_PAGE($param)
{
$this->maxH = 0;
$this->style->load();
$this->style->FontSet();
}
function o_PAGE_HEADER($param)
{
$this->subHEADER = array();
for($this->parse_pos; $this->parse_posparsing->code); $this->parse_pos++)
{
$todo = $this->parsing->code[$this->parse_pos];
if ($todo['name']=='page_header') $todo['name']='page_header_sub';
$this->subHEADER[] = $todo;
if (strtolower($todo['name'])=='page_header_sub' && $todo['close']) break;
}
$this->SetPageHeader();
}
function o_PAGE_FOOTER($param)
{
$this->subFOOTER = array();
for($this->parse_pos; $this->parse_posparsing->code); $this->parse_pos++)
{
$todo = $this->parsing->code[$this->parse_pos];
if ($todo['name']=='page_footer') $todo['name']='page_footer_sub';
$this->subFOOTER[] = $todo;
if (strtolower($todo['name'])=='page_footer_sub' && $todo['close']) break;
}
$this->SetPageFooter();
}
function o_PAGE_HEADER_SUB($param)
{
$this->subSTATES = array();
$this->subSTATES['x'] = $this->pdf->x;
$this->subSTATES['y'] = $this->pdf->y;
$this->subSTATES['s'] = $this->style->value;
$this->subSTATES['t'] = $this->style->table;
$this->subSTATES['ml'] = $this->pdf->lMargin;
$this->subSTATES['mr'] = $this->pdf->rMargin;
$this->subSTATES['mt'] = $this->pdf->tMargin;
$this->subSTATES['mb'] = $this->pdf->bMargin;
$this->pdf->x = $this->defaultLeft;
$this->pdf->y = $this->defaultTop;
$this->style->initStyle();
$this->style->resetStyle();
$this->style->value['width'] = $this->pdf->w - $this->defaultLeft - $this->defaultRight;
$this->style->table = array();
$this->pdf->lMargin = $this->defaultLeft;
$this->pdf->rMargin = $this->defaultRight;
$this->pdf->tMargin = $this->defaultTop;
$this->pdf->bMargin = $this->defaultBottom;
$this->pdf->PageBreakTrigger = $this->pdf->h - $this->pdf->bMargin;
$this->style->save();
$this->style->analyse('page_header_sub', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
function c_PAGE_HEADER_SUB($param)
{
$this->style->load();
$this->pdf->x = $this->subSTATES['x'];
$this->pdf->y = $this->subSTATES['y'];
$this->style->value = $this->subSTATES['s'];
$this->style->table = $this->subSTATES['t'];
$this->pdf->lMargin = $this->subSTATES['ml'];
$this->pdf->rMargin = $this->subSTATES['mr'];
$this->pdf->tMargin = $this->subSTATES['mt'];
$this->pdf->bMargin = $this->subSTATES['mb'];
$this->pdf->PageBreakTrigger = $this->pdf->h - $this->pdf->bMargin;
$this->style->FontSet();
}
function o_PAGE_FOOTER_SUB($param)
{
$this->subSTATES = array();
$this->subSTATES['x'] = $this->pdf->x;
$this->subSTATES['y'] = $this->pdf->y;
$this->subSTATES['s'] = $this->style->value;
$this->subSTATES['t'] = $this->style->table;
$this->subSTATES['ml'] = $this->pdf->lMargin;
$this->subSTATES['mr'] = $this->pdf->rMargin;
$this->subSTATES['mt'] = $this->pdf->tMargin;
$this->subSTATES['mb'] = $this->pdf->bMargin;
$this->pdf->x = $this->defaultLeft;
$this->pdf->y = $this->defaultTop;
$this->style->initStyle();
$this->style->resetStyle();
$this->style->value['width'] = $this->pdf->w - $this->defaultLeft - $this->defaultRight;
$this->style->table = array();
$this->pdf->lMargin = $this->defaultLeft;
$this->pdf->rMargin = $this->defaultRight;
$this->pdf->tMargin = $this->defaultTop;
$this->pdf->bMargin = $this->defaultBottom;
$this->pdf->PageBreakTrigger = $this->pdf->h - $this->pdf->bMargin;
// on en créé un sous HTML que l'on transforme en PDF
// pour récupérer la hauteur
// on extrait tout ce qui est contenu dans le FOOTER
$sub = null;
$res = $this->parsing->getLevel($this->parse_pos);
$this->CreateSubHTML($sub);
$sub->writeHTML($res[1]);
$this->pdf->y = $this->pdf->h - $sub->maxY - $this->defaultBottom - 0.01;
unset($sub);
$this->style->save();
$this->style->analyse('page_footer_sub', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
function c_PAGE_FOOTER_SUB($param)
{
$this->style->load();
$this->pdf->x = $this->subSTATES['x'];
$this->pdf->y = $this->subSTATES['y'];
$this->style->value = $this->subSTATES['s'];
$this->style->table = $this->subSTATES['t'];
$this->pdf->lMargin = $this->subSTATES['ml'];
$this->pdf->rMargin = $this->subSTATES['mr'];
$this->pdf->tMargin = $this->subSTATES['mt'];
$this->pdf->bMargin = $this->subSTATES['mb'];
$this->pdf->PageBreakTrigger = $this->pdf->h - $this->pdf->bMargin;
$this->style->FontSet();
}
/**
* balise : NOBREAK
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_NOBREAK($param)
{
$this->maxH = 0;
// on extrait tout ce qui est contenu dans le NOBREAK
$res = $this->parsing->getLevel($this->parse_pos);
// on en créé un sous HTML que l'on transforme en PDF
// pour analyse les dimensions
// et voir si ca rentre
$sub = null;
$this->CreateSubHTML($sub);
$sub->writeHTML($res[1]);
$y = $this->pdf->getY();
if (
$sub->maxY < ($this->pdf->h - $this->pdf->tMargin-$this->pdf->bMargin) &&
$y + $sub->maxY>=($this->pdf->h - $this->pdf->bMargin)
)
$this->setNewPage();
unset($sub);
}
/**
* balise : NOBREAK
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_NOBREAK($param)
{
$this->maxH = 0;
}
/**
* balise : DIV
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_DIV($param, $other = 'div')
{
$this->style->save();
$this->style->analyse($other, $param);
$this->style->FontSet();
$align_object = null;
if ($this->style->value['margin-auto']) $align_object = 'center';
$marge = array();
$marge['l'] = $this->style->value['border']['l']['width'] + $this->style->value['padding']['l']+0.03;
$marge['r'] = $this->style->value['border']['r']['width'] + $this->style->value['padding']['r']+0.03;
$marge['t'] = $this->style->value['border']['t']['width'] + $this->style->value['padding']['t']+0.03;
$marge['b'] = $this->style->value['border']['b']['width'] + $this->style->value['padding']['b']+0.03;
// on extrait tout ce qui est contenu dans la DIV
$res = $this->parsing->getLevel($this->parse_pos);
// on en créé un sous HTML que l'on transforme en PDF
// pour analyse les dimensions
$w = 0; $h = 0;
if (trim($res[1]))
{
$sub = null;
$this->CreateSubHTML($sub);
$sub->writeHTML($res[1]);
$w = $sub->maxX;
$h = $sub->maxY;
unset($sub);
}
$w+= $marge['l']+$marge['r'];
$h+= $marge['t']+$marge['b'];
$this->style->value['width'] = max($w, $this->style->value['width']);
$this->style->value['height'] = max($h, $this->style->value['height']);
if (!$this->style->value['position'])
{
if (
$this->style->value['width'] < ($this->pdf->w - $this->pdf->lMargin-$this->pdf->rMargin) &&
$this->pdf->x + $this->style->value['width']>=($this->pdf->w - $this->pdf->rMargin)
)
$this->o_BR(array());
if (
$this->style->value['height'] < ($this->pdf->h - $this->pdf->tMargin-$this->pdf->bMargin) &&
$this->pdf->y + $this->style->value['height']>=($this->pdf->h - $this->pdf->bMargin)
)
$this->setNewPage();
// en cas d'alignement => correction
$w = $this->style->value['width'];
$old = isset($this->style->table[count($this->style->table)-1]) ? $this->style->table[count($this->style->table)-1] : $this->style->value;
$parent_w = $old['width'] ? $old['width'] : $this->pdf->w - $this->pdf->lMargin - $this->pdf->rMargin;
if ($parent_w>$w)
{
if ($align_object=='center') $this->pdf->x = $this->pdf->x + ($parent_w-$w)*0.5;
else if ($align_object=='right') $this->pdf->x = $this->pdf->x + $parent_w-$w;
}
$this->style->setPosition($this->pdf->x, $this->pdf->y);
}
else
{
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->saveMax();
$this->saveX = 0;
$this->saveY = 0;
$this->saveH = 0;
}
// initialisation du style des bordures de la premiere partie de tableau
$this->Rectangle(
$this->style->value['x'],
$this->style->value['y'],
$this->style->value['width'],
$this->style->value['height'],
$this->style->value['border'],
$this->style->value['padding'],
0,
$this->style->value['background']
);
$marge = array();
$marge['l'] = $this->style->value['border']['l']['width'] + $this->style->value['padding']['l']+0.03;
$marge['r'] = $this->style->value['border']['r']['width'] + $this->style->value['padding']['r']+0.03;
$marge['t'] = $this->style->value['border']['t']['width'] + $this->style->value['padding']['t']+0.03;
$marge['b'] = $this->style->value['border']['b']['width'] + $this->style->value['padding']['b']+0.03;
$this->style->value['width'] = $this->style->value['width']-$marge['l']-$marge['r'];
$this->style->value['height'] = $this->style->value['height']-$marge['r']-$marge['b'];
// limitation des marges aux dimensions de la div
$mL = $this->style->value['x']+$marge['l'];
$mR = $this->pdf->w - $mL - $this->style->value['width'];
$this->saveMargin($mL, 0, $mR);
// positionnement en fonction
$h_corr = $this->style->value['height'];
$h_reel = $h-$marge['b']-$marge['t'];
switch($this->style->value['vertical-align'])
{
case 'bottom':
$y_corr = $h_corr-$h_reel;
break;
case 'middle':
$y_corr = ($h_corr-$h_reel)*0.5;
break;
case 'top':
default:
$y_corr = 0;
break;
}
$this->pdf->setX($this->style->value['x']+$marge['l']);
$this->pdf->setY($this->style->value['y']+$marge['t']+$y_corr);
}
function o_BLOCKQUOTE($param) { $this->o_DIV($param, 'blockquote'); }
/**
* balise : DIV
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_DIV($param)
{
$marge = array();
$marge['l'] = $this->style->value['border']['l']['width'] + $this->style->value['padding']['l']+0.03;
$marge['r'] = $this->style->value['border']['r']['width'] + $this->style->value['padding']['r']+0.03;
$marge['t'] = $this->style->value['border']['t']['width'] + $this->style->value['padding']['t']+0.03;
$marge['b'] = $this->style->value['border']['b']['width'] + $this->style->value['padding']['b']+0.03;
$x = $this->style->value['x'];
$y = $this->style->value['y'];
$w = $this->style->value['width']+$marge['l']+$marge['r'];
$h = $this->style->value['height']+$marge['t']+$marge['b'];
// correction pour les margins
$w+= $this->style->value['margin']['r'];
$h+= $this->style->value['margin']['b'];
if ($this->style->value['position']!='absolute')
{
// position
$this->pdf->x = $x+$w;
$this->pdf->y = $y;
// position MAX
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->maxH = max($this->maxH, $h);
}
else
{
// position
$this->pdf->x = $this->style->value['xc'];
$this->pdf->y = $this->style->value['yc'];
$this->loadMax();
}
$block = ($this->style->value['display']!='inline' && $this->style->value['position']!='absolute');
$this->style->load();
$this->style->FontSet();
$this->loadMargin();
if ($block) $this->o_BR(array());
}
function c_BLOCKQUOTE($param) { $this->c_DIV($param); }
/**
* balise : BARCODE
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_BARCODE($param)
{
$lst_barcode = array(
'EAN13' => '0.35mm',
'UPC_A' => '0.35mm',
'CODE39' => '1.00mm',
);
if (isset($param['type'])) $param['type'] = strtoupper($param['type']);
if (!isset($param['type']) || !isset($lst_barcode[$param['type']])) $param['type']=='CODE39';
if (!isset($param['value'])) $param['value'] = 0;
if (!isset($param['bar_w'])) $param['bar_w'] = $lst_barcode[$param['type']];
if (!isset($param['bar_h'])) $param['bar_h'] = '10mm';
if (!isset($param['style']['color'])) $param['style']['color'] = '#000000';
$param['style']['background-color'] = $param['style']['color'];
$this->style->save();
$this->style->analyse('barcode', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$x = $this->pdf->getX();
$y = $this->pdf->getY();
$w = $this->style->ConvertToMM($param['bar_w']);
$h = $this->style->ConvertToMM($param['bar_h']);
$infos = $this->pdf->{'BARCODE_'.$param['type']}($x, $y, $param['value'], $h, $w);
// position maximale globale
$this->maxX = max($this->maxX, $x+$infos[0]);
$this->maxY = max($this->maxY, $y+$infos[1]);
$this->maxH = max($this->maxH, $infos[1]);
$this->pdf->setX($x+$infos[0]);
$this->style->load();
$this->style->FontSet();
}
/**
* balise : BARCODE
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_BARCODE($param)
{
// completement inutile
}
/**
* balise : BOOKMARK
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_BOOKMARK($param)
{
$titre = isset($param['title']) ? trim($param['title']) : '';
$level = isset($param['level']) ? floor($param['level']) : 0;
if ($level<0) $level = 0;
if ($titre) $this->pdf->Bookmark($titre, $level, -1);
}
/**
* balise : BOOKMARK
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_BOOKMARK($param)
{
// completement inutile
}
/**
* balise : WRITE
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_WRITE($param)
{
$fill = false; //($this->style->value['background']['color']!=null);
// récupération du texte à écrire, et conversion
$txt = $param['txt'];
$txt = str_replace('€', '€', $txt);
if ($this->isAfterFloat)
{
$txt = preg_replace('/^([\s]*)([^\s])/isU', '$2', $txt);
$this->isAfterFloat = false;
}
$txt = html_entity_decode($txt, ENT_QUOTES, 'ISO-8859-15');
// $txt = utf8_decode(html_entity_decode($txt, ENT_QUOTES, 'UTF-8'));
$txt = str_replace('[[page_cu]]', $this->pdf->PageNo(), $txt);
// tailles du texte
$h = 1.08*$this->style->value['font-size'];
$dh = $h*$this->style->value['mini-decal'];
$w = $this->pdf->GetStringWidth($txt);
// identification de l'alignement
$align = 'L';
if ($this->style->value['text-align']!='left')
{
$w = $this->style->value['width'];
if ($this->style->value['text-align']=='center') $align = 'C';
if ($this->style->value['text-align']=='right') $align = 'R';
}
$maxX = 0; // plus grande largeur du texte apres retour à la ligne
$x = $this->pdf->getX(); // position du texte
$y = $this->pdf->getY();
$w = $this->pdf->GetStringWidth($txt); // largeur du texte
list($left, $right) = $this->getMargins($y); // marges autorisees
$nb = 0; // nbr de lignes découpées
// tant que ca ne rentre pas sur la ligne et qu'on a du texte => on découpe
while($x+$w>$right && $x<$right && strlen($txt))
{
// liste des mots
$lst = explode(' ', $txt);
// trouver une phrase qui rentre dans la largeur, en ajoutant les mots 1 à 1
$i=0;
$old = '';
$str = $lst[0];
while(($x+$this->pdf->GetStringWidth($str))<=$right)
{
unset($lst[$i]);
$old = $str;
$i++;
$str.= ' '.$lst[$i];
}
$str = $old;
// si rien de rentre, et que le premier mot ne rentre de toute facon pas dans une ligne, on le force...
if ($i==0 && (($left+$this->pdf->GetStringWidth($lst[0]))>=$right))
{
$str = $lst[0];
unset($lst[0]);
}
// récupération des mots restant, et calcul de la largeur
$txt = implode(' ', $lst);
$w = $this->pdf->GetStringWidth($str);
// ecriture du bout de phrase extrait et qui rentre
$wc = ($align=='L' ? $w : $this->style->value['width']);
if ($right - $left<$wc) $wc = $right - $left;
$this->pdf->Cell($wc, $h+$dh, $str, 0, 0, $align, $fill, $this->inLink);
$this->maxH = max($this->maxH, $this->style->getLineHeight());
// détermination de la largeur max
$maxX = max($maxX, $this->pdf->getX());
// nouvelle position et nouvelle largeur pour la boucle
$w = $this->pdf->GetStringWidth($txt);
$y = $this->pdf->getY();
$x = $this->pdf->getX();
// si il reste du text à afficher
if (strlen($txt))
{
// retour à la ligne
$this->o_BR(array('style' => ''));
$y = $this->pdf->getY();
$x = $this->pdf->getX();
// si la prochaine ligne ne rentre pas dans la page => nouvelle page
if ($y + $h>$this->pdf->h - $this->pdf->bMargin) $this->setNewPage();
// ligne suplémentaire. au bout de 1000 : trop long => erreur
$nb++;
if ($nb>1000) HTML2PDF::makeError(2, __FILE__, __LINE__, array($txt, $right-$left, $this->pdf->GetStringWidth($txt)));
list($left, $right) = $this->getMargins($y); // marges autorisees
}
}
// si il reste du text apres découpe, c'est qu'il rentre direct => on l'affiche
if (strlen($txt))
{
$this->pdf->Cell(($align=='L' ? $w : $this->style->value['width']), $h+$dh, $txt, 0, 0, $align, $fill, $this->inLink);
$this->maxH = max($this->maxH, $this->style->getLineHeight());
}
// détermination des positions MAX
$maxX = max($maxX, $this->pdf->getX());
$maxY = $this->pdf->getY()+$h;
// position maximale globale
$this->maxX = max($this->maxX, $maxX);
$this->maxY = max($this->maxY, $maxY);
}
/**
* tracer une image
*
* @param string nom du fichier source
* @return null
*/
function Image($src, $sub_li=false)
{
// est-ce que c'est une image ?
$infos=@GetImageSize($src);
if (count($infos)<2)
{
HTML2PDF::makeError(6, __FILE__, __LINE__, $src);
return false;
}
// récupération des dimensions dans l'unité du PDF
$wi = $infos[0]/$this->pdf->k;
$hi = $infos[1]/$this->pdf->k;
// détermination des dimensions d'affichage en fonction du style
if ($this->style->value['width'] && $this->style->value['height'])
{
$w = $this->style->value['width'];
$h = $this->style->value['height'];
}
else if ($this->style->value['width'])
{
$w = $this->style->value['width'];
$h = $hi*$w/$wi;
}
else if ($this->style->value['height'])
{
$h = $this->style->value['height'];
$w = $wi*$h/$hi;
}
else
{
$w = 72./96.*$wi;
$h = 72./96.*$hi;
}
// detection du float
$float = $this->style->getFloat();
if ($float && $this->maxH) $this->o_BR(array());
// position d'affichage
$x = $this->pdf->getX();
$y = $this->pdf->getY();
// si l'image ne rentre pas dans la page => nouvelle page
if ($y + $h>$this->pdf->h - $this->pdf->bMargin)
{
$this->setNewPage();
$x = $this->pdf->getX();
$y = $this->pdf->getY();
}
// correction pour l'affichage d'une puce image
$hT = 0.80*$this->style->value['font-size'];
if ($sub_li && $h<$hT)
{
$y+=($hT-$h);
}
$yc = $y-$this->style->value['margin']['t'];
// détermination de la position réelle d'affichage en fonction du text-align du parent
$old = isset($this->style->table[count($this->style->table)-1]) ? $this->style->table[count($this->style->table)-1] : $this->style->value;
if ( $old['width'])
{
$parent_w = $old['width'];
$parent_x = $x;
}
else
{
$parent_w = $this->pdf->w - $this->pdf->lMargin - $this->pdf->rMargin;
$parent_x = $this->pdf->lMargin;
}
if ($float)
{
list($lx, $rx) = $this->getMargins($yc);
$parent_x = $lx;
$parent_w = $rx-$lx;
}
if ($parent_w>$w && $float!='left')
{
if ($float=='right' || $this->style->value['text-align']=='right') $x = $parent_x + $parent_w - $w-$this->style->value['margin']['r']-$this->style->value['margin']['l'];
else if ($this->style->value['text-align']=='center') $x = $parent_x + 0.5*($parent_w - $w);
}
// affichage de l'image, et positionnement à la suite
if (!$this->sub_part && !$this->isSubPart) $this->pdf->Image($src, $x, $y, $w, $h, '', $this->inLink);
$x-= $this->style->value['margin']['l'];
$y-= $this->style->value['margin']['t'];
$w+= $this->style->value['margin']['l'] + $this->style->value['margin']['r'];
$h+= $this->style->value['margin']['t'] + $this->style->value['margin']['b'];
if ($float=='left')
{
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->addMargins($float, $x, $y, $x+$w, $y+$h);
list($lx, $rx) = $this->getMargins($yc);
$this->pdf->x = $lx;
$this->pdf->y = $yc;
}
else if ($float=='right')
{
// $this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->addMargins($float, $x, $y, $x+$w, $y+$h);
list($lx, $rx) = $this->getMargins($yc);
$this->pdf->x = $lx;
$this->pdf->y = $yc;
}
else
{
$this->pdf->SetX($x+$w);
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->maxH = max($this->maxH, $h);
}
}
/**
* Tracer un rectanble
*
* @param float position X
* @param float position Y
* @param float Largeur
* @param float Hauteur
* @param array Tableau de style de définition des borders
* @param float padding - marge intérieur au rectangle => non utile mais on le passe en paramètre
* @param float margin - marge exterieur au rectangle
* @param array Tableau de style de définition du background
* @return null
*/
function Rectangle($x, $y, $w, $h, $border, $padding, $margin, $background)
{
if ($this->sub_part || $this->isSubPart) return false;
if ($h===null) return false;
$x+= $margin;
$y+= $margin;
$w-= $margin*2;
$h-= $margin*2;
// récupération des radius
$radius_h = $border['radius'][0];
$radius_v = $border['radius'][1];
// verification des coins en radius
$coin_TL = ($radius_h && $radius_v && $radius_v>$border['t']['width'] && $radius_h>$border['l']['width']) ? array($radius_h, $radius_v) : null;
$coin_TR = ($radius_h && $radius_v && $radius_v>$border['t']['width'] && $radius_h>$border['r']['width']) ? array($radius_h, $radius_v) : null;
$coin_BL = ($radius_h && $radius_v && $radius_v>$border['b']['width'] && $radius_h>$border['l']['width']) ? array($radius_h, $radius_v) : null;
$coin_BR = ($radius_h && $radius_v && $radius_v>$border['b']['width'] && $radius_h>$border['r']['width']) ? array($radius_h, $radius_v) : null;
// traitement de la couleur de fond
$STYLE = '';
if ($background['color'])
{
$this->pdf->SetFillColor($background['color'][0], $background['color'][1], $background['color'][2]);
$STYLE.= 'F';
}
if ($STYLE)
{
$this->pdf->clippingPathOpen($x, $y, $w, $h, $coin_TL,$coin_TR, $coin_BL, $coin_BR);
$this->pdf->Rect($x, $y, $w, $h, $STYLE);
$this->pdf->clippingPathClose();
}
// traitement de l'image de fond
if ($background['image'])
{
$i_name = $background['image'];
$i_position = $background['position']!==null ? $background['position'] : array(0, 0);
$i_repeat = $background['repeat']!==null ? $background['repeat'] : array(true, true);
// taile du fond (il faut retirer les borders
$b_x = $x;
$b_y = $y;
$b_w = $w;
$b_h = $h;
if ($border['b']['width']) { $b_h-= $border['b']['width']; }
if ($border['l']['width']) { $b_w-= $border['l']['width']; $b_x+= $border['l']['width']; }
if ($border['t']['width']) { $b_h-= $border['t']['width']; $b_y+= $border['t']['width']; }
if ($border['r']['width']) { $b_w-= $border['r']['width']; }
// est-ce que c'est une image ?
$i_infos=@GetImageSize($i_name);
if (count($i_infos)<2)
{
HTML2PDF::makeError(6, __FILE__, __LINE__, $i_name);
return false;
}
// récupération des dimensions dans l'unité du PDF
$i_width = 72./96.*$i_infos[0]/$this->pdf->k;
$i_height = 72./96.*$i_infos[1]/$this->pdf->k;
if ($i_repeat[0]) $i_position[0] = $b_x;
else if(preg_match('/^([-]?[0-9\.]+)%/isU', $i_position[0], $match)) $i_position[0] = $b_x + $match[1]*($b_w-$i_width)/100;
else $i_position[0] = $b_x+$i_position[0];
if ($i_repeat[1]) $i_position[1] = $b_y;
else if(preg_match('/^([-]?[0-9\.]+)%/isU', $i_position[1], $match)) $i_position[1] = $b_y + $match[1]*($b_h-$i_height)/100;
else $i_position[1] = $b_y+$i_position[1];
$i_x_min = $b_x;
$i_x_max = $b_x+$b_w;
$i_y_min = $b_y;
$i_y_max = $b_y+$b_h;
if (!$i_repeat[0] && !$i_repeat[1])
{
$i_x_min = $i_position[0]; $i_x_max = $i_position[0]+$i_width;
$i_y_min = $i_position[1]; $i_y_max = $i_position[1]+$i_height;
}
else if ($i_repeat[0] && !$i_repeat[1])
{
$i_y_min = $i_position[1]; $i_y_max = $i_position[1]+$i_height;
}
elseif (!$i_repeat[0] && $i_repeat[1])
{
$i_x_min = $i_position[0]; $i_x_max = $i_position[0]+$i_width;
}
if (is_array($coin_TL)) { $coin_TL[0]-= $border['l']['width']; $coin_TL[1]-= $border['t']['width']; }
if (is_array($coin_TR)) { $coin_TR[0]-= $border['r']['width']; $coin_TR[1]-= $border['t']['width']; }
if (is_array($coin_BL)) { $coin_BL[0]-= $border['l']['width']; $coin_BL[1]-= $border['b']['width']; }
if (is_array($coin_BR)) { $coin_BR[0]-= $border['r']['width']; $coin_BR[1]-= $border['b']['width']; }
$this->pdf->clippingPathOpen($b_x, $b_y, $b_w, $b_h, $coin_TL, $coin_TR, $coin_BL, $coin_BR);
for ($i_y=$i_y_min; $i_y<$i_y_max; $i_y+=$i_height)
{
for ($i_x=$i_x_min; $i_x<$i_x_max; $i_x+=$i_width)
{
$c_x = null;
$c_y = null;
$c_w = $i_width;
$c_h = $i_height;
if ($i_y_max-$i_y<$i_height)
{
$c_x = $i_x;
$c_y = $i_y;
$c_h = $i_y_max-$i_y;
}
if ($i_x_max-$i_x<$i_width)
{
$c_x = $i_x;
$c_y = $i_y;
$c_w = $i_x_max-$i_x;
}
$this->pdf->Image($i_name, $i_x, $i_y, $i_width, $i_height, '', '');
}
}
$this->pdf->clippingPathClose();
}
$x-= 0.01;
$y-= 0.01;
$w+= 0.02;
$h+= 0.02;
if ($border['b']['width']) $border['b']['width']+= 0.02;
if ($border['l']['width']) $border['l']['width']+= 0.02;
if ($border['t']['width']) $border['t']['width']+= 0.02;
if ($border['r']['width']) $border['r']['width']+= 0.02;
if ($border['b']['width'] && $border['b']['color'][0]!==null)
{
$pt = array();
$pt[] = $x+$w; $pt[] = $y+$h;
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y+$h;
$pt[] = $x+$border['l']['width']; $pt[] = $y+$h;
$pt[] = $x; $pt[] = $y+$h;
$pt[] = $x+$border['l']['width']; $pt[] = $y+$h-$border['b']['width'];
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y+$h-$border['b']['width'];
$bord = 3;
if (is_array($coin_BL))
{
$bord-=2;
$pt[4] += $radius_h-$border['l']['width'];
$pt[8] += $radius_h-$border['l']['width'];
unset($pt[6]);unset($pt[7]);
}
if (is_array($coin_BR))
{
$courbe = array();
$courbe[] = $x+$w; $courbe[] = $y+$h-$radius_v;
$courbe[] = $x+$w-$radius_h; $courbe[] = $y+$h;
$courbe[] = $x+$w-$border['r']['width']; $courbe[] = $y+$h-$radius_v;
$courbe[] = $x+$w-$radius_h; $courbe[] = $y+$h-$border['b']['width'];
$courbe[] = $x+$w-$radius_h; $courbe[] = $y+$h-$radius_v;
$this->Courbe($courbe, $border['b']['color']);
$bord-=1;
$pt[2] -= $radius_h-$border['r']['width'];
$pt[10]-= $radius_h-$border['r']['width'];
unset($pt[0]);unset($pt[1]);
}
$pt = array_values($pt);
$this->Line($pt, $border['b']['color'], $border['b']['type'], $border['b']['width'], $bord);
}
if ($border['l']['width'] && $border['l']['color'][0]!==null)
{
$pt = array();
$pt[] = $x; $pt[] = $y+$h;
$pt[] = $x; $pt[] = $y+$h-$border['b']['width'];
$pt[] = $x; $pt[] = $y+$border['t']['width'];
$pt[] = $x; $pt[] = $y;
$pt[] = $x+$border['l']['width']; $pt[] = $y+$border['t']['width'];
$pt[] = $x+$border['l']['width']; $pt[] = $y+$h-$border['b']['width'];
$bord = 3;
if (is_array($coin_BL))
{
$courbe = array();
$courbe[] = $x+$radius_h; $courbe[] = $y+$h;
$courbe[] = $x; $courbe[] = $y+$h-$radius_v;
$courbe[] = $x+$radius_h; $courbe[] = $y+$h-$border['b']['width'];
$courbe[] = $x+$border['l']['width']; $courbe[] = $y+$h-$radius_v;
$courbe[] = $x+$radius_h; $courbe[] = $y+$h-$radius_v;
$this->Courbe($courbe, $border['l']['color']);
$bord-=1;
$pt[3] -= $radius_v-$border['b']['width'];
$pt[11]-= $radius_v-$border['b']['width'];
unset($pt[0]);unset($pt[1]);
}
if (is_array($coin_TL))
{
$bord-=2;
$pt[5] += $radius_v-$border['t']['width'];
$pt[9] += $radius_v-$border['t']['width'];
unset($pt[6]);unset($pt[7]);
}
$pt = array_values($pt);
$this->Line($pt, $border['l']['color'], $border['l']['type'], $border['l']['width'], $bord);
}
if ($border['t']['width'] && $border['t']['color'][0]!==null)
{
$pt = array();
$pt[] = $x; $pt[] = $y;
$pt[] = $x+$border['l']['width']; $pt[] = $y;
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y;
$pt[] = $x+$w; $pt[] = $y;
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y+$border['t']['width'];
$pt[] = $x+$border['l']['width']; $pt[] = $y+$border['t']['width'];
$bord = 3;
if (is_array($coin_TL))
{
$courbe = array();
$courbe[] = $x; $courbe[] = $y+$radius_v;
$courbe[] = $x+$radius_h; $courbe[] = $y;
$courbe[] = $x+$border['l']['width']; $courbe[] = $y+$radius_v;
$courbe[] = $x+$radius_h; $courbe[] = $y+$border['t']['width'];
$courbe[] = $x+$radius_h; $courbe[] = $y+$radius_v;
$this->Courbe($courbe, $border['t']['color']);
$bord-=1;
$pt[2] += $radius_h-$border['l']['width'];
$pt[10]+= $radius_h-$border['l']['width'];
unset($pt[0]);unset($pt[1]);
}
if (is_array($coin_TR))
{
$bord-=2;
$pt[4] -= $radius_h-$border['r']['width'];
$pt[8] -= $radius_h-$border['r']['width'];
unset($pt[6]);unset($pt[7]);
}
$pt = array_values($pt);
$this->Line($pt, $border['t']['color'], $border['t']['type'], $border['t']['width'], $bord);
}
if ($border['r']['width'] && $border['r']['color'][0]!==null)
{
$pt = array();
$pt[] = $x+$w; $pt[] = $y;
$pt[] = $x+$w; $pt[] = $y+$border['t']['width'];
$pt[] = $x+$w; $pt[] = $y+$h-$border['b']['width'];
$pt[] = $x+$w; $pt[] = $y+$h;
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y+$h-$border['b']['width'];
$pt[] = $x+$w-$border['r']['width']; $pt[] = $y+$border['t']['width'];
$bord = 3;
if (is_array($coin_TR))
{
$courbe = array();
$courbe[] = $x+$w-$radius_h; $courbe[] = $y;
$courbe[] = $x+$w; $courbe[] = $y+$radius_v;
$courbe[] = $x+$w-$radius_h; $courbe[] = $y+$border['t']['width'];
$courbe[] = $x+$w-$border['r']['width']; $courbe[] = $y+$radius_v;
$courbe[] = $x+$w-$radius_h; $courbe[] = $y+$radius_v;
$this->Courbe($courbe, $border['r']['color']);
$bord-=1;
$pt[3] += $radius_v-$border['t']['width'];
$pt[11]+= $radius_v-$border['t']['width'];
unset($pt[0]);unset($pt[1]);
}
if (is_array($coin_BR))
{
$bord-=2;
$pt[5] -= $radius_v-$border['b']['width'];
$pt[9] -= $radius_v-$border['b']['width'];
unset($pt[6]);unset($pt[7]);
}
$pt = array_values($pt);
$this->Line($pt, $border['r']['color'], $border['r']['type'], $border['r']['width'], $bord);
}
if ($background) $this->pdf->SetFillColor($background['color'][0], $background['color'][1], $background['color'][2]);
}
function Courbe($pt, $color)
{
$this->pdf->SetFillColor($color[0], $color[1], $color[2]);
$this->pdf->drawCourbe($pt[0], $pt[1], $pt[2], $pt[3], $pt[4], $pt[5], $pt[6], $pt[7], $pt[8], $pt[9]);
}
/**
* Tracer une ligne epaisse défini par ses points avec des extreminites en biseau
*
* @param array liste des points definissant le tour de la ligne
* @param float couleur RVB
* @param string type de ligne
* @param float largeur de la ligne
* @return null
*/
function Line($pt, $color, $type, $width, $bord=3)
{
$this->pdf->SetFillColor($color[0], $color[1], $color[2]);
if ($type=='dashed' || $type=='dotted')
{
if ($bord==1)
{
$tmp = array(); $tmp[]=$pt[0]; $tmp[]=$pt[1]; $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[8]; $tmp[]=$pt[9];
$this->pdf->Polygon($tmp, 'F');
$tmp = array(); $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[4]; $tmp[]=$pt[5]; $tmp[]=$pt[6]; $tmp[]=$pt[7]; $tmp[]=$pt[8]; $tmp[]=$pt[9];
$pt = $tmp;
}
else if ($bord==2)
{
$tmp = array(); $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[4]; $tmp[]=$pt[5]; $tmp[]=$pt[6]; $tmp[]=$pt[7];
$this->pdf->Polygon($tmp, 'F');
$tmp = array(); $tmp[]=$pt[0]; $tmp[]=$pt[1]; $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[6]; $tmp[]=$pt[7]; $tmp[]=$pt[8]; $tmp[]=$pt[9];
$pt = $tmp;
}
else if ($bord==3)
{
$tmp = array(); $tmp[]=$pt[0]; $tmp[]=$pt[1]; $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[10]; $tmp[]=$pt[11];
$this->pdf->Polygon($tmp, 'F');
$tmp = array(); $tmp[]=$pt[4]; $tmp[]=$pt[5]; $tmp[]=$pt[6]; $tmp[]=$pt[7]; $tmp[]=$pt[8]; $tmp[]=$pt[9];
$this->pdf->Polygon($tmp, 'F');
$tmp = array(); $tmp[]=$pt[2]; $tmp[]=$pt[3]; $tmp[]=$pt[4]; $tmp[]=$pt[5]; $tmp[]=$pt[8]; $tmp[]=$pt[9]; $tmp[]=$pt[10]; $tmp[]=$pt[11];
$pt = $tmp;
}
if ($pt[2]==$pt[0])
{
$l = abs(($pt[3]-$pt[1])*0.5);
$px = 0;
$py = $width;
$x1 = $pt[0]; $y1 = ($pt[3]+$pt[1])*0.5;
$x2 = $pt[6]; $y2 = ($pt[7]+$pt[5])*0.5;
}
else
{
$l = abs(($pt[2]-$pt[0])*0.5);
$px = $width;
$py = 0;
$x1 = ($pt[2]+$pt[0])*0.5; $y1 = $pt[1];
$x2 = ($pt[6]+$pt[4])*0.5; $y2 = $pt[7];
}
if ($type=='dashed')
{
$px = $px*3.;
$py = $py*3.;
}
$mode = ($l/($px+$py)<.5);
for($i=0; $l-($px+$py)*($i-0.5)>0; $i++)
{
if (($i%2)==$mode)
{
$j = $i-0.5;
$lx1 = $px*($j); if ($lx1<-$l) $lx1 =-$l;
$ly1 = $py*($j); if ($ly1<-$l) $ly1 =-$l;
$lx2 = $px*($j+1); if ($lx2>$l) $lx2 = $l;
$ly2 = $py*($j+1); if ($ly2>$l) $ly2 = $l;
$tmp = array();
$tmp[] = $x1+$lx1; $tmp[] = $y1+$ly1;
$tmp[] = $x1+$lx2; $tmp[] = $y1+$ly2;
$tmp[] = $x2+$lx2; $tmp[] = $y2+$ly2;
$tmp[] = $x2+$lx1; $tmp[] = $y2+$ly1;
$this->pdf->Polygon($tmp, 'F');
if ($j>0)
{
$tmp = array();
$tmp[] = $x1-$lx1; $tmp[] = $y1-$ly1;
$tmp[] = $x1-$lx2; $tmp[] = $y1-$ly2;
$tmp[] = $x2-$lx2; $tmp[] = $y2-$ly2;
$tmp[] = $x2-$lx1; $tmp[] = $y2-$ly1;
$this->pdf->Polygon($tmp, 'F');
}
}
}
}
else if ($type=='solid')
{
$this->pdf->Polygon($pt, 'F');
}
}
/**
* balise : BR
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_BR($param)
{
$h = $this->style->getLineHeight();
$h = max($this->maxH, $h);
$y = $this->pdf->getY();
// si la ligne est vide, la position maximale n'a pas été mise à jour => on la met à jour
if ($this->maxH==0) $this->maxY = max($this->maxY, $y+$h);
// si le saut de ligne rentre => on le prend en compte, sinon nouvelle page
if ($y+$h<$this->pdf->h - $this->pdf->bMargin) $this->setNewLine($h);
else $this->setNewPage();
$this->maxH = 0;
}
/**
* balise : HR
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_HR($param)
{
if ($this->maxH) $this->o_BR($param);
$f_size = $this->style->value['font-size'];
$this->style->value['font-size']=$f_size*0.5; $this->o_BR($param);
$this->style->value['font-size']=0;
$param['style']['width'] = '100%';
$this->style->save();
$this->style->value['height']=$this->style->ConvertToMM('1mm');
$this->style->analyse('hr', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$h = $this->style->value['height'];
if ($h) $h-= $this->style->value['border']['t']['width']+$this->style->value['border']['b']['width'];
if ($h<=0) $h = $this->style->value['border']['t']['width']+$this->style->value['border']['b']['width'];
$this->Rectangle($this->pdf->x, $this->pdf->y, $this->style->value['width'], $h, $this->style->value['border'], 0, 0, $this->style->value['background']);
$this->maxH = $h;
$this->style->load();
$this->style->FontSet();
$this->o_BR($param);
$this->style->value['font-size']=$f_size*0.5; $this->o_BR($param);
$this->style->value['font-size']=$f_size;
}
/**
* balise : B
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_B($param, $other = 'b')
{
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
function o_STRONG($param) { $this->o_B($param, 'strong'); }
/**
* balise : B
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_B($param)
{
$this->style->load();
$this->style->FontSet();
}
function c_STRONG($param) { $this->c_B($param); }
/**
* balise : I
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_I($param, $other = 'i')
{
$this->style->save();
$this->style->value['font-italic'] = true;
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
function o_ADDRESS($param) { $this->o_I($param, 'address'); }
function o_CITE($param) { $this->o_I($param, 'cite'); }
function o_EM($param) { $this->o_I($param, 'em'); }
function o_SAMP($param) { $this->o_I($param, 'samp'); }
/**
* balise : I
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_I($param)
{
$this->style->load();
$this->style->FontSet();
}
function c_ADDRESS($param) { $this->c_I($param); }
function c_CITE($param) { $this->c_I($param); }
function c_EM($param) { $this->c_I($param); }
function c_SAMP($param) { $this->c_I($param); }
/**
* balise : S
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_S($param)
{
$this->style->save();
$this->style->value['font-linethrough'] = true;
$this->style->analyse('s', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : S
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_S($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : U
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_U($param)
{
$this->style->save();
$this->style->value['font-underline'] = true;
$this->style->analyse('u', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : U
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_U($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : A
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_A($param)
{
$this->inLink = str_replace('&', '&', isset($param['href']) ? $param['href'] : '');
if (isset($param['name']))
{
$nom = $param['name'];
if (!isset($this->lstAncre[$nom])) $this->lstAncre[$nom] = array($this->pdf->AddLink(), false);
if (!$this->lstAncre[$nom][1])
{
$this->lstAncre[$nom][1] = true;
$this->pdf->SetLink($this->lstAncre[$nom][0], -1, -1);
}
}
if (preg_match('/^#([^#]+)$/isU', $this->inLink, $match))
{
$nom = $match[1];
if (!isset($this->lstAncre[$nom])) $this->lstAncre[$nom] = array($this->pdf->AddLink(), false);
$this->inLink = $this->lstAncre[$nom][0];
}
$this->style->save();
$this->style->value['font-underline'] = true;
$this->style->value['color'] = array(20, 20, 250);
$this->style->analyse('a', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : A
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_A($param)
{
$this->inLink = '';
$this->style->load();
$this->style->FontSet();
}
/**
* balise : H1
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H1($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('28px');
$this->style->analyse('h1', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H1
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H1($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : H2
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H2($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('24px');
$this->style->analyse('h2', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H2
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H2($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : H3
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H3($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('20px');
$this->style->analyse('h3', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H3
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H3($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : H4
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H4($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('16px');
$this->style->analyse('h4', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H4
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H4($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : H5
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H5($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('12px');
$this->style->analyse('h5', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H5
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H5($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : H6
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_H6($param)
{
$this->o_BR(array());
$this->style->save();
$this->style->value['font-bold'] = true;
$this->style->value['font-size'] = $this->style->ConvertToMM('9px');
$this->style->analyse('h6', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : H6
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_H6($param)
{
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
$this->o_BR(array());
}
/**
* balise : SPAN
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_SPAN($param, $other = 'span')
{
$this->style->save();
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
function o_FONT($param) { $this->o_SPAN($param, 'font'); }
/**
* balise : SPAN
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_SPAN($param)
{
$this->style->load();
$this->style->FontSet();
}
function c_FONT($param) { $this->c_SPAN($param); }
/**
* balise : P
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_P($param)
{
if (!in_array($this->previousCall, array('c_P', 'c_UL')))
{
if ($this->maxH) $this->o_BR(array());
$this->o_BR(array());
}
$this->style->save();
$this->style->analyse('p', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
if ($this->style->value['text-indent']>0) $this->pdf->x+= $this->style->value['text-indent'];
}
/**
* balise : P
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_P($param)
{
if ($this->maxH) $this->o_BR(array());
$this->o_BR(array());
$this->style->load();
$this->style->FontSet();
}
/**
* balise : PRE
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_PRE($param, $other = 'pre')
{
if ($other=='pre' && $this->maxH) $this->o_BR(array());
$this->style->save();
$this->style->value['font-family'] = 'courier';
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
if ($other=='pre') $this->o_DIV($param, $other);
}
function o_CODE($param) { $this->o_PRE($param, 'code'); }
/**
* balise : PRE
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_PRE($param, $other = 'pre')
{
if ($other=='pre')
{
$this->c_DIV($param);
$this->o_BR(array());
}
$this->style->load();
$this->style->FontSet();
}
function c_CODE($param) { $this->c_PRE($param, 'code'); }
/**
* balise : BIG
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_BIG($param)
{
$this->style->save();
$this->style->value['mini-decal']-= $this->style->value['mini-size']*0.2;
$this->style->value['mini-size'] *= 1.2;
$this->style->analyse('big', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : BIG
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_BIG($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : SMALL
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_SMALL($param)
{
$this->style->save();
$this->style->value['mini-decal']+= $this->style->value['mini-size']*0.18;
$this->style->value['mini-size'] *= 0.82;
$this->style->analyse('small', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : SMALL
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_SMALL($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : SUP
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_SUP($param)
{
$this->style->save();
$this->style->value['mini-decal']-= $this->style->value['mini-size']*0.25;
$this->style->value['mini-size'] *= 0.75;
$this->style->analyse('sup', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : SUP
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_SUP($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : SUB
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_SUB($param)
{
$this->style->save();
$this->style->value['mini-decal']+= $this->style->value['mini-size']*0.25;
$this->style->value['mini-size'] *= 0.75;
$this->style->analyse('sub', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$this->inSub = 1;
}
/**
* balise : SUB
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_SUB($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : UL
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_UL($param, $other = 'ul')
{
if (!in_array($this->previousCall, array('c_P', 'c_UL')))
{
if ($this->maxH) $this->o_BR(array());
if (!count($this->defLIST)) $this->o_BR(array());
}
if (!isset($param['style']['width'])) $param['allwidth'] = true;
$param['cellspacing'] = 0;
// une liste est traitée comme un tableau
$this->o_TABLE($param, $other);
// ajouter un niveau de liste
$this->listeAddLevel($other, $this->style->value['list-style-type'], $this->style->value['list-style-image']);
}
function o_OL($param) { $this->o_UL($param, 'ol'); }
/**
* balise : UL
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_UL($param)
{
// fin du tableau
$this->c_TABLE($param);
// enlever un niveau de liste
$this->listeDelLevel();
if (!$this->sub_part)
{
if (!count($this->defLIST)) $this->o_BR(array());
}
}
function c_OL($param) { $this->c_UL($param); }
/**
* balise : LI
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_LI($param)
{
// ajouter une puce au niveau actuel
$this->listeAddLi();
if (!isset($param['style']['width'])) $param['style']['width'] = '100%';
// preparation du style de la puce
$paramPUCE = $param;
$inf = $this->listeGetLi();
if ($inf[0])
{
$paramPUCE['style']['font-family'] = $inf[0];
$paramPUCE['style']['text-align'] = 'right';
$paramPUCE['style']['vertical-align'] = 'top';
$paramPUCE['style']['width'] = $this->listeGetWidth();
$paramPUCE['style']['padding-right'] = $this->listeGetPadding();
$paramPUCE['txt'] = $inf[2];
}
else
{
$paramPUCE['style']['text-align'] = 'right';
$paramPUCE['style']['vertical-align'] = 'top';
$paramPUCE['style']['width'] = $this->listeGetWidth();
$paramPUCE['style']['padding-right'] = $this->listeGetPadding();
$paramPUCE['src'] = $inf[2];
$paramPUCE['sub_li'] = true;
}
// nouvelle ligne
$this->o_TR($param, 'li');
$this->style->save();
if ($inf[1])
{
$this->style->value['mini-decal']+= $this->style->value['mini-size']*0.25;
$this->style->value['mini-size'] *= 0.75;
}
// si on est dans un sub_html => preparation, sinon affichage classique
if ($this->sub_part)
{
// TD pour la puce
$tmp_pos = $this->temp_pos;
$tmp_lst1 = $this->parsing->code[$tmp_pos+1];
$tmp_lst2 = $this->parsing->code[$tmp_pos+2];
$this->parsing->code[$tmp_pos+1] = array();
$this->parsing->code[$tmp_pos+1]['name'] = (isset($paramPUCE['src'])) ? 'img' : 'write';
$this->parsing->code[$tmp_pos+1]['param'] = $paramPUCE; unset($this->parsing->code[$tmp_pos+1]['param']['style']['width']);
$this->parsing->code[$tmp_pos+1]['close'] = 0;
$this->parsing->code[$tmp_pos+2] = array();
$this->parsing->code[$tmp_pos+2]['name'] = 'li';
$this->parsing->code[$tmp_pos+2]['param'] = $paramPUCE;
$this->parsing->code[$tmp_pos+2]['close'] = 1;
$this->o_TD($paramPUCE, 'li_sub');
$this->c_TD($param);
$this->temp_pos = $tmp_pos;
$this->parsing->code[$tmp_pos+1] = $tmp_lst1;
$this->parsing->code[$tmp_pos+2] = $tmp_lst2;
}
else
{
// TD pour la puce
$this->o_TD($paramPUCE, 'li_sub');
unset($paramPUCE['style']['width']);
if (isset($paramPUCE['src'])) $this->o_IMG($paramPUCE);
else $this->o_WRITE($paramPUCE);
$this->c_TD($paramPUCE);
}
$this->style->load();
// td pour le contenu
$this->o_TD($param, 'li');
}
/**
* balise : LI
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_LI($param)
{
// fin du contenu
$this->c_TD($param, 'li');
// fin de la ligne
$this->c_TR($param, 'li');
}
/**
* balise : TBODY
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TBODY($param)
{
$this->style->save();
$this->style->analyse('tbody', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : TBODY
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TBODY($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : THEAD
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_THEAD($param)
{
global $HTML2PDF_TABLEAU;
$this->style->save();
$this->style->analyse('thead', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// si on est en mode sub_html : sauvegarde du numéro du TR
if ($this->sub_part)
{
$HTML2PDF_TABLEAU[$param['num']]['thead']['tr'][0] = $HTML2PDF_TABLEAU[$param['num']]['tr_curr'];
$HTML2PDF_TABLEAU[$param['num']]['thead']['code'] = array();
for($pos=$this->temp_pos; $posparsing->code); $pos++)
{
$todo = $this->parsing->code[$pos];
if (strtolower($todo['name'])=='thead') $todo['name'] = 'thead_sub';
$HTML2PDF_TABLEAU[$param['num']]['thead']['code'][] = $todo;
if (strtolower($todo['name'])=='thead_sub' && $todo['close']) break;
}
}
else
{
$res = $this->parsing->getLevel($this->parse_pos);
$this->parse_pos = $res[0]-1;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr']+= count($HTML2PDF_TABLEAU[$param['num']]['thead']['tr']);
}
}
/**
* balise : THEAD
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_THEAD($param)
{
$this->style->load();
$this->style->FontSet();
// si on est en mode sub_html : sauvegarde du numéro du TR
if ($this->sub_part)
{
global $HTML2PDF_TABLEAU;
$min = $HTML2PDF_TABLEAU[$param['num']]['thead']['tr'][0];
$max = $HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1;
$HTML2PDF_TABLEAU[$param['num']]['thead']['tr'] = range($min, $max);
}
}
/**
* balise : TFOOT
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TFOOT($param)
{
global $HTML2PDF_TABLEAU;
$this->style->save();
$this->style->analyse('tfoot', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// si on est en mode sub_html : sauvegarde du numéro du TR
if ($this->sub_part)
{
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'][0] = $HTML2PDF_TABLEAU[$param['num']]['tr_curr'];
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['code'] = array();
for($pos=$this->temp_pos; $posparsing->code); $pos++)
{
$todo = $this->parsing->code[$pos];
if (strtolower($todo['name'])=='tfoot') $todo['name'] = 'tfoot_sub';
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['code'][] = $todo;
if (strtolower($todo['name'])=='tfoot_sub' && $todo['close']) break;
}
}
else
{
$res = $this->parsing->getLevel($this->parse_pos+1);
$this->parse_pos = $res[0];
$HTML2PDF_TABLEAU[$param['num']]['tr_curr']+= count($HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr']);
}
}
/**
* balise : TFOOT
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TFOOT($param)
{
$this->style->load();
$this->style->FontSet();
// si on est en mode sub_html : sauvegarde du numéro du TR
if ($this->sub_part)
{
global $HTML2PDF_TABLEAU;
$min = $HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'][0];
$max = $HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1;
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'] = range($min, $max);
}
}
/**
* balise : THEAD_SUB
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_THEAD_SUB($param)
{
$this->style->save();
$this->style->analyse('thead', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : THEAD_SUB
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_THEAD_SUB($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : TFOOT_SUB
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TFOOT_SUB($param)
{
$this->style->save();
$this->style->analyse('tfoot', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : TFOOT_SUB
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TFOOT_SUB($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : FORM
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_FORM($param)
{
$this->style->save();
$this->style->analyse('form', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
}
/**
* balise : FORM
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_FORM($param)
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : TABLE
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TABLE($param, $other = 'table')
{
$this->maxH = 0;
// utilisation du tableau des paramétres des tables
global $HTML2PDF_TABLEAU;
$align_object = isset($param['align']) ? strtolower($param['align']) : 'left';
if (isset($param['align'])) unset($param['align']);
if (!in_array($align_object, array('left', 'center', 'right'))) $align_object = 'left';
// lecture et initialisation du style
$this->style->save();
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
if ($this->style->value['margin-auto']) $align_object = 'center';
// est-on en collapse
$collapse = false;
if ($other=='table')
$collapse = isset($this->style->value['border']['collapse']) ? $this->style->value['border']['collapse'] : false;
// si oui il faut adapté les borders
if ($collapse)
{
$param['style']['border'] = 'none';
$param['cellspacing'] = 0;
$none = $this->style->readBorder('none');
$this->style->value['border']['t'] = $none;
$this->style->value['border']['r'] = $none;
$this->style->value['border']['b'] = $none;
$this->style->value['border']['l'] = $none;
}
// si on est en mode sub_html : initialisation des dimensions et autres
if ($this->sub_part)
{
$HTML2PDF_TABLEAU[$param['num']] = array();
$HTML2PDF_TABLEAU[$param['num']]['cellpadding'] = $this->style->ConvertToMM(isset($param['cellpadding']) ? $param['cellpadding'] : '1px'); // cellpadding du tableau
$HTML2PDF_TABLEAU[$param['num']]['cellspacing'] = $this->style->ConvertToMM(isset($param['cellspacing']) ? $param['cellspacing'] : '2px'); // cellspacing du tableau
$HTML2PDF_TABLEAU[$param['num']]['cases'] = array(); // liste des propriétés des cases
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = 0; // colonne courante
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = 0; // ligne courante
$HTML2PDF_TABLEAU[$param['num']]['curr_x'] = $this->pdf->getX(); // position courante X
$HTML2PDF_TABLEAU[$param['num']]['curr_y'] = $this->pdf->getY(); // position courante Y
$HTML2PDF_TABLEAU[$param['num']]['width'] = 0; // largeur globale
$HTML2PDF_TABLEAU[$param['num']]['height'] = 0; // hauteur globale
$HTML2PDF_TABLEAU[$param['num']]['align'] = $align_object;
$HTML2PDF_TABLEAU[$param['num']]['marge'] = array();
$HTML2PDF_TABLEAU[$param['num']]['marge']['t'] = $this->style->value['padding']['t']+$this->style->value['border']['t']['width']+$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5;
$HTML2PDF_TABLEAU[$param['num']]['marge']['r'] = $this->style->value['padding']['r']+$this->style->value['border']['r']['width']+$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5;
$HTML2PDF_TABLEAU[$param['num']]['marge']['b'] = $this->style->value['padding']['b']+$this->style->value['border']['b']['width']+$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5;
$HTML2PDF_TABLEAU[$param['num']]['marge']['l'] = $this->style->value['padding']['l']+$this->style->value['border']['l']['width']+$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5;
$HTML2PDF_TABLEAU[$param['num']]['page'] = 0; // nombre de pages
$HTML2PDF_TABLEAU[$param['num']]['new_page'] = true; // nouvelle page pour le TR courant
$HTML2PDF_TABLEAU[$param['num']]['style_value'] = null; // style du tableau
$HTML2PDF_TABLEAU[$param['num']]['thead'] = array(); // infos sur le thead
$HTML2PDF_TABLEAU[$param['num']]['tfoot'] = array(); // infos sur le tfoot
$HTML2PDF_TABLEAU[$param['num']]['thead']['tr'] = array(); // tr du thead
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'] = array(); // tr du tfoot
$HTML2PDF_TABLEAU[$param['num']]['thead']['height'] = 0; // hauteur du thead
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['height'] = 0; // hauteur du tfoot
$HTML2PDF_TABLEAU[$param['num']]['thead']['code'] = array(); // contenu HTML du thead
$HTML2PDF_TABLEAU[$param['num']]['tfoot']['code'] = array(); // contenu HTML du tfoot
$this->saveMargin($this->pdf->lMargin, $this->pdf->tMargin, $this->pdf->rMargin);
// adaptation de la largeur en fonction des marges du tableau
$this->style->value['width']-= $HTML2PDF_TABLEAU[$param['num']]['marge']['l'] + $HTML2PDF_TABLEAU[$param['num']]['marge']['r'];
}
else
{
// on repart à la premiere page du tableau et à la premiere case
$HTML2PDF_TABLEAU[$param['num']]['page'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['td_x'] = $HTML2PDF_TABLEAU[$param['num']]['marge']['l']+$HTML2PDF_TABLEAU[$param['num']]['curr_x'];
$HTML2PDF_TABLEAU[$param['num']]['td_y'] = $HTML2PDF_TABLEAU[$param['num']]['marge']['t']+$HTML2PDF_TABLEAU[$param['num']]['curr_y'];
// initialisation du style des bordures de la premiere partie de tableau
$this->Rectangle(
$HTML2PDF_TABLEAU[$param['num']]['curr_x'],
$HTML2PDF_TABLEAU[$param['num']]['curr_y'],
$HTML2PDF_TABLEAU[$param['num']]['width'],
isset($HTML2PDF_TABLEAU[$param['num']]['height'][0]) ? $HTML2PDF_TABLEAU[$param['num']]['height'][0] : null,
$this->style->value['border'],
$this->style->value['padding'],
0,
$this->style->value['background']
);
$HTML2PDF_TABLEAU[$param['num']]['style_value'] = $this->style->value;
}
}
/**
* balise : TABLE
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TABLE($param)
{
$this->maxH = 0;
global $HTML2PDF_TABLEAU;
// restauration du style
$this->style->load();
$this->style->FontSet();
// si on est en mode sub_html : initialisation des dimensions et autres
if ($this->sub_part)
{
// ajustement de la taille des cases
$this->calculTailleCases($HTML2PDF_TABLEAU[$param['num']]['cases']);
// calcul de la hauteur du THEAD et du TFOOT
$lst = array('thead', 'tfoot');
foreach($lst as $mode)
{
$HTML2PDF_TABLEAU[$param['num']][$mode]['height'] = 0;
foreach($HTML2PDF_TABLEAU[$param['num']][$mode]['tr'] as $tr)
{
// hauteur de la ligne tr
$h = 0;
for($i=0; $istyle->table[count($this->style->table)-1]) ? $this->style->table[count($this->style->table)-1] : $this->style->value;
$parent_w = $old['width'] ? $old['width'] : $this->pdf->w - $this->pdf->lMargin - $this->pdf->rMargin;
$x = $HTML2PDF_TABLEAU[$param['num']]['curr_x'];
$w = $HTML2PDF_TABLEAU[$param['num']]['width'];
if ($parent_w>$w)
{
if ($HTML2PDF_TABLEAU[$param['num']]['align']=='center')
$x = $x + ($parent_w-$w)*0.5;
else if ($HTML2PDF_TABLEAU[$param['num']]['align']=='right')
$x = $x + $parent_w-$w;
$HTML2PDF_TABLEAU[$param['num']]['curr_x'] = $x;
}
// calcul des dimensions du tableau - hauteur du tableau sur chaque page
$HTML2PDF_TABLEAU[$param['num']]['height'] = array();
$h0 = $HTML2PDF_TABLEAU[$param['num']]['marge']['t'] + $HTML2PDF_TABLEAU[$param['num']]['marge']['b']; // minimum de hauteur à cause des marges
$h0+= $HTML2PDF_TABLEAU[$param['num']]['thead']['height'] + $HTML2PDF_TABLEAU[$param['num']]['tfoot']['height']; // et du tfoot et thead
$max = $this->pdf->h - $this->pdf->bMargin; // max de hauteur par page
$y = $HTML2PDF_TABLEAU[$param['num']]['curr_y']; // position Y actuelle
$height = $h0;
// on va lire les hauteurs de chaque ligne, une à une, et voir si ca rentre sur la page.
for($k=0; $k la hauteur sur cette page est trouvée, et on passe à la page d'apres
if ($y+$h+$height>$max)
{
if ($height==$h0) $height = null;
$HTML2PDF_TABLEAU[$param['num']]['height'][] = $height;
$height = $h0;
$y = $this->margeTop;
}
$height+= $th;
}
// rajout du reste de tableau (si il existe) à la derniere page
if ($height!=$h0 || $k==0) $HTML2PDF_TABLEAU[$param['num']]['height'][] = $height;
}
else
{
if (count($HTML2PDF_TABLEAU[$param['num']]['tfoot']['code']))
{
$tmp_tr = $HTML2PDF_TABLEAU[$param['num']]['tr_curr'];
$tmp_td = $HTML2PDF_TABLEAU[$param['num']]['td_curr'];
$OLD_parse_pos = $this->parse_pos;
$OLD_parse_code = $this->parsing->code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'][0];
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = 0;
$this->parse_pos = 0;
$this->parsing->code = $HTML2PDF_TABLEAU[$param['num']]['tfoot']['code'];
$this->MakeHTMLcode();
$this->parse_pos = $OLD_parse_pos;
$this->parsing->code = $OLD_parse_code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $tmp_tr;
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = $tmp_td;
}
// determination des coordonnées de sortie du tableau
$x = $HTML2PDF_TABLEAU[$param['num']]['curr_x'] + $HTML2PDF_TABLEAU[$param['num']]['width'];
if (count($HTML2PDF_TABLEAU[$param['num']]['height'])>1)
$y = $this->margeTop+$HTML2PDF_TABLEAU[$param['num']]['height'][count($HTML2PDF_TABLEAU[$param['num']]['height'])-1];
else if (count($HTML2PDF_TABLEAU[$param['num']]['height'])==1)
$y = $HTML2PDF_TABLEAU[$param['num']]['curr_y']+$HTML2PDF_TABLEAU[$param['num']]['height'][count($HTML2PDF_TABLEAU[$param['num']]['height'])-1];
else
$y = $HTML2PDF_TABLEAU[$param['num']]['curr_y'];
// restauration des marges
$this->loadMargin();
// position de sortie du tableau
$this->pdf->setX($x);
$this->pdf->setY($y);
$this->maxX = max($this->maxX, $x);
$this->maxY = max($this->maxY, $y);
}
}
/**
* balise : TR
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TR($param, $other = 'tr')
{
$this->maxH = 0;
global $HTML2PDF_TABLEAU;
// analyse du style
$this->style->save();
$this->style->analyse($other, $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// positionnement dans le tableau
$HTML2PDF_TABLEAU[$param['num']]['tr_curr']++;
$HTML2PDF_TABLEAU[$param['num']]['td_curr']= 0;
// si on est pas dans un sub_html
if (!$this->sub_part)
{
// Y courant apres la ligne
$ty=null;
for($ii=0; $ii nouvelle page
if (!$this->isInTfoot && $HTML2PDF_TABLEAU[$param['num']]['td_y'] + $HTML2PDF_TABLEAU[$param['num']]['marge']['b'] + $ty +$hfoot> $this->pdf->h - $this->pdf->bMargin)
{
if (count($HTML2PDF_TABLEAU[$param['num']]['tfoot']['code']))
{
$tmp_tr = $HTML2PDF_TABLEAU[$param['num']]['tr_curr'];
$tmp_td = $HTML2PDF_TABLEAU[$param['num']]['td_curr'];
$OLD_parse_pos = $this->parse_pos;
$OLD_parse_code = $this->parsing->code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $HTML2PDF_TABLEAU[$param['num']]['tfoot']['tr'][0];
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = 0;
$this->parse_pos = 0;
$this->parsing->code = $HTML2PDF_TABLEAU[$param['num']]['tfoot']['code'];
$this->isInTfoot = true;
$this->MakeHTMLcode();
$this->isInTfoot = false;
$this->parse_pos = $OLD_parse_pos;
$this->parsing->code = $OLD_parse_code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $tmp_tr;
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = $tmp_td;
}
$HTML2PDF_TABLEAU[$param['num']]['new_page'] = true;
$this->setNewPage();
$HTML2PDF_TABLEAU[$param['num']]['page']++;
$HTML2PDF_TABLEAU[$param['num']]['curr_y'] = $this->pdf->getY();
$HTML2PDF_TABLEAU[$param['num']]['td_y'] = $HTML2PDF_TABLEAU[$param['num']]['curr_y']+$HTML2PDF_TABLEAU[$param['num']]['marge']['t'];
// si la hauteur de cette partie a bien été calculée, on trace le cadre
if (isset($HTML2PDF_TABLEAU[$param['num']]['height'][$HTML2PDF_TABLEAU[$param['num']]['page']]))
{
$old = $this->style->value;
$this->style->value = $HTML2PDF_TABLEAU[$param['num']]['style_value'];
// initialisation du style des bordures de la premiere partie de tableau
$this->Rectangle(
$HTML2PDF_TABLEAU[$param['num']]['curr_x'],
$HTML2PDF_TABLEAU[$param['num']]['curr_y'],
$HTML2PDF_TABLEAU[$param['num']]['width'],
$HTML2PDF_TABLEAU[$param['num']]['height'][$HTML2PDF_TABLEAU[$param['num']]['page']],
$this->style->value['border'],
$this->style->value['padding'],
$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5,
$this->style->value['background']
);
$this->style->value = $old;
}
}
if ($HTML2PDF_TABLEAU[$param['num']]['new_page'] && count($HTML2PDF_TABLEAU[$param['num']]['thead']['code']))
{
$HTML2PDF_TABLEAU[$param['num']]['new_page'] = false;
$tmp_tr = $HTML2PDF_TABLEAU[$param['num']]['tr_curr'];
$tmp_td = $HTML2PDF_TABLEAU[$param['num']]['td_curr'];
$OLD_parse_pos = $this->parse_pos;
$OLD_parse_code = $this->parsing->code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $HTML2PDF_TABLEAU[$param['num']]['thead']['tr'][0];
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = 0;
$this->parse_pos = 0;
$this->parsing->code = $HTML2PDF_TABLEAU[$param['num']]['thead']['code'];
$this->MakeHTMLcode();
$this->parse_pos = $OLD_parse_pos;
$this->parsing->code = $OLD_parse_code;
$HTML2PDF_TABLEAU[$param['num']]['tr_curr'] = $tmp_tr;
$HTML2PDF_TABLEAU[$param['num']]['td_curr'] = $tmp_td;
$HTML2PDF_TABLEAU[$param['num']]['new_page'] = true;
}
}
else
{
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1] = array();
}
}
/**
* balise : TR
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TR($param)
{
$this->maxH = 0;
global $HTML2PDF_TABLEAU;
// restauration du style
$this->style->load();
$this->style->FontSet();
// si on est pas dans un sub_html
if (!$this->sub_part)
{
// Y courant apres la ligne
$ty=null;
for($ii=0; $iimaxH = 0;
global $HTML2PDF_TABLEAU;
$param['cellpadding'] = $HTML2PDF_TABLEAU[$param['num']]['cellpadding'].'mm';
$param['cellspacing'] = $HTML2PDF_TABLEAU[$param['num']]['cellspacing'].'mm';
if ($other=='li')
{
$special_li = true;
}
else
{
$special_li = false;
if ($other=='li_sub')
{
$param['style']['border'] = 'none';
$param['style']['background-color'] = 'transparent';
$param['style']['background-image'] = 'none';
$param['style']['background-position'] = '';
$param['style']['background-repeat'] = '';
$other = 'li';
}
}
// est-on en collapse
$collapse = false;
if (in_array($other, array('td', 'th')))
$collapse = isset($this->style->value['border']['collapse']) ? $this->style->value['border']['collapse'] : false;
// analyse du style
$this->style->save();
$this->style->analyse($other, $param);
if ($special_li)
{
$this->style->value['width']-= $this->style->ConvertToMM($this->listeGetWidth());
$this->style->value['width']-= $this->style->ConvertToMM($this->listeGetPadding());
}
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// si on est en collapse : modification du style
if ($collapse)
{
if (!$this->sub_part)
{
if ($HTML2PDF_TABLEAU[$param['num']]['tr_curr']>1 && !$HTML2PDF_TABLEAU[$param['num']]['new_page'])
$this->style->value['border']['t'] = $this->style->readBorder('none');
}
if ($HTML2PDF_TABLEAU[$param['num']]['td_curr']>0)
$this->style->value['border']['l'] = $this->style->readBorder('none');
}
$marge = array();
$marge['t'] = $this->style->value['padding']['t']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['t']['width'];
$marge['r'] = $this->style->value['padding']['r']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['r']['width'];
$marge['b'] = $this->style->value['padding']['b']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['b']['width'];
$marge['l'] = $this->style->value['padding']['l']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['l']['width'];
// si on est dans un sub_html
if ($this->sub_part)
{
// on se positionne dans le tableau
$HTML2PDF_TABLEAU[$param['num']]['td_curr']++;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1] = array();
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['w'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['h'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['dw'] = 0;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['colspan'] = isset($param['colspan']) ? $param['colspan'] : 1;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['rowspan'] = isset($param['rowspan']) ? $param['rowspan'] : 1;
// on extrait tout ce qui est contenu dans le TD
$res = $this->parsing->getLevel($this->temp_pos);
// on en créé un sous HTML que l'on transforme en PDF
// pour analyse les dimensions
// et les récupérer dans le tableau global.
$this->CreateSubHTML($this->sub_html);
$this->sub_html->writeHTML($res[1]);
$this->temp_pos = $res[0]-2;
}
else
{
// on se positionne dans le tableau
$HTML2PDF_TABLEAU[$param['num']]['td_curr']++;
$HTML2PDF_TABLEAU[$param['num']]['td_x']+= $HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['dw'];
// initialisation du style des bordures de la premiere partie de tableau
$this->Rectangle(
$HTML2PDF_TABLEAU[$param['num']]['td_x'],
$HTML2PDF_TABLEAU[$param['num']]['td_y'],
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['w'],
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['h'],
$this->style->value['border'],
$this->style->value['padding'],
$HTML2PDF_TABLEAU[$param['num']]['cellspacing']*0.5,
$this->style->value['background']
);
$this->style->value['width'] = $HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['w'] - $marge['l'] - $marge['r'];
// limitation des marges aux dimensions de la case
$mL = $HTML2PDF_TABLEAU[$param['num']]['td_x']+$marge['l'];
$mR = $this->pdf->w - $mL - $this->style->value['width'];
$this->saveMargin($mL, 0, $mR);
// positionnement en fonction
$h_corr = $HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['h'];
$h_reel = $HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['real_h'];
switch($this->style->value['vertical-align'])
{
case 'bottom':
$y_corr = $h_corr-$h_reel;
break;
case 'middle':
$y_corr = ($h_corr-$h_reel)*0.5;
break;
case 'top':
default:
$y_corr = 0;
break;
}
$this->pdf->setX($HTML2PDF_TABLEAU[$param['num']]['td_x']+$marge['l']);
$this->pdf->setY($HTML2PDF_TABLEAU[$param['num']]['td_y']+$marge['t']+$y_corr);
}
}
/**
* balise : TD
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TD($param)
{
$this->maxH = 0;
global $HTML2PDF_TABLEAU;
// récupération de la marge
$marge = array();
$marge['t'] = $this->style->value['padding']['t']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['t']['width'];
$marge['r'] = $this->style->value['padding']['r']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['r']['width'];
$marge['b'] = $this->style->value['padding']['b']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['b']['width'];
$marge['l'] = $this->style->value['padding']['l']+0.5*$HTML2PDF_TABLEAU[$param['num']]['cellspacing']+$this->style->value['border']['l']['width'];
$marge['t']+= 0.01;
$marge['r']+= 0.01;
$marge['b']+= 0.01;
$marge['l']+= 0.01;
// si on est dans un sub_html
if ($this->sub_part)
{
if ($this->testTDin1page && $this->sub_html->pdf->page>1) HTML2PDF::makeError(7, __FILE__, __LINE__);
// dimentions de cette case
$w0 = $this->sub_html->maxX + $marge['l'] + $marge['r'];
$h0 = $this->sub_html->maxY + $marge['t'] + $marge['b'];
// dimensions imposées par le style
$w2 = $this->style->value['width'] + $marge['l'] + $marge['r'];
$h2 = $this->style->value['height'] + $marge['t'] + $marge['b'];
// dimension finale de la case = max des 2 ci-dessus
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['w'] = max(array($w0, $w2));
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['h'] = max(array($h0, $h2));
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['real_w'] = $w0;
$HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['real_h'] = $h0;
// suppresion du sous_html
$this->DestroySubHTML();
}
else
{
$this->loadMargin();
//positionnement
$HTML2PDF_TABLEAU[$param['num']]['td_x']+= $HTML2PDF_TABLEAU[$param['num']]['cases'][$HTML2PDF_TABLEAU[$param['num']]['tr_curr']-1][$HTML2PDF_TABLEAU[$param['num']]['td_curr']-1]['w'];
}
// restauration du style
$this->style->load();
$this->style->FontSet();
}
function calculTailleCases(&$cases)
{
// construction d'un tableau de correlation
$corr = array();
// on fait correspondre chaque case d'un tableau normé aux cases réelles, en prennant en compte les colspan et rowspan
$Yr=0;
for($y=0; $y0) ? '' : array($x, $y, $cases[$y][$x]['colspan'], $cases[$y][$x]['rowspan']);
}
}
$Xr+= $cases[$y][$x]['colspan'];
while(isset($corr[$Yr][$Xr])) $Xr++;
}
$Yr++;
}
if (!isset($corr[0])) return true;
// on détermine, pour les cases sans colspan, la largeur maximale de chaque colone
$sw = array();
for($x=0; $x1)
{
// somme des colonnes correspondant au colspan
$s = 0; for($i=0; $i<$corr[$y][$x][2]; $i++) $s+= $sw[$x+$i];
// si la somme est inférieure à la taille necessaire => règle de 3 pour adapter
if ($s>0 && $s<$cases[$corr[$y][$x][1]][$corr[$y][$x][0]]['w'])
for($i=0; $i<$corr[$y][$x][2]; $i++)
$sw[$x+$i] = $sw[$x+$i]/$s*$cases[$corr[$y][$x][1]][$corr[$y][$x][0]]['w'];
}
}
}
// on applique les nouvelles largeurs
for($x=0; $x1)
{
// somme des colonnes correspondant au colspan
$s = 0; for($i=0; $i<$corr[$y][$x][3]; $i++) $s+= $sh[$y+$i];
// si la somme est inférieure à la taille necessaire => règle de 3 pour adapter
if ($s>0 && $s<$cases[$corr[$y][$x][1]][$corr[$y][$x][0]]['h'])
for($i=0; $i<$corr[$y][$x][3]; $i++)
$sh[$y+$i] = $sh[$y+$i]/$s*$cases[$corr[$y][$x][1]][$corr[$y][$x][0]]['h'];
}
}
}
// on applique les nouvelles hauteurs
for($y=0; $ymaxH = 0;
// identique à TD mais en gras
if (!isset($param['style']['font-weight'])) $param['style']['font-weight'] = 'bold';
$this->o_TD($param, 'th');
}
/**
* balise : TH
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TH($param)
{
$this->maxH = 0;
// identique à TD
$this->c_TD($param);
}
/**
* balise : IMG
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_IMG($param)
{
// analyse du style
$src = str_replace('&', '&', $param['src']);
$this->style->save();
$this->style->value['width'] = 0;
$this->style->value['height'] = 0;
$this->style->value['border'] = array(
'type' => 'none',
'width' => 0,
'color' => array(0, 0, 0),
);
$this->style->value['background'] = array(
'color' => null,
'image' => null,
'position' => null,
'repeat' => null
);
$this->style->analyse('img', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// affichage de l'image
$this->Image($src, isset($param['sub_li']));
// restauration du style
$this->style->load();
$this->style->FontSet();
}
/**
* balise : SELECT
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_SELECT($param)
{
// preparation du champs
if (!isset($param['name'])) $param['name'] = 'champs_pdf_'.(count($this->lstChamps)+1);
$param['name'] = strtolower($param['name']);
if (isset($this->champs[$param['name']]))
$this->champs[$param['name']]++;
else
$this->champs[$param['name']] = 1;
$this->style->save();
$this->style->analyse('select', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$this->lstSelect = array();
$this->lstSelect['name'] = $param['name'];
$this->lstSelect['multi'] = isset($param['multiple']) ? true : false;
$this->lstSelect['size'] = isset($param['size']) ? $param['size'] : 1;
$this->lstSelect['options'] = array();
if ($this->lstSelect['multi'] && $this->lstSelect['size']<3) $this->lstSelect['size'] = 3;
}
/**
* balise : OPTION
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_OPTION($param)
{
// on extrait tout ce qui est contenu dans l'option
$res = $this->parsing->getLevel($this->parse_pos);
$this->parse_pos = $res[0]-2;
$texte = $res[1];
$value = isset($param['value']) ? $param['value'] : 'auto_opt_'.(count($this->lstSelect)+1);
$this->lstSelect['options'][$value] = $texte;
}
/**
* balise : OPTION
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_OPTION($param) { }
/**
* balise : SELECT
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_SELECT()
{
// position d'affichage
$x = $this->pdf->getX();
$y = $this->pdf->getY();
$f = 1.08*$this->style->value['font-size'];
$w = $this->style->value['width']; if (!$w) $w = 50;
$h = ($f*1.07*$this->lstSelect['size'] + 1);
$prop = array();
if ($this->lstSelect['multi']) $prop['multipleSelection'] = true;
$this->pdf->form_Select($this->lstSelect['name'], $x, $y, $w, $h, $this->lstSelect['options'], $this->lstSelect['size']>1, $prop);
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->maxH = max($this->maxH, $h);
$this->pdf->setX($x+$w);
$this->style->load();
$this->style->FontSet();
$this->lstSelect = array();
}
/**
* balise : TEXTAREA
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_TEXTAREA($param)
{
// preparation du champs
if (!isset($param['name'])) $param['name'] = 'champs_pdf_'.(count($this->lstChamps)+1);
$param['name'] = strtolower($param['name']);
if (isset($this->champs[$param['name']]))
$this->champs[$param['name']]++;
else
$this->champs[$param['name']] = 1;
$this->style->save();
$this->style->analyse('textarea', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
// position d'affichage
$x = $this->pdf->getX();
$y = $this->pdf->getY();
$fx = 0.65*$this->style->value['font-size'];
$fy = 1.08*$this->style->value['font-size'];
// on extrait tout ce qui est contenu dans le textarea
$res = $this->parsing->getLevel($this->parse_pos);
$this->parse_pos = $res[0]-2;
$texte = $res[1];
$w = $fx*(isset($param['cols']) ? $param['cols'] : 22)+1;
$h = $fy*1.07*(isset($param['rows']) ? $param['rows'] : 3)+3;
// if ($this->style->value['width']) $w = $this->style->value['width'];
// if ($this->style->value['height']) $h = $this->style->value['height'];
$prop = array();
$prop['value'] = $texte;
$prop['multiline'] = true;
$this->pdf->form_InputText($param['name'], $x, $y, $w, $h, $prop);
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->maxH = max($this->maxH, $h);
$this->pdf->setX($x+$w);
}
/**
* balise : TEXTAREA
* mode : FERMETURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function c_TEXTAREA()
{
$this->style->load();
$this->style->FontSet();
}
/**
* balise : INPUT
* mode : OUVERTURE
*
* @param array paramètres de l'élément de parsing
* @return null
*/
function o_INPUT($param)
{
// preparation du champs
if (!isset($param['name'])) $param['name'] = 'champs_pdf_'.(count($this->lstChamps)+1);
if (!isset($param['value'])) $param['value'] = '';
if (!isset($param['type'])) $param['type'] = 'text';
$param['name'] = strtolower($param['name']);
$param['type'] = strtolower($param['type']);
if (!in_array($param['type'], array('text', 'checkbox', 'radio', 'hidden', 'submit', 'reset', 'button'))) $param['type'] = 'text';
if (isset($this->champs[$param['name']]))
$this->champs[$param['name']]++;
else
$this->champs[$param['name']] = 1;
$this->style->save();
$this->style->analyse('input', $param);
$this->style->setPosition($this->pdf->x, $this->pdf->y);
$this->style->FontSet();
$name = $param['name'];
// position d'affichage
$x = $this->pdf->getX();
$y = $this->pdf->getY();
$f = 1.08*$this->style->value['font-size'];
switch($param['type'])
{
case 'checkbox':
$w = 3;
$h = $w;
if ($h<$f) $y+= ($f-$h)*0.5;
$this->pdf->form_InputCheckBox($name, $x, $y, $w, isset($param['checked']));
break;
case 'radio':
$w = 3;
$h = $w;
if ($h<$f) $y+= ($f-$h)*0.5;
$this->pdf->form_InputRadio($name, $x, $y, $w);
break;
case 'hidden':
$w = 0;
$h = 0;
$this->pdf->form_InputHidden($name, $param['value']);
break;
case 'text':
$w = $this->style->value['width']; if (!$w) $w = 40;
$h = $f*1.3;
$prop = array();
$prop['value'] = $param['value'];
$this->pdf->form_InputText($name, $x, $y, $w, $h, $prop);
break;
case 'submit':
case 'reset':
case 'button':
$action = isset($param['onclick']) ? $param['onclick'] : '';
$w = $this->style->value['width']; if (!$w) $w = 40;
$h = $this->style->value['height']; if (!$h) $h = $f*1.3;
$prop = array();
$this->pdf->form_InputButton($name, $x, $y, $w, $h, $param['value'], $action, $prop);
break;
default:
$w = 0;
$h = 0;
break;
}
$this->maxX = max($this->maxX, $x+$w);
$this->maxY = max($this->maxY, $y+$h);
$this->maxH = max($this->maxH, $h);
$this->pdf->setX($x+$w);
$this->style->load();
$this->style->FontSet();
}
function textLOAD($langue)
{
if (!preg_match('/^([a-z0-9]+)$/isU', $langue))
{
echo 'ERROR : language code '.$langue.' incorrect.';
exit;
}
$file = dirname(__FILE__).'/langues/'.strtolower($langue).'.txt';
if (!is_file($file))
{
echo 'ERROR : language code '.$langue.' unknown.
';
echo 'You can create the translation file '.$file.' and send it to me in order to integrate it into a future version.';
exit;
}
$texte = array();
$infos = file($file);
foreach($infos as $val)
{
$val = trim($val);
$val = explode("\t", $val);
if (count($val)<2) continue;
$t_k = trim($val[0]); unset($val[0]);
$t_v = trim(implode(' ', $val));
if ($t_k && $t_v) $texte[$t_k] = $t_v;
}
global $HTML2PDF_TEXTE_FILE;
$HTML2PDF_TEXTE_FILE = $texte;
}
function textGET($key)
{
global $HTML2PDF_TEXTE_FILE;
if (!isset($HTML2PDF_TEXTE_FILE[$key])) return '######';
return $HTML2PDF_TEXTE_FILE[$key];
}
function makeError($err, $file, $line, $other = null)
{
$msg = '';
switch($err)
{
case 1:
$msg = (HTML2PDF::textGET('err01'));
$msg = str_replace('[[OTHER]]', $other, $msg);
break;
case 2:
$msg = (HTML2PDF::textGET('err02'));
$msg = str_replace('[[OTHER_0]]', $other[0], $msg);
$msg = str_replace('[[OTHER_1]]', $other[1], $msg);
$msg = str_replace('[[OTHER_2]]', $other[2], $msg);
break;
case 3:
$msg = (HTML2PDF::textGET('err03'));
$msg = str_replace('[[OTHER]]', $other, $msg);
break;
case 4:
$msg = (HTML2PDF::textGET('err04'));
$msg = str_replace('[[OTHER]]', print_r($other, true), $msg);
break;
case 5:
$msg = (HTML2PDF::textGET('err05'));
$msg = str_replace('[[OTHER]]', print_r($other, true), $msg);
break;
case 6:
$msg = (HTML2PDF::textGET('err06'));
$msg = str_replace('[[OTHER]]', $other, $msg);
break;
case 7:
$msg = (HTML2PDF::textGET('err07'));
break;
}
echo ''.(HTML2PDF::textGET('txt01')).$err.'
';
echo (HTML2PDF::textGET('txt02')).' '.$file.'
';
echo (HTML2PDF::textGET('txt03')).' '.$line.'
';
echo '
';
echo $msg;
exit;
}
}
}