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

I have to set a writing on the side of the page vertically. The css command "writing-mode: tb-rl" is not supported and so I don't know how I can fix...

If i check a document with a screenreader preview the elements are right detected if they are position relative: ![grafik](https://user-images.githubusercontent.com/75724274/120197617-71917700-c221-11eb-8aa9-c1efee567abb.png) ``` Hallo ``` If i added the position absolute property...

bug

See PR #913 for example of a failing form. The coordinates are always calculated relative to the last page of the PDF which wont work.

Fixes #914 Forms on PDFs with multiple pages that are not on the last page are broken. They get the last pages RenderingContext and that will calculate wrong coordinates. With...

Fixes #681 This adds the signature field as requested in #681 :-) An example form-signature-field.html is included. I couldn't get the formatting perfect, hope it's Ok. I had to pass...

Is it possible to map a html form with a special element, ex `, ` to a pdfbox digital signature field (org.apache.pdfbox.pdmodel.interactive.form.PDSignatureField) ?

Here's my css for a table cell: ``` overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ``` The HTML: ``` 29010180A735 Some very large text which doesn't fit into the cell ```...

Well it would be really nice if possible :)

How do I add images to the PDF without using a link or base64 string ? ``` byte[] bytArr = oHelper.GetImageFromFirebase(imgUrl, false); ``` The reason why link is not available...

I've got a page that has multiple footnote references that need to go to the same footnote at the bottom of the page. Something like this: ```` html This is...