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
393 B
Racket
17 lines
393 B
Racket
8 years ago
|
#lang pitfall/pdftest
|
||
|
|
||
8 years ago
|
(define-runtime-path death "assets/death.png")
|
||
8 years ago
|
|
||
8 years ago
|
(define (proc doc)
|
||
|
(send* doc
|
||
8 years ago
|
[font "Times-Italic"]
|
||
|
[fontSize 25]
|
||
8 years ago
|
[text "Some fantastic text!" 100 100 (hash 'lineBreak #f)]
|
||
8 years ago
|
[image death 100 160 (hash 'width 412)]))
|
||
8 years ago
|
|
||
|
(define-runtime-path this "test5rkt.pdf")
|
||
8 years ago
|
(make-doc this #f proc #:test #t)
|
||
8 years ago
|
|
||
8 years ago
|
(define-runtime-path that "test5crkt.pdf")
|
||
|
(make-doc that #t proc)
|