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.
typesetting/pitfall/ptest/test5.rkt

18 lines
413 B
Racket

#lang racket/base
(require pitfall/pdftest)
7 years ago
7 years ago
(define-runtime-path death "assets/death.png")
7 years ago
(define (proc doc)
(send* doc
7 years ago
[font "Times-Italic"]
6 years ago
[font-size 25]
[text "Some fantastic text!" 100 100 (hash 'lineBreak #f)]
7 years ago
[image death 100 160 (hash 'width 412)]))
(define-runtime-path this "test5rkt.pdf")
6 years ago
(make-doc this #f proc)
7 years ago
(define-runtime-path that "test5crkt.pdf")
6 years ago
(make-doc that 'compress proc)