<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div>Does this get you started?</div><div>---------------</div><div>#lang racket</div><div><br></div><div>(require racket/draw)</div><div><br></div><div>(define (text->pdf text output-file)</div><div>  </div><div>  (define font (make-font #:size 14</div><div>                          #:size-in-pixels? #t</div><div>                          #:face "Mono"))</div><div>  (define (up-int x) (inexact->exact (ceiling x)))</div><div>  (define (make-bm w h) (make-object bitmap% w h #f #t))</div><div>  (define lines (regexp-split "\n" text))</div><div>  (define dc</div><div>    (new pdf-dc%</div><div>         [ interactive #f ]</div><div>         [ use-paper-bbox #f ]</div><div>         [ width 592 ]</div><div>         [ height 756 ]</div><div>         [ output output-file ]))</div><div>  </div><div>  (send* dc</div><div>    (start-doc "useless string")</div><div>    (start-page))</div><div>  </div><div>  (send dc set-font font)</div><div>  </div><div>  (let loop ((lines lines)</div><div>             (width 0)</div><div>             (height 0))</div><div>    (when (pair? lines)</div><div>      (let-values (((w h d v) (send dc get-text-extent (car lines))))</div><div>        (send dc draw-text (car lines) 0 height)</div><div>        (loop (cdr lines)</div><div>              (max width (up-int w))</div><div>              (+ 5 height (up-int h))))))</div><div>  </div><div>  (send* dc </div><div>    (end-page)</div><div>    (end-doc)))</div><div><br></div><div><br></div><div apple-content-edited="true">
<div style="color: rgb(0, 0, 0); font-family: Helvetica;  font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="color: rgb(0, 0, 0); font-family: Helvetica;  font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="color: rgb(0, 0, 0); font-family: Helvetica;  font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="color: rgb(0, 0, 0); font-family: Helvetica;  font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div style="color: rgb(0, 0, 0); font-family: Helvetica;  font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>------</div><div>John Griffin, CTO</div><div>IT Talent Team, LLC</div><div><a href="http://www.ittalentteam.com">www.ittalentteam.com</a></div><div>855-488-8326</div><div><br></div><div><br></div></div><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"></div><br class="Apple-interchange-newline"><br class="Apple-interchange-newline">
</div>
<br></body></html>