include-bitmap.ss: Include Bitmap
To load: (require (lib "include-bitmap.ss" "mrlib"))
The include-bitmap.ss library provides a include-bitmap form
that takes a filename containing a bitmap and ``inlines'' the bitmap
into the program. The advantage of inlining the bitmap is that a
stand-alone executable can be created that contains the bitmap and
does not refer to the original image file.
( SYNTAX
include-bitmap file-spec [type-expr])
The file-spec is the same as for MzLib's include form: a
path string, a build-path form, or a lib
form. The type-expr should
produce 'unknown, 'unknown/mask, etc., and the
default is 'unknown/mask.
( SYNTAX
include-bitmap/relative-to source file-spec [type-expr])
Analogous to include-at/relative-to, though only a source is
needed (no context).