PdfannotAnnotations
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 of stringAnnotation 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 ->
borderMake a border.
val make :
?content:string ->
?border:border ->
?rectangle:(float * float * float * float) ->
?colour:(int * int * int) ->
?subject:string ->
subtype ->
tMake an annotation of a given subtype.
val transform_annotations :
Pdf.t ->
Pdftransform.transform_matrix ->
Pdf.pdfobject ->
unitTransform all annotations in a page dictionary, e.g /Rect and /QuadPoints.