aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-10-16 20:11:41 +0000
committerGerd Moellmann2000-10-16 20:11:41 +0000
commit7ccd82bda0517d8ca08f5d84e0b19aae56427fd0 (patch)
tree5d7baff0af897c2127bf252abc6da996ff264b27
parent2b8e9c91435fa073aad3375f20063c7b2ce064dd (diff)
downloademacs-7ccd82bda0517d8ca08f5d84e0b19aae56427fd0.tar.gz
emacs-7ccd82bda0517d8ca08f5d84e0b19aae56427fd0.zip
(Other Image Types): Add description of :foreground
and :background properties of mono PBM images.
-rw-r--r--lispref/display.texi15
1 files changed, 14 insertions, 1 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 7c6f08eb9d3..61cb6d79fd9 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -2648,7 +2648,20 @@ See the @file{etc/NEWS} file to make sure.
2648@cindex PBM 2648@cindex PBM
2649 2649
2650 For PBM images, specify image type @code{pbm}. Color, gray-scale and 2650 For PBM images, specify image type @code{pbm}. Color, gray-scale and
2651monochromatic images are supported. 2651monochromatic images are supported. For mono PBM images, two additional
2652image properties are supported.
2653
2654@table @code
2655@item :foreground @var{foreground}
2656The value, @var{foreground}, should be a string specifying the image
2657foreground color. This color is used for each pixel in the XBM that is
26581. The default is the frame's foreground color.
2659
2660@item :background @var{background}
2661The value, @var{background}, should be a string specifying the image
2662background color. This color is used for each pixel in the XBM that is
26630. The default is the frame's background color.
2664@end table
2652 2665
2653 For JPEG images, specify image type @code{jpeg}. 2666 For JPEG images, specify image type @code{jpeg}.
2654 2667