package bytepdf

  1. Overview
  2. No Docs
Tool to create PDFs that are also OCaml bytecodes

Install

Dune Dependency

Authors

Maintainers

Sources

bytepdf-0.1.tbz
md5=5480d78b88229a03019dad0d023c3162

Description

The bytepdf tool allows you to take a PDF foo.pdf and an OCaml bytecode foo.byte and merges them into a file that is both a valid PDF and a valid bytecode.

bytepdf --ml foo.byte --pdf foo.pdf -o bar.pdf

The resulting file can both be read as a pdf and executed by the ocaml interpreter:

open bar.pdf
ocamlrun bar.pdf

Furthermore, if you open the PDF with Acrobat Reader, the PDF will contain the OCaml bytecode as a file attachment. For more details, you can read the help. For an explanation of how this work, consider looking at this abstract. The only current limitation is that the bytecode should not have been statically linked with C code.

Published: 31 Aug 2018

Dependencies (10)

  1. ocaml >= "4.08"
  2. camlpdf
  3. ocaml < "4.08"
  4. camlpdf < "2.4"
  5. obytelib >= "1.4" & < "1.6"
  6. cmdliner
  7. bos
  8. containers >= "0.12"
  9. dune >= "1.1"
  10. ocaml >= "4.03"

Dev Dependencies

None

Used by

None

Conflicts

None