Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Annotations
Annotation borders.
type subtype =
| Text
| Link
| FreeText
| Line
| Square
| Circle
| Polygon
| PolyLine
| Highlight
| Underline
| Squiggly
| StrikeOut
| Stamp
| Caret
| Ink
| Popup of t
| FileAttachment
| Sound
| Movie
| Widget
| Screen
| PrinterMark
| TrapNet
| Watermark
| ThreeDee
| Unknown
Annotation types
and t = {
subtype : subtype;
annot_contents : string option;
subject : string option;
rectangle : float * float * float * float;
border : border;
colour : (int * int * int) option;
annotrest : Pdf.pdfobject;
}
Annotations.
Return the annotations on a page in a document.
val make_border :
?vradius:float ->
?hradius:float ->
?style:style ->
?dasharray:int array ->
float ->
border
Make a border.
val make :
?content:string ->
?border:border ->
?rectangle:(float * float * float * float) ->
?colour:(int * int * int) ->
?subject:string ->
subtype ->
t
Make an annotation of a given subtype
.
val transform_annotations :
Pdf.t ->
Pdftransform.transform_matrix ->
Pdf.pdfobject ->
unit