package camlpdf

  1. Overview
  2. Docs
Read, write and modify PDF files

Install

Dune Dependency

Authors

Maintainers

Sources

v2.8.1.tar.gz
md5=93883956f317d4037341b6a0da8a6d03
sha512=baf16128dbe4b3bf1cc1c726976e083cd12113de6865a1d847f1e606bdc2570ce474076d5350d705dd22f538e21dd524d9e8bd56708fedd56df822be92be36a2

doc/camlpdf/Pdfspace/index.html

Module Pdfspace

Colour Spaces

type point = float * float * float

A Tristimulus Point

type iccbased = {
  1. icc_n : int;
  2. icc_alternate : t;
  3. icc_range : float array;
  4. icc_metadata : Pdf.pdfobject option;
  5. icc_stream : Pdf.pdfobject;
}

ICC Based Colour Spaces

and t =
  1. | DeviceGray
  2. | DeviceRGB
  3. | DeviceCMYK
  4. | CalGray of point * point * float
  5. | CalRGB of point * point * float array * float array
  6. | Lab of point * point * float array
  7. | ICCBased of iccbased
  8. | Indexed of t * (int, int list) Stdlib.Hashtbl.t
  9. | Pattern
  10. | PatternWithBaseColourspace of t
  11. | Separation of string * t * Pdffun.t
  12. | DeviceN of string array * t * Pdffun.t * Pdf.pdfobject

Colour spaces

val string_of_colourspace : t -> string

Produce a debug string

val name_of_colourspace : t -> string option

Read the name of a colour, if it has one.

val read_colourspace : Pdf.t -> Pdf.pdfobject -> Pdf.pdfobject -> t

Read a colourspace from a PDF given a document, page resources dictionary and the colourspace object

val write_colourspace : Pdf.t -> t -> Pdf.pdfobject

Write a colourspace to a PDF, returning it.

OCaml

Innovation. Community. Security.