aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2016-12-12 17:17:34 -0500
committerGlenn Morris2016-12-12 17:17:34 -0500
commit3c655230d2517d091d6af9835031cbc5d665dccb (patch)
tree9582b98a8ed7ec5159b7f5f0dbf9745d650a6cb9 /doc
parentffb1302123610699424d79b96352a9ad16d2b048 (diff)
downloademacs-3c655230d2517d091d6af9835031cbc5d665dccb.tar.gz
emacs-3c655230d2517d091d6af9835031cbc5d665dccb.zip
Obsolete gs.el
* lisp/gs.el: Move to lisp/obsolete. (Bug#1524) * doc/lispref/display.texi (Image Formats): Remove postscript. (PostScript Images): Remove section. * doc/lispref/elisp.texi: Update menu.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/display.texi32
-rw-r--r--doc/lispref/elisp.texi1
2 files changed, 2 insertions, 31 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 851baa31f30..945a701fcb2 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -4779,7 +4779,6 @@ displayed (@pxref{Display Feature Testing}).
4779* Image Descriptors:: How to specify an image for use in @code{:display}. 4779* Image Descriptors:: How to specify an image for use in @code{:display}.
4780* XBM Images:: Special features for XBM format. 4780* XBM Images:: Special features for XBM format.
4781* XPM Images:: Special features for XPM format. 4781* XPM Images:: Special features for XPM format.
4782* PostScript Images:: Special features for PostScript format.
4783* ImageMagick Images:: Special features available through ImageMagick. 4782* ImageMagick Images:: Special features available through ImageMagick.
4784* SVG Images:: Creating and manipulating SVG images. 4783* SVG Images:: Creating and manipulating SVG images.
4785* Other Image Types:: Various other formats are supported. 4784* Other Image Types:: Various other formats are supported.
@@ -4804,12 +4803,12 @@ to modify the set of known names for these dynamic libraries.
4804 Supported image formats (and the required support libraries) include 4803 Supported image formats (and the required support libraries) include
4805PBM and XBM (which do not depend on support libraries and are always 4804PBM and XBM (which do not depend on support libraries and are always
4806available), XPM (@code{libXpm}), GIF (@code{libgif} or 4805available), XPM (@code{libXpm}), GIF (@code{libgif} or
4807@code{libungif}), PostScript (@code{gs}), JPEG (@code{libjpeg}), TIFF 4806@code{libungif}), JPEG (@code{libjpeg}), TIFF
4808(@code{libtiff}), PNG (@code{libpng}), and SVG (@code{librsvg}). 4807(@code{libtiff}), PNG (@code{libpng}), and SVG (@code{librsvg}).
4809 4808
4810 Each of these image formats is associated with an @dfn{image type 4809 Each of these image formats is associated with an @dfn{image type
4811symbol}. The symbols for the above formats are, respectively, 4810symbol}. The symbols for the above formats are, respectively,
4812@code{pbm}, @code{xbm}, @code{xpm}, @code{gif}, @code{postscript}, 4811@code{pbm}, @code{xbm}, @code{xpm}, @code{gif},
4813@code{jpeg}, @code{tiff}, @code{png}, and @code{svg}. 4812@code{jpeg}, @code{tiff}, @code{png}, and @code{svg}.
4814 4813
4815 Furthermore, if you build Emacs with ImageMagick 4814 Furthermore, if you build Emacs with ImageMagick
@@ -5122,33 +5121,6 @@ the name of a color as it appears in the image file, and @var{color}
5122specifies the actual color to use for displaying that name. 5121specifies the actual color to use for displaying that name.
5123@end table 5122@end table
5124 5123
5125@node PostScript Images
5126@subsection PostScript Images
5127@cindex postscript images
5128
5129 To use PostScript for an image, specify image type @code{postscript}.
5130This works only if you have Ghostscript installed. You must always use
5131these three properties:
5132
5133@table @code
5134@item :pt-width @var{width}
5135The value, @var{width}, specifies the width of the image measured in
5136points (1/72 inch). @var{width} must be an integer.
5137
5138@item :pt-height @var{height}
5139The value, @var{height}, specifies the height of the image in points
5140(1/72 inch). @var{height} must be an integer.
5141
5142@item :bounding-box @var{box}
5143The value, @var{box}, must be a list or vector of four integers, which
5144specifying the bounding box of the PostScript image, analogous to the
5145@samp{BoundingBox} comment found in PostScript files.
5146
5147@example
5148%%BoundingBox: 22 171 567 738
5149@end example
5150@end table
5151
5152@node ImageMagick Images 5124@node ImageMagick Images
5153@subsection ImageMagick Images 5125@subsection ImageMagick Images
5154@cindex ImageMagick images 5126@cindex ImageMagick images
diff --git a/doc/lispref/elisp.texi b/doc/lispref/elisp.texi
index 4a53a0cd364..494e8fcb6c3 100644
--- a/doc/lispref/elisp.texi
+++ b/doc/lispref/elisp.texi
@@ -1472,7 +1472,6 @@ Images
1472* Image Descriptors:: How to specify an image for use in @code{:display}. 1472* Image Descriptors:: How to specify an image for use in @code{:display}.
1473* XBM Images:: Special features for XBM format. 1473* XBM Images:: Special features for XBM format.
1474* XPM Images:: Special features for XPM format. 1474* XPM Images:: Special features for XPM format.
1475* PostScript Images:: Special features for PostScript format.
1476* ImageMagick Images:: Special features available through ImageMagick. 1475* ImageMagick Images:: Special features available through ImageMagick.
1477* Other Image Types:: Various other formats are supported. 1476* Other Image Types:: Various other formats are supported.
1478* Defining Images:: Convenient ways to define an image for later use. 1477* Defining Images:: Convenient ways to define an image for later use.