Any suggested way to generate PDF files from a LuaRT applications?
PDF generation
- Edited
I have plans for a pdf generator module for LuaRT, but not enough time for now
- Edited
ok, thanks, in the meanwhile I'm trying to interface my apps with some open source PDF stuff...
Don't hesitate to share your findings
In this context I'm currently playing with "wkhtmltopdf.exe", a translator from HTML to PDF.
- Edited
I just discovered a very promising approach, let's take a look at:
[[Login to see the link]]
This could be nice for LuaRT since it is already shipping an embeddable/programmable WebView object.
In principle, it should be possible to use the LuaRT webview to "save" HTML as PDF by exposing some additional methods.
LuaRT 1.9.5 provides Webview.printPDF() method to create PDF files from the current web page in Webview
Great! I will test it asap...