PdfHyperlink
One hyperlink annotation captured during rendering of a PDF page.
The library emits a PdfHyperlink for every call into com.conamobile.pdfkmp.render.PdfCanvas.linkAnnotation — i.e. every link(url) { … } block in the DSL or every text { hyperlink = … } — so consumers (most notably :pdfkmp-viewer) can re-attach a clickable affordance on top of the rasterised preview without re-parsing the encoded PDF for /Annot entries.
Coordinates are in PDF points (1 pt = 1/72 in) with a top-left origin and Y growing downward — same convention as com.conamobile.pdfkmp.render.PdfCanvas. Bounding box is (xPoints, yPoints, widthPoints, heightPoints).
Page numbering is zero-based and matches the order in which the driver produced pages, so it lines up with PdfTextRun.pageIndex.