Bonjour,

J'utilise une fonte Arial/12/Bold dans les textes du header d'un tableau construit avec $PDF->drawTableau().

$proprieteHeader = array(
'T_COLOR' => array(150,10,10),
'T_SIZE' => 12,
'T_FONT' => 'Arial',
'T_ALIGN' => 'R',
'V_ALIGN' => 'T',
'T_TYPE' => 'B',
'LN_SIZE' => 7,
'BG_COLOR_COL0' => array(170, 240, 230),
'BG_COLOR' => array(170, 240, 230),
'BRD_COLOR' => array(0,92,177),
'BRD_SIZE' => 0.2,
'BRD_TYPE' => '1',
'BRD_TYPE_NEW_PAGE' => '',
);
Lorsque je crée ce tableau en portrait, avec $PDF->AddPage(); ou $PDF->AddPage('P'); les propriétés du header correspondent bien à la demande.
Mais quand je le crée en paysage (landscape) avec $PDF->AddPage('L'); la propriété Bold n'est pas prise en compte, alors que les autres sont normalement traitées.
Une idée ?
Merci d'avance.