openhtmltopdf icon indicating copy to clipboard operation
openhtmltopdf copied to clipboard

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

Results 217 openhtmltopdf issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/54296655/179435535-90684aa4-70a8-4b4e-951d-032a866b5320.png) In my requirement, I only want to get a page of pdf, but the document does not have this attribute, so I look at it from the perspective of...

if I embedded image directly in img tag that work `` But if I do ``` .logo2 { background-image:url("data:image/png;base64,...."); background-size: 100px 100px; } ``` and in the html ` `...

text-align: justify dont work in textarea tag

I'm using `Open HTML to PDF` to generate PDF reports from simple html tables. Sometimes, tables contain a big number of columns which overflows the right margin of the page....

Hi, I'm just wondering if there is a rough roadmap or a goal that needs to be fulfilled for the next release. I'm seeing quite a number of bugfixes in...

Hello, I found an issue when using margin-left on table. Reproducer: ``` @page { size: 200px 250px; margin: 10px 10px 10px 10px; } html { font-family: sans-serif; font-size: 14px; margin:...

Using Java 8, Windows, openhtmltopdf v1.0.10. I tried recreating the example from https://github.com/danfickle/openhtmltopdf/issues/352 HTML: ``` @page { margin: 50px 20px; @bottom-left { content: element(whatever); } } This is some richly...

Hi all, is it possible to render a PDF from multiple input files/strings, like in [this example](https://github.com/flyingsaucerproject/flyingsaucer/blob/master/flying-saucer-examples/src/main/java/PDFRenderToMultiplePages.java) from flyingsaucer? I had a problem with flyingsaucer, it throws something like "Page...

hi, I have the following HTML table: In HTML (my editor page) it´s like this: Real HTML page: And in PDF it´s like this: As you can see there a...

Hi i am able to create a pdf using a html file. but i am unsure how to add dynamic data to the html in java? How do i add...