Skip to content

resuelve/pdfr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pdfr

MVP for a PDF managment library using Rust NIFs

This is an MVP, DO NOT USE

Functionality

PDF Merge

You can merge all specified files into a single PDF

Pdfr.merge(["/some/file", "some/other/file"], "merged.pdf")

or you can merge all .pdf files into one

Pdfr.merge_all("some/dir/", "merged.pdf")

Installation

If available in Hex, the package can be installed by adding pdfr to your list of dependencies in mix.exs:

def deps do
  [
    {:pdfr, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/pdfr.