#lang racket
(require pict)
(define (save-pict the-pict name kind)
(define bm (pict->bitmap the-pict))
(send bm save-file name kind))
(save-pict (standard-fish 200 200) "fish.png" 'png)
Run Code Online (Sandbox Code Playgroud)
这会将图像保存在“ fish.png”中。