comparison doc/lispref/display.texi @ 97725:7660589a4e25

(TIFF Images): New section describing :index property.
author Jason Rumney <jasonr@gnu.org>
date Tue, 26 Aug 2008 08:08:40 +0000
parents 33d44d4ba1ed
children c9d121831418
comparison
equal deleted inserted replaced
97724:bf5634acba1c 97725:7660589a4e25
3812 * Image Formats:: Supported image formats. 3812 * Image Formats:: Supported image formats.
3813 * Image Descriptors:: How to specify an image for use in @code{:display}. 3813 * Image Descriptors:: How to specify an image for use in @code{:display}.
3814 * XBM Images:: Special features for XBM format. 3814 * XBM Images:: Special features for XBM format.
3815 * XPM Images:: Special features for XPM format. 3815 * XPM Images:: Special features for XPM format.
3816 * GIF Images:: Special features for GIF format. 3816 * GIF Images:: Special features for GIF format.
3817 * TIFF Images:: Special features for TIFF format.
3817 * PostScript Images:: Special features for PostScript format. 3818 * PostScript Images:: Special features for PostScript format.
3818 * Other Image Types:: Various other formats are supported. 3819 * Other Image Types:: Various other formats are supported.
3819 * Defining Images:: Convenient ways to define an image for later use. 3820 * Defining Images:: Convenient ways to define an image for later use.
3820 * Showing Images:: Convenient ways to display an image once it is defined. 3821 * Showing Images:: Convenient ways to display an image once it is defined.
3821 * Image Cache:: Internal mechanisms of image display. 3822 * Image Cache:: Internal mechanisms of image display.
4196 (goto-char (point-min)) 4197 (goto-char (point-min))
4197 (unless first-time (delete-char 1)) 4198 (unless first-time (delete-char 1))
4198 (insert-image img)) 4199 (insert-image img))
4199 (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil))) 4200 (run-with-timer 0.1 nil 'display-anim buffer file (1+ idx) max nil)))
4200 @end ignore 4201 @end ignore
4202
4203 @node TIFF Images
4204 @subsection TIFF Images
4205 @cindex TIFF
4206
4207 For TIFF images, specify image type @code{tiff}.
4208
4209 @table @code
4210 @item :index @var{index}
4211 You can use @code{:index} to specify one image from a TIFF file that
4212 contains more than one image. This property specifies use of image
4213 number @var{index} from the file. If the TIFF file doesn't contain an
4214 image with index @var{index}, the image displays as a hollow box.
4215 @end table
4201 4216
4202 @node PostScript Images 4217 @node PostScript Images
4203 @subsection PostScript Images 4218 @subsection PostScript Images
4204 @cindex postscript images 4219 @cindex postscript images
4205 4220