mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2025-01-18 19:59:57 +01:00
11 lines
320 B
OCaml
11 lines
320 B
OCaml
(** 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
|