cpdf-source/cpdfpad.mli

11 lines
320 B
OCaml
Raw Normal View History

2022-01-13 17:18:54 +01:00
(** Padding *)
2021-12-18 16:47:06 +01:00
(** Put blank pages before the given page numbers *)
val padbefore : ?padwith:Pdf.t -> int list -> Pdf.t -> Pdf.t
(** Put blank pages after the given page numbers *)
val padafter : ?padwith:Pdf.t -> int list -> Pdf.t -> Pdf.t
(** Pad to a multiple of n pages *)
val padmultiple : int -> Pdf.t -> Pdf.t