J'utilise l'outil xhmtl2pd pour convertir html en pdf. Voici un morceau de mon html
<tr>
<td style="width:10px;vertical-align:top">• </td>
<td style="padding:0 0 5px 0;width:200px;display:inline-block">
blah blah <br/>
<img src="images/little-gray-arrow.png" height="10" width="11" alt="blah" />
</td>
</tr>
Ce qui est bizarre, c'est que si j'enlève la balise br, l'image little-gray-arrow.png n'apparaît jamais. Si je remets la balise br, l'image apparaît dans la ligne "next". J'ai essayé avec toutes les options, padding, margin, et aucune ne fonctionne.
J'ai également essayé d'afficher une image en ligne entre du texte, et la moitié inférieure de l'image clock.png est toujours coupée, peu importe ce que j'ai essayé.
<tr>
<td style="width:10px;vertical-align:top">• </td>
<td style="padding:0 0 5px 0;width:200px;">
Wait
<img src="images/clock.png" height="20" width="20" alt="20" />
minutes
</td>
</tr>
Est-ce que quelqu'un sait comment résoudre ce problème et si c'est juste la façon dont xhmtl2pdf est. Le xhtml2pdf peut-il afficher une image en ligne ?
Gracias