cpdf-source/cpdfpad.mli

11 lines
324 B
OCaml
Raw Normal View History

2021-12-18 16:47:06 +01:00
(** {2 Padding} *)
(** 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