17 lines
420 B
OCaml
17 lines
420 B
OCaml
(** Optional content groups *)
|
|
|
|
(** Return list of OCG names. *)
|
|
val ocg_get_list : Pdf.t -> string list
|
|
|
|
(** Print OCG list to Standard Output. *)
|
|
val ocg_list : Pdf.t -> unit
|
|
|
|
(** Coalesce same-named OCGs resulting from merge. *)
|
|
val ocg_coalesce : Pdf.t -> unit
|
|
|
|
(** Rename an OCG. *)
|
|
val ocg_rename : string -> string -> Pdf.t -> unit
|
|
|
|
(** Make sure every OCG is in the /Order. *)
|
|
val ocg_order_all : Pdf.t -> unit
|