cpdf-source/cpdfocg.mli

17 lines
420 B
OCaml
Raw Normal View History

2022-01-13 17:18:54 +01:00
(** Optional content groups *)
2021-12-18 17:14:31 +01:00
2022-01-13 17:18:54 +01:00
(** Return list of OCG names. *)
2021-12-18 17:14:31 +01:00
val ocg_get_list : Pdf.t -> string list
2022-01-13 17:18:54 +01:00
(** Print OCG list to Standard Output. *)
2021-12-18 17:14:31 +01:00
val ocg_list : Pdf.t -> unit
2022-01-13 17:18:54 +01:00
(** Coalesce same-named OCGs resulting from merge. *)
val ocg_coalesce : Pdf.t -> unit
(** Rename an OCG. *)
2021-12-18 17:14:31 +01:00
val ocg_rename : string -> string -> Pdf.t -> unit
2022-01-13 17:18:54 +01:00
(** Make sure every OCG is in the /Order. *)
2021-12-18 17:14:31 +01:00
val ocg_order_all : Pdf.t -> unit