1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
(** Parsing coordinates, numbers, positions etc.*)
(** See cpdfmanual.pdf for examples of things these functions can parse, such as page sizes. *)
(** Read a single rectangles from a string. *)
val parse_rectangle : Pdf.t -> string -> (float * float * float * float)
(** Read a list of rectangles from a string. *)
val parse_rectangles : Pdf.t -> string -> (float * float * float * float) list
(** Read a coordinate from a string *)
val parse_coordinate : Pdf.t -> string -> float * float
(** Read a list of coordinates from a string *)
val parse_coordinates : Pdf.t -> string -> (float * float) list
(** Read a single number from a string *)
val parse_single_number : Pdf.t -> string -> float
|