To use XBM format, specify xbm
as the image type. This image
format doesn’t require an external library, so images of this type are
always supported.
Additional image properties supported for the xbm
image type are:
:foreground foreground
The value, foreground, should be a string specifying the image
foreground color, or nil
for the default color. This color is
used for each pixel in the XBM that is 1. The default is the frame’s
foreground color.
:background background
The value, background, should be a string specifying the image
background color, or nil
for the default color. This color is
used for each pixel in the XBM that is 0. The default is the frame’s
background color.
If you specify an XBM image using data within Emacs instead of an external file, use the following three properties:
:data data
The value, data, specifies the contents of the image. There are three formats you can use for data:
:data-height
and :data-width
.
stride * height
bits, where
stride is the smallest multiple of 8 greater than or equal to
the width of the image. In this case, you should specify
:data-height
, :data-width
and :stride
, both to
indicate that the string contains just the bits rather than a whole
XBM file, and to specify the size of the image.
:stride stride
The number of bool vector entries stored for each row; the smallest multiple of 8 greater than or equal to width.