danfickle / openhtmltopdf

An HTML to PDF library for the JVM. Based on Flying Saucer and Apache PDF-BOX 2. With SVG image support. Now also with accessible PDF support (WCAG, Section 508, PDF/UA)!
https://danfickle.github.io/pdf-templates/index.html
Other
1.93k stars 360 forks source link

the <img> tag into the <td> cant't display #877

Open pipti opened 2 years ago

pipti commented 2 years ago

Hi: The following code ,the img cant't display:

<table>
    <tr><td >
        <img src="examples/example1/a.png" style="width:10%"/>
    </td></tr>
</table>

but if the style width is the px,can display.

The following code ,the img can display:

<div><img src="examples/example1/a.png" style="width:10%"/></div>