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