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)!

Home Page:https://danfickle.github.io/pdf-templates/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Image with CSS max-width and max-height incorrectly scaled up

koan00 opened this issue · comments

When the image supplied is smaller than both the max-width and max-height, the image is scaled up. Css max attributes should only result in down scale. When only one of the two max attributes is supplied, the up-scaling does not occur.

<html><head></head><body>
<img style="max-height: 950px; max-width: 710px" src="https://pbs.twimg.com/profile_images/638747380494503936/C89d1hl3_400x400.jpg" />
</body></html>