Search code examples
laravelmpdf

Is it possible to put Images in table's **td** tag in mpdf Laravel library


I am trying to add an 100 X 100 pixel image in a table in mpdf. But the table disappears when I do so.

<table>
   <tr>
       <td><img src="https://someimage.jpg" width=100 height=100></td>
   </tr>
</table>

But when I use tag outside table it fetches the image and shows it perfectly fine.

How do I put image in table in mpdf (is there any trick)?


Solution

  • It is possible to put images in a table in mpdf. Earlier i was making syntax mistake. I had forgot a comma. Sorry for inconvineance.

    <table>
       <tr>
           <td><img src="https://someimage.jpg" style="height:50px; width:100px;"></td>
       </tr>
    </table>