package cpdf

  1. Overview
  2. Docs

Embed a TrueType font in a PDF

type t = Pdftext.font list * (int, int * int) Stdlib.Hashtbl.t
type cpdffont =
  1. | PreMadeFontPack of t
  2. | EmbedInfo of {
    1. fontfile : Pdfio.bytes;
    2. fontname : string;
    3. encoding : Pdftext.encoding;
    }
  3. | ExistingNamedFont
val fontpack_of_standardfont : Pdftext.font -> t

Build a fontpack for a Standard 14 font

val get_char : t -> int -> (int * int * Pdftext.font) option

Look up a unicode codepoint in a font page. Returns (charcode, fontnumber, font)

val embed_truetype : Pdf.t -> fontfile:Pdfio.bytes -> fontname:string -> codepoints:int list -> encoding:Pdftext.encoding -> t

Build a fontpack from a TrueType font and list of codepoints, embedding its fonts in the document

val collate_runs : ('a * 'b * 'c) list -> ('a * 'b * 'c) list list

Collate outputs of get_char with like font

OCaml

Innovation. Community. Security.