module Cpdfposition:sig
..end
Positions
type
position =
| |
PosCentre of |
| |
PosLeft of |
| |
PosRight of |
| |
Top of |
| |
TopLeft of |
| |
TopRight of |
| |
Left of |
| |
BottomLeft of |
| |
Bottom of |
| |
BottomRight of |
| |
Right of |
| |
Diagonal |
| |
ReverseDiagonal |
| |
Centre |
Possible positions for adding text and other uses. See cpdfmanual.pdf
val string_of_position : position -> string
Produce a debug string of a position
val calculate_position : bool ->
float ->
float * float * float * float ->
position -> float * float * float
calculate_position ignore_d w (xmin, ymin, xmax, ymax) orientation pos
calculates
the absolute position of text given its width, bounding box, orientation and
position. If ignore_d
is true, the distance from the position (e.g 10 in
TopLeft 10) is ignored (considered zero).