HTMLToQPDF
HTMLToQPDF copied to clipboard
HTMLToQPDF is an extension for QuestPDF that allows to generate PDF from HTML
@Relorer @JeremyVm table getting messed u ``` var html = "ASCVD RISK CATEGORY@CONSIDER THERAPYTREATMENT GOALLDL CHOLESTEROL(LDL-C)(mg/dL)NON HDL CHLOESTEROL(NON HDL-C) (mg/dL)LDL CHOLESTEROL(LDL-C)(mg/dL)NON HDL CHLOESTEROL(NON HDL-C) (mg/dL)Extreme (A)>=50>=80<50 (Indispensable)<30 (Optional)<80Extreme (B)>=30>=60<30<60Very High>=50>=80<50<80High>=70>=100<70<100Moderate>=100>=130<100<130Low>=130*>=160*<100<130"; var...
Hi, In my Blazor Server application, I am displaying a field with a template as follows: ``` SalesContract = "This is a sales contract. Please read carefully." + "• Lorem...
Hi, I have this text but PDF is not displaying red for the text? How can I make it display colors? `This is a sales contract. Please read carefully. Lorem...
Hi, I installed QuestPDF and HTML Agility Pack. How can I apply Notes? It says can not resolve SetHtml. `string Notes = "Terms and conditions apply."` ``` container.Row(row => {...
Is theire a solution, where more than one embedded Image can be rendered? At the Moment i can only parse one, and especially only the first one in the html-string,...
In the update process to target our application to .net 9, I have also upgraded the `QuestPDF` version from `2024.7.3` to `2024.10.4` and noticed a compilation issue. I have further...
My HTML template also includes an "embedded" SVG image, provided by a base64 encoded string. ``` ``` When trying to render this with Html-to-QuestPDF, I get this exception: > QuestPDF.Drawing.Exceptions.DocumentComposeException...
I'm experimenting with creating PDF's from HTML. I have a HTML template which contains a bunch of CSS styles in its section - and those seems to be totally ignored...
This PR implements TextHorizontalAlignment support for HTML elements. ```csharp handler.SetTextAlignmentForHtmlElement("p", TextHorizontalAlignment.Justify); ``` Fixes #10