How to Include Image base64 in table to export like pdf
How to Include Image base64 in table to export like pdf
PizzaFrenzy
Posts: 3Questions: 2Answers: 0
this for the table
<tr>
<td><?= $no++; ?></td>
<td><?= $row['nama']; ?></td>
<td><?= $row['no_tlp']; ?></td>
<td><?= $row['lokasi']; ?></td>
<td><?= $row['deskripsi']; ?></td>
<td ><img style="width: 80px; hight: 100px;" src='data:image/png;base64,<?= $row['image']; ?>'></td>
<td><?= $row['status']; ?></td>
<td><?= $row['tgl_buat']; ?></td>
</tr>
when i click pdf or print or other else, the image is not include it will be empty column, someone can help me? thanks
Answers
This thread should help, it's asking the same thing.
Colin