[Résolu]Image Ne S'affiche Pas Avec L'extention Fpdf.php

Bonjour,

je suis entrain de creer un fichier pdf via fpdf.php.


function Header()

{

// Logo

$this->Image('logo.png',10,6,30);

// Arial bold 15

$this->SetFont('Arial','B',15);

// Move to the right

$this->Cell(80);

// Title

$this->Cell(30,10,'Title',1,0,'C');

// Line break

$this->Ln(20);

}...

J’ai tout qui s’affiche à part l’image logo.png.

Ou je dois mettre cette image svp?

Ou autre solution.

Merci infiniment

Bonsoir,

j’ai utilisé ça et ça fonctionne bien.

Merci


$this->Image('images/logo1.png',15,7,30);