pdfrx_web
    Preparing search index...

    Type Alias PdfAnnotationGeometry

    PdfAnnotationGeometry:
        | { kind: "none" }
        | { kind: "ink"; strokes: PdfAnnotationPoint[][] }
        | { kind: "markup"; quads: PdfAnnotationQuad[] }
        | { end: PdfAnnotationPoint; kind: "line"; start: PdfAnnotationPoint }
        | { kind: "polygon"; vertices: PdfAnnotationPoint[] }
        | { kind: "polyline"; vertices: PdfAnnotationPoint[] }

    Subtype-specific geometry of an annotation, in bounding-box-relative page coordinates. none covers subtypes whose shape is fully described by PdfAnnotationObject.rect (square, circle, freeText, text, …).