File: cpdfcoord.mli

package info (click to toggle)
cpdf 2.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,828 kB
  • sloc: ml: 34,724; makefile: 65; sh: 45
file content (18 lines) | stat: -rw-r--r-- 700 bytes parent folder | download
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