I have a table contains multiple rows and each row has an image.
<table>
<tr>
<td style="">
<img src="<?php echo $img_path; ?>" />
<?php echo ucwords($name); ?>
</td>
<td style="">
<span style="border-bottom: 1px solid;margin-left: 98px;">
<?php echo $date; ?></span>
</td>
</tr>
<tr>
<td>
<?php echo $role; ?>
Signature
</td>
<td style="">
Date
</td>
</tr>
</table>
Is it possible in HTML2PDF to show images as shown in html rather than using his built in functions?