24 lines
770 B
OCaml
24 lines
770 B
OCaml
(** Annotations *)
|
|
|
|
(* {2 Modern functions} *)
|
|
|
|
(** Get annotations as JSON *)
|
|
val get_annotations_json : Pdf.t -> int list -> Pdfio.bytes
|
|
|
|
(** Set annotations from JSON. *)
|
|
val set_annotations_json : Pdf.t -> Pdfio.input -> unit
|
|
|
|
(** Remove the annotations on given pages. *)
|
|
val remove_annotations : int list -> Pdf.t -> Pdf.t
|
|
|
|
(** Copy the annotations on a given set of pages *)
|
|
val copy_annotations : int list -> Pdf.t -> Pdf.t -> unit
|
|
|
|
(* {2 Old-style functions *)
|
|
|
|
(** Return the annotations as a simple old-style (pagenumber, content) list. *)
|
|
val get_annotations : Cpdfmetadata.encoding -> Pdf.t -> (int * string) list
|
|
|
|
(** List the annotations to standard output in a given encoding. *)
|
|
val list_annotations : int list -> Cpdfmetadata.encoding -> Pdf.t -> unit
|