Wkhtmltopdf - This allows you to turn the html into one long pdf (with some configuration), however the issue is that the local images don't load. - Source: Reddit / 2 months ago
I’ve had good luck with wkhtmltopdf. - Source: Reddit / 2 months ago
The only “sane” way I’ve found to be able to deal with pdfs is through this tool https://wkhtmltopdf.org/. - Source: Reddit / 4 months ago
Of the HTML-based pdf-engines pandoc supports, prince would have the best typography, but I don't like recommending Prince because it's proprietary and costs money. (I try to stick to open source when I can.) wkhtmltopdf is the fastest, but uses a pretty old codebase, and doesn't even support paged/print css. Weasyprint is a little better in my experience, but still has a ways to go typographically. pagedjs-cli is... - Source: Reddit / 7 months ago
Did you try wkhtmltopdf and WeasyPrint, by any chance? - Source: Reddit / 8 months ago
Since the srd uses standardized links (base/creature type/creature name) you could make a list of urls based on your selected monsters in a spreadsheet, then use a program like https://wkhtmltopdf.org/, https://www.weenysoft.com/free-html-to-pdf-converter.html, or the url conversion feature in Adobe Acrobat Pro if you combine all the urls into an htm for Acrobat to pull from. - Source: Reddit / 8 months ago
I use the command line to wkhtmltopdf to create pdfs from wrb pages in an automated way. - Source: Reddit / 8 months ago
Disclaimer: I stopped using many BIFs years ago in favor of dropping down to the command line and either using CFExecute or CFX_Exec[http://adiabata.com/cfx_exec.cfm] to run apps like WKHTMLTOPDF (for PDF generation) and GraphicsMagick (for image manipulation). The result has been faster performance, higher quality results (data or display-wise) and the ability to perform tasks offline and/or concurrently. - Source: dev.to / 9 months ago
We're doing export from server side with https://wkhtmltopdf.org/ and https://github.com/jhonnymertz/java-wkhtmltopdf-wrapper, but it's for an old project. Now I would also evaluate the Puppeteer solution as proposed by someone else. - Source: Reddit / 12 months ago
You might get some mileage out of wkhtmltopdf binaries. - Source: Reddit / about 1 year ago
There are some other options. You can install wkhtml2pdf and use wkhtml2pdf. In this case, you would write a header HTML file with some CSS on how you want to render the table. - Source: Reddit / about 1 year ago
Before decided to use Chrome DevTools Protocol Page.printToPDF, I also tried wkhtmltopdf which is based on QT4 Webkit. Hovewer, wkhtmltopdf doesn't seem to support CSS Printing @media Rule, which will make some extra components visible and printed in the PDF. - Source: dev.to / about 1 year ago
Wkhtmltopdf (https://wkhtmltopdf.org/) is my go to, since it also works on Azure App Service. - Source: Reddit / about 1 year ago
I've used numerous technologies for doing that conversion, including WebSuperGoo's ABCpdf.net, and Rotativa's free library. (We even have an article on how to use it.) The latter is still in use on some of my projects, but it—and its newer .Net Core version—is based on wkhtmltopdf.exe, which is a problem. More about that later. - Source: dev.to / about 1 year ago
Time-proven way: HTML page as a template -> generate PDF with wkhtmltopdf (it still the best for things like invoices/documents in terms of deployment/maintenance/stability). You can use existing .NET wrappers for wkhtmltopdf -- like NReco.PdfGenerator (> 2mln downloads on nuget.org) -- and perform HTML-to-PDF conversion in a few lines of C# code. - Source: Reddit / over 1 year ago
You may find that it's easier to render this table in some kind of GUI and generate an image of that, than it is to do this by directly creating a bitmap. For example, you could have a page in your Spring app that renders the table on the page (ideally it would be all that was on this page), then use a tool like wkhtmltoimage to generate an image. - Source: Reddit / over 1 year ago
Just found this, by the way https://wkhtmltopdf.org/. - Source: Reddit / over 1 year ago
A couple of popular gems to convert HTML to PDF in Rails are PDFKit and WickedPDF. They both use a command line utility called wkhtmltopdf under the hood; which uses WebKit to render a PDF from HTML. - Source: dev.to / almost 2 years ago
We used Adobe Acrobat to check for font names and found three different results for old server, new server and locally generated PDFs. This pointed to the fact that the generic sans-serif font family was declared and the tool we use for PDF generation (wkhtmltopdf) used the default sans-serif font available on the operating system the application was running on (Helvetica on local Mac OS and DejaVu Sans on new... - Source: dev.to / almost 2 years ago
Next, we need a way to render the HTML (the View) as PDF. I use the opensource command-line tool wkhtmltopdf. It is easy to use and compatible to run on Azure Web Apps. - Source: dev.to / about 2 years ago
Wkhtmltopdf: Command line tools to render HTML into PDF\ (55 comments). - Source: Reddit / about 2 years ago
Do you know an article comparing wkhtmltopdf to other products?
Suggest a link to a post with product alternatives.