You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
Racket
51 lines
1.4 KiB
Racket
#lang racket/base
|
|
(require
|
|
"core.rkt"
|
|
"reference.rkt"
|
|
"page.rkt"
|
|
"color.rkt"
|
|
racket/match
|
|
sugar/unstable/dict)
|
|
|
|
(provide (all-defined-out))
|
|
|
|
(define (annotate doc x y w h options)
|
|
(hash-set*! options
|
|
'Type 'Annot
|
|
'Rect (convert-rect doc x y w h)
|
|
'Border '(0 0 0))
|
|
(unless (eq? (hash-ref options 'Subtype #f) 'Link)
|
|
(hash-ref! options 'C
|
|
(λ ()
|
|
(normalize-color (or (hash-ref options 'color #f) '(0 0 0))))))
|
|
(hash-remove! options 'color)
|
|
|
|
(for ([(k v) (in-hash options)])
|
|
(hash-set! options (string->symbol (string-titlecase (symbol->string k))) v))
|
|
|
|
(define annots-ref (make-ref options))
|
|
(page-annotations (page doc) annots-ref)
|
|
(ref-end annots-ref)
|
|
doc)
|
|
|
|
(define (convert-rect doc x1 y1 w h)
|
|
;; flip y1 and y2
|
|
(let ([y2 y1]
|
|
[y1 (+ y1 h)]
|
|
[x2 (+ x1 w)])
|
|
(match-define (list m0 m1 m2 m3 m4 m5) ($doc-ctm doc))
|
|
(let* ([x1 (+ (* x1 m0) (* y1 m2) m4)]
|
|
[y1 (+ (* x1 m1) (* y1 m3) m5)]
|
|
[x2 (+ (* x2 m0) (* y2 m2) m4)]
|
|
[y2 (+ (* x2 m1) (* y2 m3) m5)])
|
|
(list x1 y1 x2 y2))))
|
|
|
|
(define (link doc x y w h url [options (mhasheq)])
|
|
(hash-set*! options
|
|
'Subtype 'Link
|
|
'A (make-ref (mhash 'S 'URI
|
|
'URI url)))
|
|
(ref-end (hash-ref options 'A))
|
|
(annotate doc x y w h options))
|
|
|