Closed jussimattila closed 3 years ago
Hi,
I updated today to the latest version of IronPdf 2021.9.3678, and switched from HtmlToPdf to ChromePdfRendered. HTML looks like this in Chrome:
HtmlToPdf
ChromePdfRendered
Output PDF looks like this, text is missing and only a box is visible:
The problematic element is an input with some styling: <input type='text' class='report-info' value='Bruce Wayne' />
<input type='text' class='report-info' value='Bruce Wayne' />
.report-info { font-family:Fira Sans,Helvetica,Arial,sans-serif; font-size:14px; text-align:left; text-overflow:ellipsis; border:0; background:transparent; padding:0; width:100% }
Found it: option CreatePdfFormsFromHtml - Turns all HTML forms elements into editable PDF forms. Setting it to false allowed the input contents to be rendered!
CreatePdfFormsFromHtml
Hi,
I updated today to the latest version of IronPdf 2021.9.3678, and switched from
HtmlToPdf
toChromePdfRendered
. HTML looks like this in Chrome:Output PDF looks like this, text is missing and only a box is visible:
The problematic element is an input with some styling:
<input type='text' class='report-info' value='Bruce Wayne' />