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.
17 lines
378 B
Racket
17 lines
378 B
Racket
#lang racket/base
|
|
(require pitfall/pdftest)
|
|
|
|
(define (proc doc)
|
|
[fill-color doc "blue"]
|
|
[font doc "Helvetica" 30]
|
|
[translate doc 50 50]
|
|
[text doc "Here is a link!" 100 100
|
|
#:link "http://google.com/"
|
|
#:underline #t])
|
|
|
|
(define-runtime-path this "test11rkt.pdf")
|
|
(make-doc this #f proc)
|
|
|
|
(define-runtime-path that "test11crkt.pdf")
|
|
(make-doc that #t proc)
|