arun1
ChromicPDF seems to be the popular choice for pdf generation at the moment. However, I wanted to get some community input on pdf generation libraries that DO NOT have a dependency on Chromium, puppeteer etc. I am trying to avoid the dev ops overhead of managing these additional dependencies. I would rather just draw out a PDF from scratch.
Libraries I looked into:
elixir-pdf - seems functional for the basic needs.
elixir2pdf - The underlying erlang library erlguten is giving me compilation errors so I could not test this
Does anyone have any other suggestions ?
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
gushonorato
Is generating PDFs on the server strictly required? I always generate PDFs on the client side when possible. The two main reasons are:
I’ve been using paged.js and I’m very happy with the results. It even allows me to show a preview before printing to the client.
If you really need to create PDFs on the server side, the most popular library is PdfGenerator, which uses WKHTML instead of Chrome or Puppeteer.
mindok
This thread has quite a few options: Looking for a Prawn-Like PDF Generation Library in Elixir
asianfilm
I’ve been using Typst, a Rust library for generating PDFs from markdown. Typst is also a pure functional language such that you can put display logic into functions in a template to keep such logic out of Elixir.
To use the latest version, 0.12, you’ll want to use it on the command line from Elixir. There is an Elixir library that packages the Rust for version 0.3 called ExTypst and a fork that updates it to version 0.9.
arun1
Thank you. I did look at PDF generator but unfortunately WKHTML has been archived and is no longer available through brew or asdf. It seems most people are trying to migrate of it.
acrolink
I find styling in in HTML and CSS then converting to PDF easier. As for generation using Chromium, the best way to do it is by using an AWS Lambda. Handles concurrency of multiple invocations perfectly.
MikeRocke
Just done whole investigation into this for work (we are a Java house).
If you can avoid it in the first place, that’s the best approach (i.e. let the client print as pdf from their browser and use css3 styling for print media).
I did contemplate the XSL-FO route, but that seems progressively out of fashion, (I believe it’s down to the push for better CSS for printed media).
I also thought about postscript or tex, but that felt just as fiddly.
I would love to hear your results!
D4no0
I think not, unless HTML will be page-size aware at some point, using that technology is very limited when it comes to generating more involved PDFs that actually need to follow some page structure.
I’ve used successfully latex for generating some pretty beefy PDFs before, however the way compiler was implemented makes it really hard to work with and it’s really laggy, especially if you have to do multiple passes. The best alternative on the market is mentioned above by @asianfilm,
typst.There is no great integration library in elixir, yet, but this shouldn’t stop you from using the compiler as external dependency.
MikeRocke
Ah sorry I might’ve missed something. I thought CSS supports page sizing with size CSS at-rule descriptor - CSS | MDN
Unless we are talking different things?
D4no0
Very interesting, this is certainly something new.
The main question is: can this be used to do things like displaying the page number at the bottom of every page?
MikeRocke
Great question! No idea on that one I’m afraid!