lang-slide/lang-slide/mk-img.rkt
Sam Tobin-Hochstadt 6f551d4c9d scheme -> racket
2013-07-13 12:53:42 -04:00

18 lines
643 B
Racket

#lang racket/base
(require "main.rkt" racket/draw slideshow/pict racket/class)
(define the-margin 32)
(define the-pict (let ([p (langs-pict #t)])
(scale p (/ (- 1024 the-margin) (pict-width p)))))
(pict-width the-pict)
(define bm (make-object bitmap%
(+ the-margin (ceiling (inexact->exact (pict-width the-pict))))
(+ the-margin (ceiling (inexact->exact (pict-height the-pict))))))
(define bdc (make-object bitmap-dc% bm))
(send bdc set-smoothing 'aligned)
(send bdc clear)
(draw-pict the-pict bdc (/ the-margin 2) (/ the-margin 2))
(send bdc set-bitmap #f)
(send bm save-file "langs.png" 'png)