2021-12-22 09:58:56 +01:00
|
|
|
(** {2 Working with pages} *)
|
|
|
|
|
2021-12-21 14:44:46 +01:00
|
|
|
(** Print page info (Mediabox etc) to standard output. *)
|
|
|
|
val output_page_info : Pdf.t -> int list -> unit
|
|
|
|
|
|
|
|
(** Given a function from page number and page to page, a document, and a list
|
|
|
|
of page numbers to apply it to, apply the function to all those pages. *)
|
|
|
|
val process_pages : (int -> Pdfpage.t -> Pdfpage.t * int * Pdftransform.transform_matrix) ->
|
|
|
|
Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Same as [process_pages], but iterate rather than map. *)
|
|
|
|
val iter_pages : (int -> Pdfpage.t -> unit) -> Pdf.t -> int list -> unit
|
|
|
|
|
|
|
|
(** Same as [process_pages] but return the list of outputs of the map function. *)
|
|
|
|
val map_pages : (int -> Pdfpage.t -> 'a) -> Pdf.t -> int list -> 'a list
|
|
|
|
|
2021-12-22 09:58:56 +01:00
|
|
|
val hard_box : Pdf.t -> int list -> string -> bool -> bool -> Pdf.t
|
|
|
|
|
|
|
|
(** Shift a PDF in x and y (in pts) in the given pages. List of (x, y) pairs is
|
|
|
|
for all pages in pdf. *)
|
|
|
|
val shift_pdf : ?fast:bool -> (float * float) list -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
val rectify_boxes : ?fast:bool -> Pdf.t -> Pdfpage.t -> Pdfpage.t
|
|
|
|
|
|
|
|
val change_boxes : (float * float * float * float -> float * float * float * float) ->
|
|
|
|
Pdf.t -> Pdfpage.t -> Pdfpage.t
|
|
|
|
|
|
|
|
(** Scale the contents of a page by a given factor centred around a given point in a given range. *)
|
|
|
|
val scale_contents : ?fast:bool -> Cpdfposition.position -> float -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** [set_mediabox xywhlist pdf range] sets the media box on the given pages. *)
|
|
|
|
val set_mediabox : (float * float * float * float) list -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
val copy_cropbox_to_mediabox : Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Remove any cropping from the given pages. *)
|
|
|
|
val remove_cropping_pdf : Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Remove any trim box from the given pages. *)
|
|
|
|
val remove_trim_pdf : Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Remove any bleed box from the given pages. *)
|
|
|
|
val remove_bleed_pdf : Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Remove any art box from the given pages. *)
|
|
|
|
val remove_art_pdf : Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Modify the rotation of the page and its contents to leave the rotation at 0 with the page effectively unaltered. *)
|
|
|
|
val upright : ?fast:bool -> int list -> Pdf.t -> Pdf.t
|
|
|
|
|
|
|
|
(** Change rotation to a given value 0, 90, 180, 270 on given pages. *)
|
|
|
|
val rotate_pdf : int -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Rotate clockwise by 0, 90, 180, 270 on given pages. *)
|
|
|
|
val rotate_pdf_by : int -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Rotate the contents by the given angle on the given pages. If [fast] is true, assume PDF is well-formed. *)
|
|
|
|
val rotate_contents : ?fast:bool -> float -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** Scale a PDF in sx, sy in the given pages. List of (sx, sy) pairs is
|
|
|
|
for all pages in pdf. *)
|
|
|
|
val scale_pdf : ?fast:bool -> (float * float) list -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|
|
|
|
(** [scale_to_fit_pdf fast position input_scale x y op pdf range] scales a page to fit the
|
|
|
|
page size given by (x, y) and by the [input_scale] (e.g 1.0 = scale to fit, 0.9
|
|
|
|
= scale to fit leaving a border etc.). [op] is unused. *)
|
|
|
|
val scale_to_fit_pdf : ?fast:bool -> Cpdfposition.position -> float -> (float * float) list -> 'a -> Pdf.t -> int list -> Pdf.t
|
|
|
|
|