I want to display image from MySQL to PDF using FPDF library. the image that i stored in MySQL is BLOB. I already success to display the image. The current code will be like this.
$logo = $row['photo_before'];
$pdf->MemImage(base64_decode($logo), 100, 50);
But, how I want to put the $logo to a cell? My current code for the cell as below:
$pdf->Cell(95,50,'$logo',1,0, 'C');
Can anyone help me?
$logo. - Dave