Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Manipulating fillable PDFs in Elixir/Erlang

I've been trying to find example functionality in Elixir or Erlang for taking a fillable PDF and then filling it with input data from an application.

So far I haven't been able to find any solutions to this in either Elixir or Erlang.

Does anyone know of a good method or module we could use in order to achieve this?

Thanks in advance!

like image 316
Jack Carlisle Avatar asked Jun 02 '17 13:06

Jack Carlisle


1 Answers

I am using pandoc to generate pdf file from html,markdown,doc,epub... format. It is an haskell program, that relies on miktex, mactex or texlive for pdf generation, it executes all conversion via a command line that can be easily generated by any program.

like image 104
Pascal Avatar answered Sep 18 '22 13:09

Pascal