1 /* Functions for image support on window system.
2 Copyright (C) 1989, 1992-2011 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 #if defined HAVE_LIBPNG_PNG_H
27 # include <libpng/png.h>
35 /* This makes the fields of a Display accessible, in Xlib header files. */
37 #define XLIB_ILLEGAL_ACCESS
42 #include "dispextern.h"
43 #include "blockinput.h"
46 #include "character.h"
48 #include "termhooks.h"
53 #include <sys/types.h>
56 #define COLOR_TABLE_SUPPORT 1
58 typedef struct x_bitmap_record Bitmap_Record
;
59 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
60 #define NO_PIXMAP None
62 #define RGB_PIXEL_COLOR unsigned long
64 #define PIX_MASK_RETAIN 0
65 #define PIX_MASK_DRAW 1
66 #endif /* HAVE_X_WINDOWS */
72 /* W32_TODO : Color tables on W32. */
73 #undef COLOR_TABLE_SUPPORT
75 typedef struct w32_bitmap_record Bitmap_Record
;
76 #define GET_PIXEL(ximg, x, y) GetPixel(ximg, x, y)
79 #define RGB_PIXEL_COLOR COLORREF
81 #define PIX_MASK_RETAIN 0
82 #define PIX_MASK_DRAW 1
84 #define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
85 #define x_defined_color w32_defined_color
86 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
88 /* Functions from w32term.c that depend on XColor (so can't go in w32term.h
89 without modifying lots of files). */
90 extern void x_query_colors (struct frame
*f
, XColor
*colors
, int ncolors
);
91 extern void x_query_color (struct frame
*f
, XColor
*color
);
93 /* Version of libpng that we were compiled with, or -1 if no PNG
94 support was compiled in. This is tested by w32-win.el to correctly
95 set up the alist used to search for PNG libraries. */
96 Lisp_Object Qlibpng_version
;
97 #endif /* HAVE_NTGUI */
101 #include <sys/types.h>
102 #include <sys/stat.h>
104 #undef COLOR_TABLE_SUPPORT
106 typedef struct ns_bitmap_record Bitmap_Record
;
108 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
111 #define RGB_PIXEL_COLOR unsigned long
114 #define PIX_MASK_RETAIN 0
115 #define PIX_MASK_DRAW 1
117 #define FRAME_X_VISUAL FRAME_NS_DISPLAY_INFO(f)->visual
118 #define x_defined_color(f, name, color_def, alloc) \
119 ns_defined_color (f, name, color_def, alloc, 0)
120 #define FRAME_X_SCREEN(f) 0
121 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
125 /* The symbol `postscript' identifying images of this type. */
127 Lisp_Object Qpostscript
;
129 static void x_disable_image (struct frame
*, struct image
*);
130 static void x_edge_detection (struct frame
*, struct image
*, Lisp_Object
,
133 static void init_color_table (void);
134 static unsigned long lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
);
135 #ifdef COLOR_TABLE_SUPPORT
136 static void free_color_table (void);
137 static unsigned long *colors_in_color_table (int *n
);
138 static unsigned long lookup_pixel_color (struct frame
*f
, unsigned long p
);
141 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
142 id, which is just an int that this section returns. Bitmaps are
143 reference counted so they can be shared among frames.
145 Bitmap indices are guaranteed to be > 0, so a negative number can
146 be used to indicate no bitmap.
148 If you use x_create_bitmap_from_data, then you must keep track of
149 the bitmaps yourself. That is, creating a bitmap from the same
150 data more than once will not be caught. */
154 XGetImage (Display
*display
, Pixmap pixmap
, int x
, int y
,
155 unsigned int width
, unsigned int height
,
156 unsigned long plane_mask
, int format
)
158 /* TODO: not sure what this function is supposed to do.. */
159 ns_retain_object (pixmap
);
163 /* use with imgs created by ns_image_for_XPM */
165 XGetPixel (XImagePtr ximage
, int x
, int y
)
167 return ns_get_pixel (ximage
, x
, y
);
170 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
171 pixel is assumed to be in form RGB */
173 XPutPixel (XImagePtr ximage
, int x
, int y
, unsigned long pixel
)
175 ns_put_pixel (ximage
, x
, y
, pixel
);
180 /* Functions to access the contents of a bitmap, given an id. */
183 x_bitmap_height (FRAME_PTR f
, int id
)
185 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
189 x_bitmap_width (FRAME_PTR f
, int id
)
191 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
194 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
196 x_bitmap_pixmap (FRAME_PTR f
, int id
)
198 return (int) FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
202 #ifdef HAVE_X_WINDOWS
204 x_bitmap_mask (FRAME_PTR f
, int id
)
206 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].mask
;
210 /* Allocate a new bitmap record. Returns index of new record. */
213 x_allocate_bitmap_record (FRAME_PTR f
)
215 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
218 if (dpyinfo
->bitmaps
== NULL
)
220 dpyinfo
->bitmaps_size
= 10;
222 = (Bitmap_Record
*) xmalloc (dpyinfo
->bitmaps_size
* sizeof (Bitmap_Record
));
223 dpyinfo
->bitmaps_last
= 1;
227 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
228 return ++dpyinfo
->bitmaps_last
;
230 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
231 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
234 dpyinfo
->bitmaps_size
*= 2;
236 = (Bitmap_Record
*) xrealloc (dpyinfo
->bitmaps
,
237 dpyinfo
->bitmaps_size
* sizeof (Bitmap_Record
));
238 return ++dpyinfo
->bitmaps_last
;
241 /* Add one reference to the reference count of the bitmap with id ID. */
244 x_reference_bitmap (FRAME_PTR f
, int id
)
246 ++FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
249 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
252 x_create_bitmap_from_data (struct frame
*f
, char *bits
, unsigned int width
, unsigned int height
)
254 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
257 #ifdef HAVE_X_WINDOWS
259 bitmap
= XCreateBitmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
260 bits
, width
, height
);
263 #endif /* HAVE_X_WINDOWS */
267 bitmap
= CreateBitmap (width
, height
,
268 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_planes
,
269 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_cbits
,
273 #endif /* HAVE_NTGUI */
276 void *bitmap
= ns_image_from_XBM (bits
, width
, height
);
281 id
= x_allocate_bitmap_record (f
);
284 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
285 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
288 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
289 dpyinfo
->bitmaps
[id
- 1].height
= height
;
290 dpyinfo
->bitmaps
[id
- 1].width
= width
;
291 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
293 #ifdef HAVE_X_WINDOWS
294 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
295 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
296 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
297 #endif /* HAVE_X_WINDOWS */
300 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
301 dpyinfo
->bitmaps
[id
- 1].hinst
= NULL
;
302 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
303 #endif /* HAVE_NTGUI */
308 /* Create bitmap from file FILE for frame F. */
311 x_create_bitmap_from_file (struct frame
*f
, Lisp_Object file
)
313 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
316 return -1; /* W32_TODO : bitmap support */
317 #endif /* HAVE_NTGUI */
321 void *bitmap
= ns_image_from_file (file
);
327 id
= x_allocate_bitmap_record (f
);
328 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
329 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
330 dpyinfo
->bitmaps
[id
- 1].file
= (char *) xmalloc (SBYTES (file
) + 1);
331 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
332 dpyinfo
->bitmaps
[id
- 1].height
= ns_image_width (bitmap
);
333 dpyinfo
->bitmaps
[id
- 1].width
= ns_image_height (bitmap
);
334 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SDATA (file
));
338 #ifdef HAVE_X_WINDOWS
339 unsigned int width
, height
;
341 int xhot
, yhot
, result
, id
;
346 /* Look for an existing bitmap with the same name. */
347 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
349 if (dpyinfo
->bitmaps
[id
].refcount
350 && dpyinfo
->bitmaps
[id
].file
351 && !strcmp (dpyinfo
->bitmaps
[id
].file
, SSDATA (file
)))
353 ++dpyinfo
->bitmaps
[id
].refcount
;
358 /* Search bitmap-file-path for the file, if appropriate. */
359 fd
= openp (Vx_bitmap_file_path
, file
, Qnil
, &found
, Qnil
);
364 filename
= SSDATA (found
);
366 result
= XReadBitmapFile (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
367 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
368 if (result
!= BitmapSuccess
)
371 id
= x_allocate_bitmap_record (f
);
372 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
373 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
374 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
375 dpyinfo
->bitmaps
[id
- 1].file
= (char *) xmalloc (SBYTES (file
) + 1);
376 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
377 dpyinfo
->bitmaps
[id
- 1].height
= height
;
378 dpyinfo
->bitmaps
[id
- 1].width
= width
;
379 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SSDATA (file
));
382 #endif /* HAVE_X_WINDOWS */
388 free_bitmap_record (Display_Info
*dpyinfo
, Bitmap_Record
*bm
)
390 #ifdef HAVE_X_WINDOWS
391 XFreePixmap (dpyinfo
->display
, bm
->pixmap
);
393 XFreePixmap (dpyinfo
->display
, bm
->mask
);
394 #endif /* HAVE_X_WINDOWS */
397 DeleteObject (bm
->pixmap
);
398 #endif /* HAVE_NTGUI */
401 ns_release_object (bm
->img
);
411 /* Remove reference to bitmap with id number ID. */
414 x_destroy_bitmap (FRAME_PTR f
, int id
)
416 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
420 Bitmap_Record
*bm
= &dpyinfo
->bitmaps
[id
- 1];
422 if (--bm
->refcount
== 0)
425 free_bitmap_record (dpyinfo
, bm
);
431 /* Free all the bitmaps for the display specified by DPYINFO. */
434 x_destroy_all_bitmaps (Display_Info
*dpyinfo
)
437 Bitmap_Record
*bm
= dpyinfo
->bitmaps
;
439 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++, bm
++)
440 if (bm
->refcount
> 0)
441 free_bitmap_record (dpyinfo
, bm
);
443 dpyinfo
->bitmaps_last
= 0;
447 #ifdef HAVE_X_WINDOWS
449 /* Useful functions defined in the section
450 `Image type independent image structures' below. */
452 static unsigned long four_corners_best (XImagePtr ximg
,
455 unsigned long height
);
457 static int x_create_x_image_and_pixmap (struct frame
*f
, int width
, int height
,
458 int depth
, XImagePtr
*ximg
,
461 static void x_destroy_x_image (XImagePtr ximg
);
464 /* Create a mask of a bitmap. Note is this not a perfect mask.
465 It's nicer with some borders in this context */
468 x_create_bitmap_mask (struct frame
*f
, int id
)
471 XImagePtr ximg
, mask_img
;
472 unsigned long width
, height
;
475 unsigned long x
, y
, xp
, xm
, yp
, ym
;
478 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
483 pixmap
= x_bitmap_pixmap (f
, id
);
484 width
= x_bitmap_width (f
, id
);
485 height
= x_bitmap_height (f
, id
);
488 ximg
= XGetImage (FRAME_X_DISPLAY (f
), pixmap
, 0, 0, width
, height
,
497 result
= x_create_x_image_and_pixmap (f
, width
, height
, 1, &mask_img
, &mask
);
502 XDestroyImage (ximg
);
506 bg
= four_corners_best (ximg
, NULL
, width
, height
);
508 for (y
= 0; y
< ximg
->height
; ++y
)
510 for (x
= 0; x
< ximg
->width
; ++x
)
512 xp
= x
!= ximg
->width
- 1 ? x
+ 1 : 0;
513 xm
= x
!= 0 ? x
- 1 : ximg
->width
- 1;
514 yp
= y
!= ximg
->height
- 1 ? y
+ 1 : 0;
515 ym
= y
!= 0 ? y
- 1 : ximg
->height
- 1;
516 if (XGetPixel (ximg
, x
, y
) == bg
517 && XGetPixel (ximg
, x
, yp
) == bg
518 && XGetPixel (ximg
, x
, ym
) == bg
519 && XGetPixel (ximg
, xp
, y
) == bg
520 && XGetPixel (ximg
, xp
, yp
) == bg
521 && XGetPixel (ximg
, xp
, ym
) == bg
522 && XGetPixel (ximg
, xm
, y
) == bg
523 && XGetPixel (ximg
, xm
, yp
) == bg
524 && XGetPixel (ximg
, xm
, ym
) == bg
)
525 XPutPixel (mask_img
, x
, y
, 0);
527 XPutPixel (mask_img
, x
, y
, 1);
531 xassert (interrupt_input_blocked
);
532 gc
= XCreateGC (FRAME_X_DISPLAY (f
), mask
, 0, NULL
);
533 XPutImage (FRAME_X_DISPLAY (f
), mask
, gc
, mask_img
, 0, 0, 0, 0,
535 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
537 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
538 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
540 XDestroyImage (ximg
);
541 x_destroy_x_image (mask_img
);
546 #endif /* HAVE_X_WINDOWS */
549 /***********************************************************************
551 ***********************************************************************/
553 /* List of supported image types. Use define_image_type to add new
554 types. Use lookup_image_type to find a type for a given symbol. */
556 static struct image_type
*image_types
;
558 /* Cache for delayed-loading image types. */
560 static Lisp_Object Vimage_type_cache
;
562 /* The symbol `xbm' which is used as the type symbol for XBM images. */
568 Lisp_Object QCascent
, QCmargin
, QCrelief
, Qcount
, Qextension_data
;
569 Lisp_Object QCconversion
, QCcolor_symbols
, QCheuristic_mask
;
570 Lisp_Object QCindex
, QCmatrix
, QCcolor_adjustment
, QCmask
, QCgeometry
, QCcrop
, QCrotation
;
574 Lisp_Object Qlaplace
, Qemboss
, Qedge_detection
, Qheuristic
;
576 /* Function prototypes. */
578 static Lisp_Object
define_image_type (struct image_type
*type
, int loaded
);
579 static struct image_type
*lookup_image_type (Lisp_Object symbol
);
580 static void image_error (const char *format
, Lisp_Object
, Lisp_Object
);
581 static void x_laplace (struct frame
*, struct image
*);
582 static void x_emboss (struct frame
*, struct image
*);
583 static int x_build_heuristic_mask (struct frame
*, struct image
*,
586 #define CACHE_IMAGE_TYPE(type, status) \
587 do { Vimage_type_cache = Fcons (Fcons (type, status), Vimage_type_cache); } while (0)
589 #define ADD_IMAGE_TYPE(type) \
590 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
592 /* Define a new image type from TYPE. This adds a copy of TYPE to
593 image_types and caches the loading status of TYPE. */
596 define_image_type (struct image_type
*type
, int loaded
)
604 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
605 The initialized data segment is read-only. */
606 struct image_type
*p
= (struct image_type
*) xmalloc (sizeof *p
);
607 memcpy (p
, type
, sizeof *p
);
608 p
->next
= image_types
;
613 CACHE_IMAGE_TYPE (*type
->type
, success
);
618 /* Look up image type SYMBOL, and return a pointer to its image_type
619 structure. Value is null if SYMBOL is not a known image type. */
621 static INLINE
struct image_type
*
622 lookup_image_type (Lisp_Object symbol
)
624 struct image_type
*type
;
626 /* We must initialize the image-type if it hasn't been already. */
627 if (NILP (Finit_image_library (symbol
, Vdynamic_library_alist
)))
628 return 0; /* unimplemented */
630 for (type
= image_types
; type
; type
= type
->next
)
631 if (EQ (symbol
, *type
->type
))
638 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
639 valid image specification is a list whose car is the symbol
640 `image', and whose rest is a property list. The property list must
641 contain a value for key `:type'. That value must be the name of a
642 supported image type. The rest of the property list depends on the
646 valid_image_p (Lisp_Object object
)
654 for (tem
= XCDR (object
); CONSP (tem
); tem
= XCDR (tem
))
655 if (EQ (XCAR (tem
), QCtype
))
658 if (CONSP (tem
) && SYMBOLP (XCAR (tem
)))
660 struct image_type
*type
;
661 type
= lookup_image_type (XCAR (tem
));
663 valid_p
= type
->valid_p (object
);
674 /* Log error message with format string FORMAT and argument ARG.
675 Signaling an error, e.g. when an image cannot be loaded, is not a
676 good idea because this would interrupt redisplay, and the error
677 message display would lead to another redisplay. This function
678 therefore simply displays a message. */
681 image_error (const char *format
, Lisp_Object arg1
, Lisp_Object arg2
)
683 add_to_log (format
, arg1
, arg2
);
688 /***********************************************************************
690 ***********************************************************************/
692 enum image_value_type
694 IMAGE_DONT_CHECK_VALUE_TYPE
,
696 IMAGE_STRING_OR_NIL_VALUE
,
698 IMAGE_POSITIVE_INTEGER_VALUE
,
699 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
,
700 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
703 IMAGE_FUNCTION_VALUE
,
708 /* Structure used when parsing image specifications. */
712 /* Name of keyword. */
715 /* The type of value allowed. */
716 enum image_value_type type
;
718 /* Non-zero means key must be present. */
721 /* Used to recognize duplicate keywords in a property list. */
724 /* The value that was found. */
729 static int parse_image_spec (Lisp_Object
, struct image_keyword
*,
731 static Lisp_Object
image_spec_value (Lisp_Object
, Lisp_Object
, int *);
734 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
735 has the format (image KEYWORD VALUE ...). One of the keyword/
736 value pairs must be `:type TYPE'. KEYWORDS is a vector of
737 image_keywords structures of size NKEYWORDS describing other
738 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
741 parse_image_spec (Lisp_Object spec
, struct image_keyword
*keywords
,
742 int nkeywords
, Lisp_Object type
)
751 while (CONSP (plist
))
753 Lisp_Object key
, value
;
755 /* First element of a pair must be a symbol. */
757 plist
= XCDR (plist
);
761 /* There must follow a value. */
764 value
= XCAR (plist
);
765 plist
= XCDR (plist
);
767 /* Find key in KEYWORDS. Error if not found. */
768 for (i
= 0; i
< nkeywords
; ++i
)
769 if (strcmp (keywords
[i
].name
, SSDATA (SYMBOL_NAME (key
))) == 0)
775 /* Record that we recognized the keyword. If a keywords
776 was found more than once, it's an error. */
777 keywords
[i
].value
= value
;
780 if (keywords
[i
].count
> 1)
783 /* Check type of value against allowed type. */
784 switch (keywords
[i
].type
)
786 case IMAGE_STRING_VALUE
:
787 if (!STRINGP (value
))
791 case IMAGE_STRING_OR_NIL_VALUE
:
792 if (!STRINGP (value
) && !NILP (value
))
796 case IMAGE_SYMBOL_VALUE
:
797 if (!SYMBOLP (value
))
801 case IMAGE_POSITIVE_INTEGER_VALUE
:
802 if (!INTEGERP (value
) || XINT (value
) <= 0)
806 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
:
807 if (INTEGERP (value
) && XINT (value
) >= 0)
810 && INTEGERP (XCAR (value
)) && INTEGERP (XCDR (value
))
811 && XINT (XCAR (value
)) >= 0 && XINT (XCDR (value
)) >= 0)
815 case IMAGE_ASCENT_VALUE
:
816 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
818 else if (INTEGERP (value
)
820 && XINT (value
) <= 100)
824 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
825 if (!INTEGERP (value
) || XINT (value
) < 0)
829 case IMAGE_DONT_CHECK_VALUE_TYPE
:
832 case IMAGE_FUNCTION_VALUE
:
833 value
= indirect_function (value
);
834 if (!NILP (Ffunctionp (value
)))
838 case IMAGE_NUMBER_VALUE
:
839 if (!INTEGERP (value
) && !FLOATP (value
))
843 case IMAGE_INTEGER_VALUE
:
844 if (!INTEGERP (value
))
848 case IMAGE_BOOL_VALUE
:
849 if (!NILP (value
) && !EQ (value
, Qt
))
858 if (EQ (key
, QCtype
) && !EQ (type
, value
))
862 /* Check that all mandatory fields are present. */
863 for (i
= 0; i
< nkeywords
; ++i
)
864 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
871 /* Return the value of KEY in image specification SPEC. Value is nil
872 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
873 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
876 image_spec_value (Lisp_Object spec
, Lisp_Object key
, int *found
)
880 xassert (valid_image_p (spec
));
882 for (tail
= XCDR (spec
);
883 CONSP (tail
) && CONSP (XCDR (tail
));
884 tail
= XCDR (XCDR (tail
)))
886 if (EQ (XCAR (tail
), key
))
890 return XCAR (XCDR (tail
));
900 DEFUN ("image-size", Fimage_size
, Simage_size
, 1, 3, 0,
901 doc
: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
902 PIXELS non-nil means return the size in pixels, otherwise return the
903 size in canonical character units.
904 FRAME is the frame on which the image will be displayed. FRAME nil
905 or omitted means use the selected frame. */)
906 (Lisp_Object spec
, Lisp_Object pixels
, Lisp_Object frame
)
911 if (valid_image_p (spec
))
913 struct frame
*f
= check_x_frame (frame
);
914 int id
= lookup_image (f
, spec
);
915 struct image
*img
= IMAGE_FROM_ID (f
, id
);
916 int width
= img
->width
+ 2 * img
->hmargin
;
917 int height
= img
->height
+ 2 * img
->vmargin
;
920 size
= Fcons (make_float ((double) width
/ FRAME_COLUMN_WIDTH (f
)),
921 make_float ((double) height
/ FRAME_LINE_HEIGHT (f
)));
923 size
= Fcons (make_number (width
), make_number (height
));
926 error ("Invalid image specification");
932 DEFUN ("image-mask-p", Fimage_mask_p
, Simage_mask_p
, 1, 2, 0,
933 doc
: /* Return t if image SPEC has a mask bitmap.
934 FRAME is the frame on which the image will be displayed. FRAME nil
935 or omitted means use the selected frame. */)
936 (Lisp_Object spec
, Lisp_Object frame
)
941 if (valid_image_p (spec
))
943 struct frame
*f
= check_x_frame (frame
);
944 int id
= lookup_image (f
, spec
);
945 struct image
*img
= IMAGE_FROM_ID (f
, id
);
950 error ("Invalid image specification");
955 DEFUN ("image-metadata", Fimage_metadata
, Simage_metadata
, 1, 2, 0,
956 doc
: /* Return metadata for image SPEC.
957 FRAME is the frame on which the image will be displayed. FRAME nil
958 or omitted means use the selected frame. */)
959 (Lisp_Object spec
, Lisp_Object frame
)
964 if (valid_image_p (spec
))
966 struct frame
*f
= check_x_frame (frame
);
967 int id
= lookup_image (f
, spec
);
968 struct image
*img
= IMAGE_FROM_ID (f
, id
);
969 ext
= img
->data
.lisp_val
;
976 /***********************************************************************
977 Image type independent image structures
978 ***********************************************************************/
980 static struct image
*make_image (Lisp_Object spec
, unsigned hash
);
981 static void free_image (struct frame
*f
, struct image
*img
);
982 static int check_image_size (struct frame
*f
, int width
, int height
);
984 #define MAX_IMAGE_SIZE 6.0
985 /* Allocate and return a new image structure for image specification
986 SPEC. SPEC has a hash value of HASH. */
988 static struct image
*
989 make_image (Lisp_Object spec
, unsigned int hash
)
991 struct image
*img
= (struct image
*) xmalloc (sizeof *img
);
992 Lisp_Object file
= image_spec_value (spec
, QCfile
, NULL
);
994 xassert (valid_image_p (spec
));
995 memset (img
, 0, sizeof *img
);
996 img
->dependencies
= NILP (file
) ? Qnil
: list1 (file
);
997 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
998 xassert (img
->type
!= NULL
);
1000 img
->data
.lisp_val
= Qnil
;
1001 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
1003 img
->corners
[BOT_CORNER
] = -1; /* Full image */
1008 /* Free image IMG which was used on frame F, including its resources. */
1011 free_image (struct frame
*f
, struct image
*img
)
1015 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1017 /* Remove IMG from the hash table of its cache. */
1019 img
->prev
->next
= img
->next
;
1021 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
1024 img
->next
->prev
= img
->prev
;
1026 c
->images
[img
->id
] = NULL
;
1028 /* Free resources, then free IMG. */
1029 img
->type
->free (f
, img
);
1034 /* Return 1 if the given widths and heights are valid for display;
1035 otherwise, return 0. */
1038 check_image_size (struct frame
*f
, int width
, int height
)
1042 if (width
<= 0 || height
<= 0)
1045 if (INTEGERP (Vmax_image_size
))
1046 w
= h
= XINT (Vmax_image_size
);
1047 else if (FLOATP (Vmax_image_size
))
1051 w
= FRAME_PIXEL_WIDTH (f
);
1052 h
= FRAME_PIXEL_HEIGHT (f
);
1055 w
= h
= 1024; /* Arbitrary size for unknown frame. */
1056 w
= (int) (XFLOAT_DATA (Vmax_image_size
) * w
);
1057 h
= (int) (XFLOAT_DATA (Vmax_image_size
) * h
);
1062 return (width
<= w
&& height
<= h
);
1065 /* Prepare image IMG for display on frame F. Must be called before
1066 drawing an image. */
1069 prepare_image_for_display (struct frame
*f
, struct image
*img
)
1073 /* We're about to display IMG, so set its timestamp to `now'. */
1075 img
->timestamp
= EMACS_SECS (t
);
1077 /* If IMG doesn't have a pixmap yet, load it now, using the image
1078 type dependent loader function. */
1079 if (img
->pixmap
== NO_PIXMAP
&& !img
->load_failed_p
)
1080 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
1085 /* Value is the number of pixels for the ascent of image IMG when
1086 drawn in face FACE. */
1089 image_ascent (struct image
*img
, struct face
*face
, struct glyph_slice
*slice
)
1094 if (slice
->height
== img
->height
)
1095 height
= img
->height
+ img
->vmargin
;
1096 else if (slice
->y
== 0)
1097 height
= slice
->height
+ img
->vmargin
;
1099 height
= slice
->height
;
1101 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
1106 /* W32 specific version. Why?. ++kfs */
1107 ascent
= height
/ 2 - (FONT_DESCENT (face
->font
)
1108 - FONT_BASE (face
->font
)) / 2;
1110 /* This expression is arranged so that if the image can't be
1111 exactly centered, it will be moved slightly up. This is
1112 because a typical font is `top-heavy' (due to the presence
1113 uppercase letters), so the image placement should err towards
1114 being top-heavy too. It also just generally looks better. */
1115 ascent
= (height
+ FONT_BASE(face
->font
)
1116 - FONT_DESCENT(face
->font
) + 1) / 2;
1117 #endif /* HAVE_NTGUI */
1120 ascent
= height
/ 2;
1123 ascent
= (int) (height
* img
->ascent
/ 100.0);
1129 /* Image background colors. */
1131 /* Find the "best" corner color of a bitmap.
1132 On W32, XIMG is assumed to a device context with the bitmap selected. */
1134 static RGB_PIXEL_COLOR
1135 four_corners_best (XImagePtr_or_DC ximg
, int *corners
,
1136 unsigned long width
, unsigned long height
)
1138 RGB_PIXEL_COLOR corner_pixels
[4], best
IF_LINT (= 0);
1141 if (corners
&& corners
[BOT_CORNER
] >= 0)
1143 /* Get the colors at the corner_pixels of ximg. */
1144 corner_pixels
[0] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[TOP_CORNER
]);
1145 corner_pixels
[1] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[TOP_CORNER
]);
1146 corner_pixels
[2] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[BOT_CORNER
] - 1);
1147 corner_pixels
[3] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[BOT_CORNER
] - 1);
1151 /* Get the colors at the corner_pixels of ximg. */
1152 corner_pixels
[0] = GET_PIXEL (ximg
, 0, 0);
1153 corner_pixels
[1] = GET_PIXEL (ximg
, width
- 1, 0);
1154 corner_pixels
[2] = GET_PIXEL (ximg
, width
- 1, height
- 1);
1155 corner_pixels
[3] = GET_PIXEL (ximg
, 0, height
- 1);
1157 /* Choose the most frequently found color as background. */
1158 for (i
= best_count
= 0; i
< 4; ++i
)
1162 for (j
= n
= 0; j
< 4; ++j
)
1163 if (corner_pixels
[i
] == corner_pixels
[j
])
1167 best
= corner_pixels
[i
], best_count
= n
;
1173 /* Portability macros */
1177 #define Destroy_Image(img_dc, prev) \
1178 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1180 #define Free_Pixmap(display, pixmap) \
1181 DeleteObject (pixmap)
1183 #elif defined (HAVE_NS)
1185 #define Destroy_Image(ximg, dummy) \
1186 ns_release_object (ximg)
1188 #define Free_Pixmap(display, pixmap) \
1189 ns_release_object (pixmap)
1193 #define Destroy_Image(ximg, dummy) \
1194 XDestroyImage (ximg)
1196 #define Free_Pixmap(display, pixmap) \
1197 XFreePixmap (display, pixmap)
1199 #endif /* !HAVE_NTGUI && !HAVE_NS */
1202 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1203 it is guessed heuristically. If non-zero, XIMG is an existing
1204 XImage object (or device context with the image selected on W32) to
1205 use for the heuristic. */
1208 image_background (struct image
*img
, struct frame
*f
, XImagePtr_or_DC ximg
)
1210 if (! img
->background_valid
)
1211 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1213 int free_ximg
= !ximg
;
1216 #endif /* HAVE_NTGUI */
1221 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
1222 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1224 HDC frame_dc
= get_frame_dc (f
);
1225 ximg
= CreateCompatibleDC (frame_dc
);
1226 release_frame_dc (f
, frame_dc
);
1227 prev
= SelectObject (ximg
, img
->pixmap
);
1228 #endif /* !HAVE_NTGUI */
1231 img
->background
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
1234 Destroy_Image (ximg
, prev
);
1236 img
->background_valid
= 1;
1239 return img
->background
;
1242 /* Return the `background_transparent' field of IMG. If IMG doesn't
1243 have one yet, it is guessed heuristically. If non-zero, MASK is an
1244 existing XImage object to use for the heuristic. */
1247 image_background_transparent (struct image
*img
, struct frame
*f
, XImagePtr_or_DC mask
)
1249 if (! img
->background_transparent_valid
)
1250 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1254 int free_mask
= !mask
;
1257 #endif /* HAVE_NTGUI */
1262 mask
= XGetImage (FRAME_X_DISPLAY (f
), img
->mask
,
1263 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1265 HDC frame_dc
= get_frame_dc (f
);
1266 mask
= CreateCompatibleDC (frame_dc
);
1267 release_frame_dc (f
, frame_dc
);
1268 prev
= SelectObject (mask
, img
->mask
);
1269 #endif /* HAVE_NTGUI */
1272 img
->background_transparent
1273 = (four_corners_best (mask
, img
->corners
, img
->width
, img
->height
) == PIX_MASK_RETAIN
);
1276 Destroy_Image (mask
, prev
);
1279 img
->background_transparent
= 0;
1281 img
->background_transparent_valid
= 1;
1284 return img
->background_transparent
;
1288 /***********************************************************************
1289 Helper functions for X image types
1290 ***********************************************************************/
1292 static void x_clear_image_1 (struct frame
*, struct image
*, int,
1294 static void x_clear_image (struct frame
*f
, struct image
*img
);
1295 static unsigned long x_alloc_image_color (struct frame
*f
,
1297 Lisp_Object color_name
,
1298 unsigned long dflt
);
1301 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
1302 free the pixmap if any. MASK_P non-zero means clear the mask
1303 pixmap if any. COLORS_P non-zero means free colors allocated for
1304 the image, if any. */
1307 x_clear_image_1 (struct frame
*f
, struct image
*img
, int pixmap_p
, int mask_p
,
1310 if (pixmap_p
&& img
->pixmap
)
1312 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
1313 img
->pixmap
= NO_PIXMAP
;
1314 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1315 img
->background_valid
= 0;
1318 if (mask_p
&& img
->mask
)
1320 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1321 img
->mask
= NO_PIXMAP
;
1322 img
->background_transparent_valid
= 0;
1325 if (colors_p
&& img
->ncolors
)
1327 /* W32_TODO: color table support. */
1328 #ifdef HAVE_X_WINDOWS
1329 x_free_colors (f
, img
->colors
, img
->ncolors
);
1330 #endif /* HAVE_X_WINDOWS */
1331 xfree (img
->colors
);
1338 /* Free X resources of image IMG which is used on frame F. */
1341 x_clear_image (struct frame
*f
, struct image
*img
)
1344 x_clear_image_1 (f
, img
, 1, 1, 1);
1349 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1350 cannot be allocated, use DFLT. Add a newly allocated color to
1351 IMG->colors, so that it can be freed again. Value is the pixel
1354 static unsigned long
1355 x_alloc_image_color (struct frame
*f
, struct image
*img
, Lisp_Object color_name
,
1359 unsigned long result
;
1361 xassert (STRINGP (color_name
));
1363 if (x_defined_color (f
, SSDATA (color_name
), &color
, 1))
1365 /* This isn't called frequently so we get away with simply
1366 reallocating the color vector to the needed size, here. */
1369 (unsigned long *) xrealloc (img
->colors
,
1370 img
->ncolors
* sizeof *img
->colors
);
1371 img
->colors
[img
->ncolors
- 1] = color
.pixel
;
1372 result
= color
.pixel
;
1382 /***********************************************************************
1384 ***********************************************************************/
1386 static struct image
*search_image_cache (struct frame
*, Lisp_Object
, unsigned);
1387 static void cache_image (struct frame
*f
, struct image
*img
);
1388 static void postprocess_image (struct frame
*, struct image
*);
1390 /* Return a new, initialized image cache that is allocated from the
1391 heap. Call free_image_cache to free an image cache. */
1393 struct image_cache
*
1394 make_image_cache (void)
1396 struct image_cache
*c
= (struct image_cache
*) xmalloc (sizeof *c
);
1399 memset (c
, 0, sizeof *c
);
1401 c
->images
= (struct image
**) xmalloc (c
->size
* sizeof *c
->images
);
1402 size
= IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
1403 c
->buckets
= (struct image
**) xmalloc (size
);
1404 memset (c
->buckets
, 0, size
);
1409 /* Find an image matching SPEC in the cache, and return it. If no
1410 image is found, return NULL. */
1411 static struct image
*
1412 search_image_cache (struct frame
*f
, Lisp_Object spec
, unsigned int hash
)
1415 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1416 int i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1418 if (!c
) return NULL
;
1420 /* If the image spec does not specify a background color, the cached
1421 image must have the same background color as the current frame.
1422 The foreground color must also match, for the sake of monochrome
1425 In fact, we could ignore the foreground color matching condition
1426 for color images, or if the image spec specifies :foreground;
1427 similarly we could ignore the background color matching condition
1428 for formats that don't use transparency (such as jpeg), or if the
1429 image spec specifies :background. However, the extra memory
1430 usage is probably negligible in practice, so we don't bother. */
1432 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
1433 if (img
->hash
== hash
1434 && !NILP (Fequal (img
->spec
, spec
))
1435 && img
->frame_foreground
== FRAME_FOREGROUND_PIXEL (f
)
1436 && img
->frame_background
== FRAME_BACKGROUND_PIXEL (f
))
1442 /* Search frame F for an image with spec SPEC, and free it. */
1445 uncache_image (struct frame
*f
, Lisp_Object spec
)
1447 struct image
*img
= search_image_cache (f
, spec
, sxhash (spec
, 0));
1450 free_image (f
, img
);
1451 /* As display glyphs may still be referring to the image ID, we
1452 must garbage the frame (Bug#6426). */
1453 SET_FRAME_GARBAGED (f
);
1458 /* Free image cache of frame F. Be aware that X frames share images
1462 free_image_cache (struct frame
*f
)
1464 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1469 /* Cache should not be referenced by any frame when freed. */
1470 xassert (c
->refcount
== 0);
1472 for (i
= 0; i
< c
->used
; ++i
)
1473 free_image (f
, c
->images
[i
]);
1477 FRAME_IMAGE_CACHE (f
) = NULL
;
1482 /* Clear image cache of frame F. FILTER=t means free all images.
1483 FILTER=nil means clear only images that haven't been
1484 displayed for some time.
1485 Else, only free the images which have FILTER in their `dependencies'.
1486 Should be called from time to time to reduce the number of loaded images.
1487 If image-cache-eviction-delay is non-nil, this frees images in the cache
1488 which weren't displayed for at least that many seconds. */
1491 clear_image_cache (struct frame
*f
, Lisp_Object filter
)
1493 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1499 /* Block input so that we won't be interrupted by a SIGIO
1500 while being in an inconsistent state. */
1505 /* Filter image cache. */
1506 for (i
= 0; i
< c
->used
; ++i
)
1508 struct image
*img
= c
->images
[i
];
1509 if (img
&& (EQ (Qt
, filter
)
1510 || !NILP (Fmember (filter
, img
->dependencies
))))
1512 free_image (f
, img
);
1517 else if (INTEGERP (Vimage_cache_eviction_delay
))
1519 /* Free cache based on timestamp. */
1522 int delay
, nimages
= 0;
1524 for (i
= 0; i
< c
->used
; ++i
)
1528 /* If the number of cached images has grown unusually large,
1529 decrease the cache eviction delay (Bug#6230). */
1530 delay
= XFASTINT (Vimage_cache_eviction_delay
);
1532 delay
= max (1, 1600 * delay
/ (nimages
*nimages
));
1535 old
= EMACS_SECS (t
) - delay
;
1537 for (i
= 0; i
< c
->used
; ++i
)
1539 struct image
*img
= c
->images
[i
];
1540 if (img
&& img
->timestamp
< old
)
1542 free_image (f
, img
);
1548 /* We may be clearing the image cache because, for example,
1549 Emacs was iconified for a longer period of time. In that
1550 case, current matrices may still contain references to
1551 images freed above. So, clear these matrices. */
1554 Lisp_Object tail
, frame
;
1556 FOR_EACH_FRAME (tail
, frame
)
1558 struct frame
*fr
= XFRAME (frame
);
1559 if (FRAME_IMAGE_CACHE (fr
) == c
)
1560 clear_current_matrices (fr
);
1563 ++windows_or_buffers_changed
;
1571 clear_image_caches (Lisp_Object filter
)
1573 /* FIXME: We want to do
1574 * struct terminal *t;
1575 * for (t = terminal_list; t; t = t->next_terminal)
1576 * clear_image_cache (t, filter); */
1577 Lisp_Object tail
, frame
;
1578 FOR_EACH_FRAME (tail
, frame
)
1579 if (FRAME_WINDOW_P (XFRAME (frame
)))
1580 clear_image_cache (XFRAME (frame
), filter
);
1583 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
1585 doc
: /* Clear the image cache.
1586 FILTER nil or a frame means clear all images in the selected frame.
1587 FILTER t means clear the image caches of all frames.
1588 Anything else, means only clear those images which refer to FILTER,
1589 which is then usually a filename. */)
1590 (Lisp_Object filter
)
1592 if (!(EQ (filter
, Qnil
) || FRAMEP (filter
)))
1593 clear_image_caches (filter
);
1595 clear_image_cache (check_x_frame (filter
), Qt
);
1601 DEFUN ("image-flush", Fimage_flush
, Simage_flush
,
1603 doc
: /* Fush the image with specification SPEC on frame FRAME.
1604 This removes the image from the Emacs image cache. If SPEC specifies
1605 an image file, the next redisplay of this image will read from the
1606 current contents of that file.
1608 FRAME nil or omitted means use the selected frame.
1609 FRAME t means refresh the image on all frames. */)
1610 (Lisp_Object spec
, Lisp_Object frame
)
1612 if (!valid_image_p (spec
))
1613 error ("Invalid image specification");
1618 FOR_EACH_FRAME (tail
, frame
)
1620 struct frame
*f
= XFRAME (frame
);
1621 if (FRAME_WINDOW_P (f
))
1622 uncache_image (f
, spec
);
1626 uncache_image (check_x_frame (frame
), spec
);
1632 /* Compute masks and transform image IMG on frame F, as specified
1633 by the image's specification, */
1636 postprocess_image (struct frame
*f
, struct image
*img
)
1638 /* Manipulation of the image's mask. */
1641 Lisp_Object conversion
, spec
;
1646 /* `:heuristic-mask t'
1648 means build a mask heuristically.
1649 `:heuristic-mask (R G B)'
1650 `:mask (heuristic (R G B))'
1651 means build a mask from color (R G B) in the
1654 means remove a mask, if any. */
1656 mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
1658 x_build_heuristic_mask (f
, img
, mask
);
1663 mask
= image_spec_value (spec
, QCmask
, &found_p
);
1665 if (EQ (mask
, Qheuristic
))
1666 x_build_heuristic_mask (f
, img
, Qt
);
1667 else if (CONSP (mask
)
1668 && EQ (XCAR (mask
), Qheuristic
))
1670 if (CONSP (XCDR (mask
)))
1671 x_build_heuristic_mask (f
, img
, XCAR (XCDR (mask
)));
1673 x_build_heuristic_mask (f
, img
, XCDR (mask
));
1675 else if (NILP (mask
) && found_p
&& img
->mask
)
1677 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1678 img
->mask
= NO_PIXMAP
;
1683 /* Should we apply an image transformation algorithm? */
1684 conversion
= image_spec_value (spec
, QCconversion
, NULL
);
1685 if (EQ (conversion
, Qdisabled
))
1686 x_disable_image (f
, img
);
1687 else if (EQ (conversion
, Qlaplace
))
1689 else if (EQ (conversion
, Qemboss
))
1691 else if (CONSP (conversion
)
1692 && EQ (XCAR (conversion
), Qedge_detection
))
1695 tem
= XCDR (conversion
);
1697 x_edge_detection (f
, img
,
1698 Fplist_get (tem
, QCmatrix
),
1699 Fplist_get (tem
, QCcolor_adjustment
));
1705 /* Return the id of image with Lisp specification SPEC on frame F.
1706 SPEC must be a valid Lisp image specification (see valid_image_p). */
1709 lookup_image (struct frame
*f
, Lisp_Object spec
)
1711 struct image_cache
*c
;
1716 /* F must be a window-system frame, and SPEC must be a valid image
1718 xassert (FRAME_WINDOW_P (f
));
1719 xassert (valid_image_p (spec
));
1721 c
= FRAME_IMAGE_CACHE (f
);
1723 /* Look up SPEC in the hash table of the image cache. */
1724 hash
= sxhash (spec
, 0);
1725 img
= search_image_cache (f
, spec
, hash
);
1726 if (img
&& img
->load_failed_p
)
1728 free_image (f
, img
);
1732 /* If not found, create a new image and cache it. */
1736 img
= make_image (spec
, hash
);
1737 cache_image (f
, img
);
1738 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
1739 img
->frame_foreground
= FRAME_FOREGROUND_PIXEL (f
);
1740 img
->frame_background
= FRAME_BACKGROUND_PIXEL (f
);
1742 /* If we can't load the image, and we don't have a width and
1743 height, use some arbitrary width and height so that we can
1744 draw a rectangle for it. */
1745 if (img
->load_failed_p
)
1749 value
= image_spec_value (spec
, QCwidth
, NULL
);
1750 img
->width
= (INTEGERP (value
)
1751 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
1752 value
= image_spec_value (spec
, QCheight
, NULL
);
1753 img
->height
= (INTEGERP (value
)
1754 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
1758 /* Handle image type independent image attributes
1759 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1760 `:background COLOR'. */
1761 Lisp_Object ascent
, margin
, relief
, bg
;
1763 ascent
= image_spec_value (spec
, QCascent
, NULL
);
1764 if (INTEGERP (ascent
))
1765 img
->ascent
= XFASTINT (ascent
);
1766 else if (EQ (ascent
, Qcenter
))
1767 img
->ascent
= CENTERED_IMAGE_ASCENT
;
1769 margin
= image_spec_value (spec
, QCmargin
, NULL
);
1770 if (INTEGERP (margin
) && XINT (margin
) >= 0)
1771 img
->vmargin
= img
->hmargin
= XFASTINT (margin
);
1772 else if (CONSP (margin
) && INTEGERP (XCAR (margin
))
1773 && INTEGERP (XCDR (margin
)))
1775 if (XINT (XCAR (margin
)) > 0)
1776 img
->hmargin
= XFASTINT (XCAR (margin
));
1777 if (XINT (XCDR (margin
)) > 0)
1778 img
->vmargin
= XFASTINT (XCDR (margin
));
1781 relief
= image_spec_value (spec
, QCrelief
, NULL
);
1782 if (INTEGERP (relief
))
1784 img
->relief
= XINT (relief
);
1785 img
->hmargin
+= eabs (img
->relief
);
1786 img
->vmargin
+= eabs (img
->relief
);
1789 if (! img
->background_valid
)
1791 bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
1795 = x_alloc_image_color (f
, img
, bg
,
1796 FRAME_BACKGROUND_PIXEL (f
));
1797 img
->background_valid
= 1;
1801 /* Do image transformations and compute masks, unless we
1802 don't have the image yet. */
1803 if (!EQ (*img
->type
->type
, Qpostscript
))
1804 postprocess_image (f
, img
);
1810 /* We're using IMG, so set its timestamp to `now'. */
1811 EMACS_GET_TIME (now
);
1812 img
->timestamp
= EMACS_SECS (now
);
1814 /* Value is the image id. */
1819 /* Cache image IMG in the image cache of frame F. */
1822 cache_image (struct frame
*f
, struct image
*img
)
1824 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1827 /* Find a free slot in c->images. */
1828 for (i
= 0; i
< c
->used
; ++i
)
1829 if (c
->images
[i
] == NULL
)
1832 /* If no free slot found, maybe enlarge c->images. */
1833 if (i
== c
->used
&& c
->used
== c
->size
)
1836 c
->images
= (struct image
**) xrealloc (c
->images
,
1837 c
->size
* sizeof *c
->images
);
1840 /* Add IMG to c->images, and assign IMG an id. */
1846 /* Add IMG to the cache's hash table. */
1847 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1848 img
->next
= c
->buckets
[i
];
1850 img
->next
->prev
= img
;
1852 c
->buckets
[i
] = img
;
1856 /* Call FN on every image in the image cache of frame F. Used to mark
1857 Lisp Objects in the image cache. */
1859 /* Mark Lisp objects in image IMG. */
1862 mark_image (struct image
*img
)
1864 mark_object (img
->spec
);
1865 mark_object (img
->dependencies
);
1867 if (!NILP (img
->data
.lisp_val
))
1868 mark_object (img
->data
.lisp_val
);
1873 mark_image_cache (struct image_cache
*c
)
1878 for (i
= 0; i
< c
->used
; ++i
)
1880 mark_image (c
->images
[i
]);
1886 /***********************************************************************
1887 X / NS / W32 support code
1888 ***********************************************************************/
1892 /* Macro for defining functions that will be loaded from image DLLs. */
1893 #define DEF_IMGLIB_FN(rettype,func,args) rettype (FAR CDECL *fn_##func)args
1895 /* Macro for loading those image functions from the library. */
1896 #define LOAD_IMGLIB_FN(lib,func) { \
1897 fn_##func = (void *) GetProcAddress (lib, #func); \
1898 if (!fn_##func) return 0; \
1901 /* Load a DLL implementing an image type.
1902 The argument LIBRARIES is usually the variable
1903 `dynamic-library-alist', which associates a symbol, identifying
1904 an external DLL library, to a list of possible filenames.
1905 The function returns NULL if no library could be loaded for
1906 the given symbol, or if the library was previously loaded;
1907 else the handle of the DLL. */
1909 w32_delayed_load (Lisp_Object libraries
, Lisp_Object type
)
1911 HMODULE library
= NULL
;
1913 if (CONSP (libraries
) && NILP (Fassq (type
, Vimage_type_cache
)))
1915 Lisp_Object dlls
= Fassq (type
, libraries
);
1918 for (dlls
= XCDR (dlls
); CONSP (dlls
); dlls
= XCDR (dlls
))
1920 CHECK_STRING_CAR (dlls
);
1921 if (library
= LoadLibrary (SDATA (XCAR (dlls
))))
1929 #endif /* HAVE_NTGUI */
1931 static int x_create_x_image_and_pixmap (struct frame
*, int, int, int,
1932 XImagePtr
*, Pixmap
*);
1933 static void x_destroy_x_image (XImagePtr
);
1934 static void x_put_x_image (struct frame
*, XImagePtr
, Pixmap
, int, int);
1937 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1938 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1939 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1940 via xmalloc. Print error messages via image_error if an error
1941 occurs. Value is non-zero if successful.
1943 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1944 should indicate the bit depth of the image. */
1947 x_create_x_image_and_pixmap (struct frame
*f
, int width
, int height
, int depth
,
1948 XImagePtr
*ximg
, Pixmap
*pixmap
)
1950 #ifdef HAVE_X_WINDOWS
1951 Display
*display
= FRAME_X_DISPLAY (f
);
1952 Window window
= FRAME_X_WINDOW (f
);
1953 Screen
*screen
= FRAME_X_SCREEN (f
);
1955 xassert (interrupt_input_blocked
);
1958 depth
= DefaultDepthOfScreen (screen
);
1959 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
1960 depth
, ZPixmap
, 0, NULL
, width
, height
,
1961 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
1964 image_error ("Unable to allocate X image", Qnil
, Qnil
);
1968 /* Allocate image raster. */
1969 (*ximg
)->data
= (char *) xmalloc ((*ximg
)->bytes_per_line
* height
);
1971 /* Allocate a pixmap of the same size. */
1972 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
1973 if (*pixmap
== NO_PIXMAP
)
1975 x_destroy_x_image (*ximg
);
1977 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
1982 #endif /* HAVE_X_WINDOWS */
1986 BITMAPINFOHEADER
*header
;
1988 int scanline_width_bits
;
1990 int palette_colors
= 0;
1995 if (depth
!= 1 && depth
!= 4 && depth
!= 8
1996 && depth
!= 16 && depth
!= 24 && depth
!= 32)
1998 image_error ("Invalid image bit depth specified", Qnil
, Qnil
);
2002 scanline_width_bits
= width
* depth
;
2003 remainder
= scanline_width_bits
% 32;
2006 scanline_width_bits
+= 32 - remainder
;
2008 /* Bitmaps with a depth less than 16 need a palette. */
2009 /* BITMAPINFO structure already contains the first RGBQUAD. */
2011 palette_colors
= 1 << depth
- 1;
2013 *ximg
= xmalloc (sizeof (XImage
) + palette_colors
* sizeof (RGBQUAD
));
2016 image_error ("Unable to allocate memory for XImage", Qnil
, Qnil
);
2020 header
= &(*ximg
)->info
.bmiHeader
;
2021 memset (&(*ximg
)->info
, 0, sizeof (BITMAPINFO
));
2022 header
->biSize
= sizeof (*header
);
2023 header
->biWidth
= width
;
2024 header
->biHeight
= -height
; /* negative indicates a top-down bitmap. */
2025 header
->biPlanes
= 1;
2026 header
->biBitCount
= depth
;
2027 header
->biCompression
= BI_RGB
;
2028 header
->biClrUsed
= palette_colors
;
2030 /* TODO: fill in palette. */
2033 (*ximg
)->info
.bmiColors
[0].rgbBlue
= 0;
2034 (*ximg
)->info
.bmiColors
[0].rgbGreen
= 0;
2035 (*ximg
)->info
.bmiColors
[0].rgbRed
= 0;
2036 (*ximg
)->info
.bmiColors
[0].rgbReserved
= 0;
2037 (*ximg
)->info
.bmiColors
[1].rgbBlue
= 255;
2038 (*ximg
)->info
.bmiColors
[1].rgbGreen
= 255;
2039 (*ximg
)->info
.bmiColors
[1].rgbRed
= 255;
2040 (*ximg
)->info
.bmiColors
[1].rgbReserved
= 0;
2043 hdc
= get_frame_dc (f
);
2045 /* Create a DIBSection and raster array for the bitmap,
2046 and store its handle in *pixmap. */
2047 *pixmap
= CreateDIBSection (hdc
, &((*ximg
)->info
),
2048 (depth
< 16) ? DIB_PAL_COLORS
: DIB_RGB_COLORS
,
2049 /* casting avoids a GCC warning */
2050 (void **)&((*ximg
)->data
), NULL
, 0);
2052 /* Realize display palette and garbage all frames. */
2053 release_frame_dc (f
, hdc
);
2055 if (*pixmap
== NULL
)
2057 DWORD err
= GetLastError ();
2058 Lisp_Object errcode
;
2059 /* All system errors are < 10000, so the following is safe. */
2060 XSETINT (errcode
, (int) err
);
2061 image_error ("Unable to create bitmap, error code %d", errcode
, Qnil
);
2062 x_destroy_x_image (*ximg
);
2068 #endif /* HAVE_NTGUI */
2071 *pixmap
= ns_image_for_XPM (width
, height
, depth
);
2075 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil
, Qnil
);
2084 /* Destroy XImage XIMG. Free XIMG->data. */
2087 x_destroy_x_image (XImagePtr ximg
)
2089 xassert (interrupt_input_blocked
);
2092 #ifdef HAVE_X_WINDOWS
2095 XDestroyImage (ximg
);
2096 #endif /* HAVE_X_WINDOWS */
2098 /* Data will be freed by DestroyObject. */
2101 #endif /* HAVE_NTGUI */
2103 ns_release_object (ximg
);
2104 #endif /* HAVE_NS */
2109 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2110 are width and height of both the image and pixmap. */
2113 x_put_x_image (struct frame
*f
, XImagePtr ximg
, Pixmap pixmap
, int width
, int height
)
2115 #ifdef HAVE_X_WINDOWS
2118 xassert (interrupt_input_blocked
);
2119 gc
= XCreateGC (FRAME_X_DISPLAY (f
), pixmap
, 0, NULL
);
2120 XPutImage (FRAME_X_DISPLAY (f
), pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
2121 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
2122 #endif /* HAVE_X_WINDOWS */
2125 #if 0 /* I don't think this is necessary looking at where it is used. */
2126 HDC hdc
= get_frame_dc (f
);
2127 SetDIBits (hdc
, pixmap
, 0, height
, ximg
->data
, &(ximg
->info
), DIB_RGB_COLORS
);
2128 release_frame_dc (f
, hdc
);
2130 #endif /* HAVE_NTGUI */
2133 xassert (ximg
== pixmap
);
2134 ns_retain_object (ximg
);
2139 /***********************************************************************
2141 ***********************************************************************/
2143 static unsigned char *slurp_file (char *, int *);
2146 /* Find image file FILE. Look in data-directory/images, then
2147 x-bitmap-file-path. Value is the encoded full name of the file
2148 found, or nil if not found. */
2151 x_find_image_file (Lisp_Object file
)
2153 Lisp_Object file_found
, search_path
;
2156 /* TODO I think this should use something like image-load-path
2157 instead. Unfortunately, that can contain non-string elements. */
2158 search_path
= Fcons (Fexpand_file_name (build_string ("images"),
2160 Vx_bitmap_file_path
);
2162 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2163 fd
= openp (search_path
, file
, Qnil
, &file_found
, Qnil
);
2169 file_found
= ENCODE_FILE (file_found
);
2177 /* Read FILE into memory. Value is a pointer to a buffer allocated
2178 with xmalloc holding FILE's contents. Value is null if an error
2179 occurred. *SIZE is set to the size of the file. */
2181 static unsigned char *
2182 slurp_file (char *file
, int *size
)
2185 unsigned char *buf
= NULL
;
2188 if (stat (file
, &st
) == 0
2189 && (fp
= fopen (file
, "rb")) != NULL
2190 && (buf
= (unsigned char *) xmalloc (st
.st_size
),
2191 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
2212 /***********************************************************************
2214 ***********************************************************************/
2216 static int xbm_scan (unsigned char **, unsigned char *, char *, int *);
2217 static int xbm_load (struct frame
*f
, struct image
*img
);
2218 static int xbm_load_image (struct frame
*f
, struct image
*img
,
2219 unsigned char *, unsigned char *);
2220 static int xbm_image_p (Lisp_Object object
);
2221 static int xbm_read_bitmap_data (struct frame
*f
,
2222 unsigned char *, unsigned char *,
2223 int *, int *, char **, int);
2224 static int xbm_file_p (Lisp_Object
);
2227 /* Indices of image specification fields in xbm_format, below. */
2229 enum xbm_keyword_index
2247 /* Vector of image_keyword structures describing the format
2248 of valid XBM image specifications. */
2250 static const struct image_keyword xbm_format
[XBM_LAST
] =
2252 {":type", IMAGE_SYMBOL_VALUE
, 1},
2253 {":file", IMAGE_STRING_VALUE
, 0},
2254 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2255 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2256 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2257 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
2258 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
2259 {":ascent", IMAGE_ASCENT_VALUE
, 0},
2260 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
2261 {":relief", IMAGE_INTEGER_VALUE
, 0},
2262 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2263 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2264 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
2267 /* Structure describing the image type XBM. */
2269 static struct image_type xbm_type
=
2278 /* Tokens returned from xbm_scan. */
2287 /* Return non-zero if OBJECT is a valid XBM-type image specification.
2288 A valid specification is a list starting with the symbol `image'
2289 The rest of the list is a property list which must contain an
2292 If the specification specifies a file to load, it must contain
2293 an entry `:file FILENAME' where FILENAME is a string.
2295 If the specification is for a bitmap loaded from memory it must
2296 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2297 WIDTH and HEIGHT are integers > 0. DATA may be:
2299 1. a string large enough to hold the bitmap data, i.e. it must
2300 have a size >= (WIDTH + 7) / 8 * HEIGHT
2302 2. a bool-vector of size >= WIDTH * HEIGHT
2304 3. a vector of strings or bool-vectors, one for each line of the
2307 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2308 may not be specified in this case because they are defined in the
2311 Both the file and data forms may contain the additional entries
2312 `:background COLOR' and `:foreground COLOR'. If not present,
2313 foreground and background of the frame on which the image is
2314 displayed is used. */
2317 xbm_image_p (Lisp_Object object
)
2319 struct image_keyword kw
[XBM_LAST
];
2321 memcpy (kw
, xbm_format
, sizeof kw
);
2322 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
2325 xassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
2327 if (kw
[XBM_FILE
].count
)
2329 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
2332 else if (kw
[XBM_DATA
].count
&& xbm_file_p (kw
[XBM_DATA
].value
))
2334 /* In-memory XBM file. */
2335 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_FILE
].count
)
2343 /* Entries for `:width', `:height' and `:data' must be present. */
2344 if (!kw
[XBM_WIDTH
].count
2345 || !kw
[XBM_HEIGHT
].count
2346 || !kw
[XBM_DATA
].count
)
2349 data
= kw
[XBM_DATA
].value
;
2350 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
2351 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
2353 /* Check type of data, and width and height against contents of
2359 /* Number of elements of the vector must be >= height. */
2360 if (XVECTOR (data
)->size
< height
)
2363 /* Each string or bool-vector in data must be large enough
2364 for one line of the image. */
2365 for (i
= 0; i
< height
; ++i
)
2367 Lisp_Object elt
= XVECTOR (data
)->contents
[i
];
2372 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
2375 else if (BOOL_VECTOR_P (elt
))
2377 if (XBOOL_VECTOR (elt
)->size
< width
)
2384 else if (STRINGP (data
))
2387 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
2390 else if (BOOL_VECTOR_P (data
))
2392 if (XBOOL_VECTOR (data
)->size
< width
* height
)
2403 /* Scan a bitmap file. FP is the stream to read from. Value is
2404 either an enumerator from enum xbm_token, or a character for a
2405 single-character token, or 0 at end of file. If scanning an
2406 identifier, store the lexeme of the identifier in SVAL. If
2407 scanning a number, store its value in *IVAL. */
2410 xbm_scan (unsigned char **s
, unsigned char *end
, char *sval
, int *ival
)
2416 /* Skip white space. */
2417 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
2422 else if (isdigit (c
))
2424 int value
= 0, digit
;
2426 if (c
== '0' && *s
< end
)
2429 if (c
== 'x' || c
== 'X')
2436 else if (c
>= 'a' && c
<= 'f')
2437 digit
= c
- 'a' + 10;
2438 else if (c
>= 'A' && c
<= 'F')
2439 digit
= c
- 'A' + 10;
2442 value
= 16 * value
+ digit
;
2445 else if (isdigit (c
))
2449 && (c
= *(*s
)++, isdigit (c
)))
2450 value
= 8 * value
+ c
- '0';
2457 && (c
= *(*s
)++, isdigit (c
)))
2458 value
= 10 * value
+ c
- '0';
2466 else if (isalpha (c
) || c
== '_')
2470 && (c
= *(*s
)++, (isalnum (c
) || c
== '_')))
2477 else if (c
== '/' && **s
== '*')
2479 /* C-style comment. */
2481 while (**s
&& (**s
!= '*' || *(*s
+ 1) != '/'))
2495 /* Create a Windows bitmap from X bitmap data. */
2497 w32_create_pixmap_from_bitmap_data (int width
, int height
, char *data
)
2499 static unsigned char swap_nibble
[16]
2500 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2501 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2502 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2503 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2505 unsigned char *bits
, *p
;
2508 w1
= (width
+ 7) / 8; /* nb of 8bits elt in X bitmap */
2509 w2
= ((width
+ 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2510 bits
= (unsigned char *) alloca (height
* w2
);
2511 memset (bits
, 0, height
* w2
);
2512 for (i
= 0; i
< height
; i
++)
2515 for (j
= 0; j
< w1
; j
++)
2517 /* Bitswap XBM bytes to match how Windows does things. */
2518 unsigned char c
= *data
++;
2519 *p
++ = (unsigned char)((swap_nibble
[c
& 0xf] << 4)
2520 | (swap_nibble
[(c
>>4) & 0xf]));
2523 bmp
= CreateBitmap (width
, height
, 1, 1, (char *) bits
);
2529 convert_mono_to_color_image (struct frame
*f
, struct image
*img
,
2530 COLORREF foreground
, COLORREF background
)
2532 HDC hdc
, old_img_dc
, new_img_dc
;
2533 HGDIOBJ old_prev
, new_prev
;
2536 hdc
= get_frame_dc (f
);
2537 old_img_dc
= CreateCompatibleDC (hdc
);
2538 new_img_dc
= CreateCompatibleDC (hdc
);
2539 new_pixmap
= CreateCompatibleBitmap (hdc
, img
->width
, img
->height
);
2540 release_frame_dc (f
, hdc
);
2541 old_prev
= SelectObject (old_img_dc
, img
->pixmap
);
2542 new_prev
= SelectObject (new_img_dc
, new_pixmap
);
2543 /* Windows convention for mono bitmaps is black = background,
2544 white = foreground. */
2545 SetTextColor (new_img_dc
, background
);
2546 SetBkColor (new_img_dc
, foreground
);
2548 BitBlt (new_img_dc
, 0, 0, img
->width
, img
->height
, old_img_dc
,
2551 SelectObject (old_img_dc
, old_prev
);
2552 SelectObject (new_img_dc
, new_prev
);
2553 DeleteDC (old_img_dc
);
2554 DeleteDC (new_img_dc
);
2555 DeleteObject (img
->pixmap
);
2556 if (new_pixmap
== 0)
2557 fprintf (stderr
, "Failed to convert image to color.\n");
2559 img
->pixmap
= new_pixmap
;
2562 #define XBM_BIT_SHUFFLE(b) (~(b))
2566 #define XBM_BIT_SHUFFLE(b) (b)
2568 #endif /* HAVE_NTGUI */
2572 Create_Pixmap_From_Bitmap_Data (struct frame
*f
, struct image
*img
, char *data
,
2573 RGB_PIXEL_COLOR fg
, RGB_PIXEL_COLOR bg
,
2574 int non_default_colors
)
2578 = w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
, data
);
2580 /* If colors were specified, transfer the bitmap to a color one. */
2581 if (non_default_colors
)
2582 convert_mono_to_color_image (f
, img
, fg
, bg
);
2584 #elif defined (HAVE_NS)
2585 img
->pixmap
= ns_image_from_XBM (data
, img
->width
, img
->height
);
2589 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
2592 img
->width
, img
->height
,
2594 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
2595 #endif /* !HAVE_NTGUI && !HAVE_NS */
2600 /* Replacement for XReadBitmapFileData which isn't available under old
2601 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2602 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2603 the image. Return in *DATA the bitmap data allocated with xmalloc.
2604 Value is non-zero if successful. DATA null means just test if
2605 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR
2606 is non-zero, inhibit the call to image_error when the image size is
2607 invalid (the bitmap remains unread). */
2610 xbm_read_bitmap_data (struct frame
*f
, unsigned char *contents
, unsigned char *end
,
2611 int *width
, int *height
, char **data
,
2612 int inhibit_image_error
)
2614 unsigned char *s
= contents
;
2615 char buffer
[BUFSIZ
];
2618 int bytes_per_line
, i
, nbytes
;
2624 LA1 = xbm_scan (&s, end, buffer, &value)
2626 #define expect(TOKEN) \
2627 if (LA1 != (TOKEN)) \
2632 #define expect_ident(IDENT) \
2633 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2638 *width
= *height
= -1;
2641 LA1
= xbm_scan (&s
, end
, buffer
, &value
);
2643 /* Parse defines for width, height and hot-spots. */
2647 expect_ident ("define");
2648 expect (XBM_TK_IDENT
);
2650 if (LA1
== XBM_TK_NUMBER
)
2652 char *q
= strrchr (buffer
, '_');
2653 q
= q
? q
+ 1 : buffer
;
2654 if (strcmp (q
, "width") == 0)
2656 else if (strcmp (q
, "height") == 0)
2659 expect (XBM_TK_NUMBER
);
2662 if (!check_image_size (f
, *width
, *height
))
2664 if (!inhibit_image_error
)
2665 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
2668 else if (data
== NULL
)
2671 /* Parse bits. Must start with `static'. */
2672 expect_ident ("static");
2673 if (LA1
== XBM_TK_IDENT
)
2675 if (strcmp (buffer
, "unsigned") == 0)
2678 expect_ident ("char");
2680 else if (strcmp (buffer
, "short") == 0)
2684 if (*width
% 16 && *width
% 16 < 9)
2687 else if (strcmp (buffer
, "char") == 0)
2695 expect (XBM_TK_IDENT
);
2701 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
2702 nbytes
= bytes_per_line
* *height
;
2703 p
= *data
= (char *) xmalloc (nbytes
);
2707 for (i
= 0; i
< nbytes
; i
+= 2)
2710 expect (XBM_TK_NUMBER
);
2712 *p
++ = XBM_BIT_SHUFFLE (val
);
2713 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
2714 *p
++ = XBM_BIT_SHUFFLE (value
>> 8);
2716 if (LA1
== ',' || LA1
== '}')
2724 for (i
= 0; i
< nbytes
; ++i
)
2727 expect (XBM_TK_NUMBER
);
2729 *p
++ = XBM_BIT_SHUFFLE (val
);
2731 if (LA1
== ',' || LA1
== '}')
2756 /* Load XBM image IMG which will be displayed on frame F from buffer
2757 CONTENTS. END is the end of the buffer. Value is non-zero if
2761 xbm_load_image (struct frame
*f
, struct image
*img
, unsigned char *contents
,
2768 rc
= xbm_read_bitmap_data (f
, contents
, end
, &img
->width
, &img
->height
,
2772 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2773 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2774 int non_default_colors
= 0;
2777 xassert (img
->width
> 0 && img
->height
> 0);
2779 /* Get foreground and background colors, maybe allocate colors. */
2780 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
2783 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
2784 non_default_colors
= 1;
2786 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
2789 background
= x_alloc_image_color (f
, img
, value
, background
);
2790 img
->background
= background
;
2791 img
->background_valid
= 1;
2792 non_default_colors
= 1;
2795 Create_Pixmap_From_Bitmap_Data (f
, img
, data
,
2796 foreground
, background
,
2797 non_default_colors
);
2800 if (img
->pixmap
== NO_PIXMAP
)
2802 x_clear_image (f
, img
);
2803 image_error ("Unable to create X pixmap for `%s'", img
->spec
, Qnil
);
2809 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2815 /* Value is non-zero if DATA looks like an in-memory XBM file. */
2818 xbm_file_p (Lisp_Object data
)
2821 return (STRINGP (data
)
2822 && xbm_read_bitmap_data (NULL
, SDATA (data
),
2823 (SDATA (data
) + SBYTES (data
)),
2828 /* Fill image IMG which is used on frame F with pixmap data. Value is
2829 non-zero if successful. */
2832 xbm_load (struct frame
*f
, struct image
*img
)
2835 Lisp_Object file_name
;
2837 xassert (xbm_image_p (img
->spec
));
2839 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2840 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
2841 if (STRINGP (file_name
))
2844 unsigned char *contents
;
2847 file
= x_find_image_file (file_name
);
2848 if (!STRINGP (file
))
2850 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
2854 contents
= slurp_file (SSDATA (file
), &size
);
2855 if (contents
== NULL
)
2857 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2861 success_p
= xbm_load_image (f
, img
, contents
, contents
+ size
);
2865 struct image_keyword fmt
[XBM_LAST
];
2867 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2868 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2869 int non_default_colors
= 0;
2872 int in_memory_file_p
= 0;
2874 /* See if data looks like an in-memory XBM file. */
2875 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
2876 in_memory_file_p
= xbm_file_p (data
);
2878 /* Parse the image specification. */
2879 memcpy (fmt
, xbm_format
, sizeof fmt
);
2880 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
2883 /* Get specified width, and height. */
2884 if (!in_memory_file_p
)
2886 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
2887 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
2888 xassert (img
->width
> 0 && img
->height
> 0);
2891 /* Get foreground and background colors, maybe allocate colors. */
2892 if (fmt
[XBM_FOREGROUND
].count
2893 && STRINGP (fmt
[XBM_FOREGROUND
].value
))
2895 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
2897 non_default_colors
= 1;
2900 if (fmt
[XBM_BACKGROUND
].count
2901 && STRINGP (fmt
[XBM_BACKGROUND
].value
))
2903 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
2905 non_default_colors
= 1;
2908 if (in_memory_file_p
)
2909 success_p
= xbm_load_image (f
, img
, SDATA (data
),
2918 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
2920 p
= bits
= (char *) alloca (nbytes
* img
->height
);
2921 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
2923 Lisp_Object line
= XVECTOR (data
)->contents
[i
];
2925 memcpy (p
, SDATA (line
), nbytes
);
2927 memcpy (p
, XBOOL_VECTOR (line
)->data
, nbytes
);
2930 else if (STRINGP (data
))
2931 bits
= SSDATA (data
);
2933 bits
= (char *) XBOOL_VECTOR (data
)->data
;
2939 /* Windows mono bitmaps are reversed compared with X. */
2940 invertedBits
= bits
;
2941 nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
2943 bits
= (char *) alloca (nbytes
);
2944 for (i
= 0; i
< nbytes
; i
++)
2945 bits
[i
] = XBM_BIT_SHUFFLE (invertedBits
[i
]);
2948 /* Create the pixmap. */
2950 Create_Pixmap_From_Bitmap_Data (f
, img
, bits
,
2951 foreground
, background
,
2952 non_default_colors
);
2957 image_error ("Unable to create pixmap for XBM image `%s'",
2959 x_clear_image (f
, img
);
2969 /***********************************************************************
2971 ***********************************************************************/
2973 #if defined (HAVE_XPM) || defined (HAVE_NS)
2975 static int xpm_image_p (Lisp_Object object
);
2976 static int xpm_load (struct frame
*f
, struct image
*img
);
2977 static int xpm_valid_color_symbols_p (Lisp_Object
);
2979 #endif /* HAVE_XPM || HAVE_NS */
2983 /* Indicate to xpm.h that we don't have Xlib. */
2985 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
2986 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
2987 #define XColor xpm_XColor
2988 #define XImage xpm_XImage
2989 #define Display xpm_Display
2990 #define PIXEL_ALREADY_TYPEDEFED
2991 #include "X11/xpm.h"
2996 #undef PIXEL_ALREADY_TYPEDEFED
2998 #include "X11/xpm.h"
2999 #endif /* HAVE_NTGUI */
3000 #endif /* HAVE_XPM */
3002 #if defined (HAVE_XPM) || defined (HAVE_NS)
3003 /* The symbol `xpm' identifying XPM-format images. */
3007 /* Indices of image specification fields in xpm_format, below. */
3009 enum xpm_keyword_index
3025 /* Vector of image_keyword structures describing the format
3026 of valid XPM image specifications. */
3028 static const struct image_keyword xpm_format
[XPM_LAST
] =
3030 {":type", IMAGE_SYMBOL_VALUE
, 1},
3031 {":file", IMAGE_STRING_VALUE
, 0},
3032 {":data", IMAGE_STRING_VALUE
, 0},
3033 {":ascent", IMAGE_ASCENT_VALUE
, 0},
3034 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
3035 {":relief", IMAGE_INTEGER_VALUE
, 0},
3036 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3037 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3038 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3039 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3040 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
3043 /* Structure describing the image type XPM. */
3045 static struct image_type xpm_type
=
3054 #ifdef HAVE_X_WINDOWS
3056 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3057 functions for allocating image colors. Our own functions handle
3058 color allocation failures more gracefully than the ones on the XPM
3061 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3062 #define ALLOC_XPM_COLORS
3064 #endif /* HAVE_X_WINDOWS */
3066 #ifdef ALLOC_XPM_COLORS
3068 static void xpm_init_color_cache (struct frame
*, XpmAttributes
*);
3069 static void xpm_free_color_cache (void);
3070 static int xpm_lookup_color (struct frame
*, char *, XColor
*);
3071 static int xpm_color_bucket (char *);
3072 static struct xpm_cached_color
*xpm_cache_color (struct frame
*, char *,
3075 /* An entry in a hash table used to cache color definitions of named
3076 colors. This cache is necessary to speed up XPM image loading in
3077 case we do color allocations ourselves. Without it, we would need
3078 a call to XParseColor per pixel in the image. */
3080 struct xpm_cached_color
3082 /* Next in collision chain. */
3083 struct xpm_cached_color
*next
;
3085 /* Color definition (RGB and pixel color). */
3092 /* The hash table used for the color cache, and its bucket vector
3095 #define XPM_COLOR_CACHE_BUCKETS 1001
3096 struct xpm_cached_color
**xpm_color_cache
;
3098 /* Initialize the color cache. */
3101 xpm_init_color_cache (struct frame
*f
, XpmAttributes
*attrs
)
3103 size_t nbytes
= XPM_COLOR_CACHE_BUCKETS
* sizeof *xpm_color_cache
;
3104 xpm_color_cache
= (struct xpm_cached_color
**) xmalloc (nbytes
);
3105 memset (xpm_color_cache
, 0, nbytes
);
3106 init_color_table ();
3108 if (attrs
->valuemask
& XpmColorSymbols
)
3113 for (i
= 0; i
< attrs
->numsymbols
; ++i
)
3114 if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3115 attrs
->colorsymbols
[i
].value
, &color
))
3117 color
.pixel
= lookup_rgb_color (f
, color
.red
, color
.green
,
3119 xpm_cache_color (f
, attrs
->colorsymbols
[i
].name
, &color
, -1);
3124 /* Free the color cache. */
3127 xpm_free_color_cache (void)
3129 struct xpm_cached_color
*p
, *next
;
3132 for (i
= 0; i
< XPM_COLOR_CACHE_BUCKETS
; ++i
)
3133 for (p
= xpm_color_cache
[i
]; p
; p
= next
)
3139 xfree (xpm_color_cache
);
3140 xpm_color_cache
= NULL
;
3141 free_color_table ();
3144 /* Return the bucket index for color named COLOR_NAME in the color
3148 xpm_color_bucket (char *color_name
)
3153 for (s
= color_name
; *s
; ++s
)
3155 return h
%= XPM_COLOR_CACHE_BUCKETS
;
3159 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3160 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3163 static struct xpm_cached_color
*
3164 xpm_cache_color (struct frame
*f
, char *color_name
, XColor
*color
, int bucket
)
3167 struct xpm_cached_color
*p
;
3170 bucket
= xpm_color_bucket (color_name
);
3172 nbytes
= sizeof *p
+ strlen (color_name
);
3173 p
= (struct xpm_cached_color
*) xmalloc (nbytes
);
3174 strcpy (p
->name
, color_name
);
3176 p
->next
= xpm_color_cache
[bucket
];
3177 xpm_color_cache
[bucket
] = p
;
3181 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3182 return the cached definition in *COLOR. Otherwise, make a new
3183 entry in the cache and allocate the color. Value is zero if color
3184 allocation failed. */
3187 xpm_lookup_color (struct frame
*f
, char *color_name
, XColor
*color
)
3189 struct xpm_cached_color
*p
;
3190 int h
= xpm_color_bucket (color_name
);
3192 for (p
= xpm_color_cache
[h
]; p
; p
= p
->next
)
3193 if (strcmp (p
->name
, color_name
) == 0)
3198 else if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3201 color
->pixel
= lookup_rgb_color (f
, color
->red
, color
->green
,
3203 p
= xpm_cache_color (f
, color_name
, color
, h
);
3205 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3206 with transparency, and it's useful. */
3207 else if (strcmp ("opaque", color_name
) == 0)
3209 memset (color
, 0, sizeof (XColor
)); /* Is this necessary/correct? */
3210 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
3211 p
= xpm_cache_color (f
, color_name
, color
, h
);
3218 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3219 CLOSURE is a pointer to the frame on which we allocate the
3220 color. Return in *COLOR the allocated color. Value is non-zero
3224 xpm_alloc_color (Display
*dpy
, Colormap cmap
, char *color_name
, XColor
*color
,
3227 return xpm_lookup_color ((struct frame
*) closure
, color_name
, color
);
3231 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3232 is a pointer to the frame on which we allocate the color. Value is
3233 non-zero if successful. */
3236 xpm_free_colors (Display
*dpy
, Colormap cmap
, Pixel
*pixels
, int npixels
, void *closure
)
3241 #endif /* ALLOC_XPM_COLORS */
3246 /* XPM library details. */
3248 DEF_IMGLIB_FN (void, XpmFreeAttributes
, (XpmAttributes
*));
3249 DEF_IMGLIB_FN (int, XpmCreateImageFromBuffer
, (Display
*, char *, xpm_XImage
**,
3250 xpm_XImage
**, XpmAttributes
*));
3251 DEF_IMGLIB_FN (int, XpmReadFileToImage
, (Display
*, char *, xpm_XImage
**,
3252 xpm_XImage
**, XpmAttributes
*));
3253 DEF_IMGLIB_FN (void, XImageFree
, (xpm_XImage
*));
3256 init_xpm_functions (Lisp_Object libraries
)
3260 if (!(library
= w32_delayed_load (libraries
, Qxpm
)))
3263 LOAD_IMGLIB_FN (library
, XpmFreeAttributes
);
3264 LOAD_IMGLIB_FN (library
, XpmCreateImageFromBuffer
);
3265 LOAD_IMGLIB_FN (library
, XpmReadFileToImage
);
3266 LOAD_IMGLIB_FN (library
, XImageFree
);
3270 #endif /* HAVE_NTGUI */
3273 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
3274 for XPM images. Such a list must consist of conses whose car and
3278 xpm_valid_color_symbols_p (Lisp_Object color_symbols
)
3280 while (CONSP (color_symbols
))
3282 Lisp_Object sym
= XCAR (color_symbols
);
3284 || !STRINGP (XCAR (sym
))
3285 || !STRINGP (XCDR (sym
)))
3287 color_symbols
= XCDR (color_symbols
);
3290 return NILP (color_symbols
);
3294 /* Value is non-zero if OBJECT is a valid XPM image specification. */
3297 xpm_image_p (Lisp_Object object
)
3299 struct image_keyword fmt
[XPM_LAST
];
3300 memcpy (fmt
, xpm_format
, sizeof fmt
);
3301 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
3302 /* Either `:file' or `:data' must be present. */
3303 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
3304 /* Either no `:color-symbols' or it's a list of conses
3305 whose car and cdr are strings. */
3306 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
3307 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
)));
3310 #endif /* HAVE_XPM || HAVE_NS */
3312 #if defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
3314 x_create_bitmap_from_xpm_data (struct frame
*f
, const char **bits
)
3316 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3318 XpmAttributes attrs
;
3319 Pixmap bitmap
, mask
;
3321 memset (&attrs
, 0, sizeof attrs
);
3323 attrs
.visual
= FRAME_X_VISUAL (f
);
3324 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3325 attrs
.valuemask
|= XpmVisual
;
3326 attrs
.valuemask
|= XpmColormap
;
3328 rc
= XpmCreatePixmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3329 (char **) bits
, &bitmap
, &mask
, &attrs
);
3330 if (rc
!= XpmSuccess
)
3332 XpmFreeAttributes (&attrs
);
3336 id
= x_allocate_bitmap_record (f
);
3337 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
3338 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
3339 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
3340 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
3341 dpyinfo
->bitmaps
[id
- 1].height
= attrs
.height
;
3342 dpyinfo
->bitmaps
[id
- 1].width
= attrs
.width
;
3343 dpyinfo
->bitmaps
[id
- 1].depth
= attrs
.depth
;
3344 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
3346 XpmFreeAttributes (&attrs
);
3349 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3351 /* Load image IMG which will be displayed on frame F. Value is
3352 non-zero if successful. */
3357 xpm_load (struct frame
*f
, struct image
*img
)
3360 XpmAttributes attrs
;
3361 Lisp_Object specified_file
, color_symbols
;
3364 xpm_XImage
* xpm_image
= NULL
, * xpm_mask
= NULL
;
3365 #endif /* HAVE_NTGUI */
3367 /* Configure the XPM lib. Use the visual of frame F. Allocate
3368 close colors. Return colors allocated. */
3369 memset (&attrs
, 0, sizeof attrs
);
3372 attrs
.visual
= FRAME_X_VISUAL (f
);
3373 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3374 attrs
.valuemask
|= XpmVisual
;
3375 attrs
.valuemask
|= XpmColormap
;
3376 #endif /* HAVE_NTGUI */
3378 #ifdef ALLOC_XPM_COLORS
3379 /* Allocate colors with our own functions which handle
3380 failing color allocation more gracefully. */
3381 attrs
.color_closure
= f
;
3382 attrs
.alloc_color
= xpm_alloc_color
;
3383 attrs
.free_colors
= xpm_free_colors
;
3384 attrs
.valuemask
|= XpmAllocColor
| XpmFreeColors
| XpmColorClosure
;
3385 #else /* not ALLOC_XPM_COLORS */
3386 /* Let the XPM lib allocate colors. */
3387 attrs
.valuemask
|= XpmReturnAllocPixels
;
3388 #ifdef XpmAllocCloseColors
3389 attrs
.alloc_close_colors
= 1;
3390 attrs
.valuemask
|= XpmAllocCloseColors
;
3391 #else /* not XpmAllocCloseColors */
3392 attrs
.closeness
= 600;
3393 attrs
.valuemask
|= XpmCloseness
;
3394 #endif /* not XpmAllocCloseColors */
3395 #endif /* ALLOC_XPM_COLORS */
3397 /* If image specification contains symbolic color definitions, add
3398 these to `attrs'. */
3399 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3400 if (CONSP (color_symbols
))
3403 XpmColorSymbol
*xpm_syms
;
3406 attrs
.valuemask
|= XpmColorSymbols
;
3408 /* Count number of symbols. */
3409 attrs
.numsymbols
= 0;
3410 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
3413 /* Allocate an XpmColorSymbol array. */
3414 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
3415 xpm_syms
= (XpmColorSymbol
*) alloca (size
);
3416 memset (xpm_syms
, 0, size
);
3417 attrs
.colorsymbols
= xpm_syms
;
3419 /* Fill the color symbol array. */
3420 for (tail
= color_symbols
, i
= 0;
3422 ++i
, tail
= XCDR (tail
))
3426 char *empty_string
= (char *) "";
3428 if (!CONSP (XCAR (tail
)))
3430 xpm_syms
[i
].name
= empty_string
;
3431 xpm_syms
[i
].value
= empty_string
;
3434 name
= XCAR (XCAR (tail
));
3435 color
= XCDR (XCAR (tail
));
3438 xpm_syms
[i
].name
= (char *) alloca (SCHARS (name
) + 1);
3439 strcpy (xpm_syms
[i
].name
, SSDATA (name
));
3442 xpm_syms
[i
].name
= empty_string
;
3443 if (STRINGP (color
))
3445 xpm_syms
[i
].value
= (char *) alloca (SCHARS (color
) + 1);
3446 strcpy (xpm_syms
[i
].value
, SSDATA (color
));
3449 xpm_syms
[i
].value
= empty_string
;
3453 /* Create a pixmap for the image, either from a file, or from a
3454 string buffer containing data in the same format as an XPM file. */
3455 #ifdef ALLOC_XPM_COLORS
3456 xpm_init_color_cache (f
, &attrs
);
3459 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
3463 HDC frame_dc
= get_frame_dc (f
);
3464 hdc
= CreateCompatibleDC (frame_dc
);
3465 release_frame_dc (f
, frame_dc
);
3467 #endif /* HAVE_NTGUI */
3469 if (STRINGP (specified_file
))
3471 Lisp_Object file
= x_find_image_file (specified_file
);
3472 if (!STRINGP (file
))
3474 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
3475 #ifdef ALLOC_XPM_COLORS
3476 xpm_free_color_cache ();
3482 /* XpmReadFileToPixmap is not available in the Windows port of
3483 libxpm. But XpmReadFileToImage almost does what we want. */
3484 rc
= fn_XpmReadFileToImage (&hdc
, SDATA (file
),
3485 &xpm_image
, &xpm_mask
,
3488 rc
= XpmReadFileToPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3489 SSDATA (file
), &img
->pixmap
, &img
->mask
,
3491 #endif /* HAVE_NTGUI */
3495 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
3496 if (!STRINGP (buffer
))
3498 image_error ("Invalid image data `%s'", buffer
, Qnil
);
3499 #ifdef ALLOC_XPM_COLORS
3500 xpm_free_color_cache ();
3505 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3506 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3507 rc
= fn_XpmCreateImageFromBuffer (&hdc
, SDATA (buffer
),
3508 &xpm_image
, &xpm_mask
,
3511 rc
= XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3513 &img
->pixmap
, &img
->mask
,
3515 #endif /* HAVE_NTGUI */
3518 if (rc
== XpmSuccess
)
3520 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3521 img
->colors
= colors_in_color_table (&img
->ncolors
);
3522 #else /* not ALLOC_XPM_COLORS */
3526 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3527 plus some duplicate attributes. */
3528 if (xpm_image
&& xpm_image
->bitmap
)
3530 img
->pixmap
= xpm_image
->bitmap
;
3531 /* XImageFree in libXpm frees XImage struct without destroying
3532 the bitmap, which is what we want. */
3533 fn_XImageFree (xpm_image
);
3535 if (xpm_mask
&& xpm_mask
->bitmap
)
3537 /* The mask appears to be inverted compared with what we expect.
3538 TODO: invert our expectations. See other places where we
3539 have to invert bits because our idea of masks is backwards. */
3541 old_obj
= SelectObject (hdc
, xpm_mask
->bitmap
);
3543 PatBlt (hdc
, 0, 0, xpm_mask
->width
, xpm_mask
->height
, DSTINVERT
);
3544 SelectObject (hdc
, old_obj
);
3546 img
->mask
= xpm_mask
->bitmap
;
3547 fn_XImageFree (xpm_mask
);
3552 #endif /* HAVE_NTGUI */
3554 /* Remember allocated colors. */
3555 img
->ncolors
= attrs
.nalloc_pixels
;
3556 img
->colors
= (unsigned long *) xmalloc (img
->ncolors
3557 * sizeof *img
->colors
);
3558 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
3560 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
3561 #ifdef DEBUG_X_COLORS
3562 register_color (img
->colors
[i
]);
3565 #endif /* not ALLOC_XPM_COLORS */
3567 img
->width
= attrs
.width
;
3568 img
->height
= attrs
.height
;
3569 xassert (img
->width
> 0 && img
->height
> 0);
3571 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3573 fn_XpmFreeAttributes (&attrs
);
3575 XpmFreeAttributes (&attrs
);
3576 #endif /* HAVE_NTGUI */
3582 #endif /* HAVE_NTGUI */
3587 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
3590 case XpmFileInvalid
:
3591 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
3595 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
3598 case XpmColorFailed
:
3599 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
3603 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
3608 #ifdef ALLOC_XPM_COLORS
3609 xpm_free_color_cache ();
3611 return rc
== XpmSuccess
;
3614 #endif /* HAVE_XPM */
3616 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3618 /* XPM support functions for NS where libxpm is not available.
3619 Only XPM version 3 (without any extensions) is supported. */
3621 static int xpm_scan (const unsigned char **, const unsigned char *,
3622 const unsigned char **, int *);
3623 static Lisp_Object xpm_make_color_table_v
3624 (void (**) (Lisp_Object
, const unsigned char *, int, Lisp_Object
),
3625 Lisp_Object (**) (Lisp_Object
, const unsigned char *, int));
3626 static void xpm_put_color_table_v (Lisp_Object
, const unsigned char *,
3628 static Lisp_Object
xpm_get_color_table_v (Lisp_Object
,
3629 const unsigned char *, int);
3630 static Lisp_Object xpm_make_color_table_h
3631 (void (**) (Lisp_Object
, const unsigned char *, int, Lisp_Object
),
3632 Lisp_Object (**) (Lisp_Object
, const unsigned char *, int));
3633 static void xpm_put_color_table_h (Lisp_Object
, const unsigned char *,
3635 static Lisp_Object
xpm_get_color_table_h (Lisp_Object
,
3636 const unsigned char *, int);
3637 static int xpm_str_to_color_key (const char *);
3638 static int xpm_load_image (struct frame
*, struct image
*,
3639 const unsigned char *, const unsigned char *);
3641 /* Tokens returned from xpm_scan. */
3650 /* Scan an XPM data and return a character (< 256) or a token defined
3651 by enum xpm_token above. *S and END are the start (inclusive) and
3652 the end (exclusive) addresses of the data, respectively. Advance
3653 *S while scanning. If token is either XPM_TK_IDENT or
3654 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3655 length of the corresponding token, respectively. */
3658 xpm_scan (const unsigned char **s
,
3659 const unsigned char *end
,
3660 const unsigned char **beg
,
3667 /* Skip white-space. */
3668 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
3671 /* gnus-pointer.xpm uses '-' in its identifier.
3672 sb-dir-plus.xpm uses '+' in its identifier. */
3673 if (isalpha (c
) || c
== '_' || c
== '-' || c
== '+')
3677 && (c
= **s
, isalnum (c
) || c
== '_' || c
== '-' || c
== '+'))
3680 return XPM_TK_IDENT
;
3685 while (*s
< end
&& **s
!= '"')
3690 return XPM_TK_STRING
;
3694 if (*s
< end
&& **s
== '*')
3696 /* C-style comment. */
3700 while (*s
< end
&& *(*s
)++ != '*')
3703 while (*s
< end
&& **s
!= '/');
3717 /* Functions for color table lookup in XPM data. A key is a string
3718 specifying the color of each pixel in XPM data. A value is either
3719 an integer that specifies a pixel color, Qt that specifies
3720 transparency, or Qnil for the unspecified color. If the length of
3721 the key string is one, a vector is used as a table. Otherwise, a
3722 hash table is used. */
3725 xpm_make_color_table_v (void (**put_func
) (Lisp_Object
,
3726 const unsigned char *,
3729 Lisp_Object (**get_func
) (Lisp_Object
,
3730 const unsigned char *,
3733 *put_func
= xpm_put_color_table_v
;
3734 *get_func
= xpm_get_color_table_v
;
3735 return Fmake_vector (make_number (256), Qnil
);
3739 xpm_put_color_table_v (Lisp_Object color_table
,
3740 const unsigned char *chars_start
,
3744 XVECTOR (color_table
)->contents
[*chars_start
] = color
;
3748 xpm_get_color_table_v (Lisp_Object color_table
,
3749 const unsigned char *chars_start
,
3752 return XVECTOR (color_table
)->contents
[*chars_start
];
3756 xpm_make_color_table_h (void (**put_func
) (Lisp_Object
,
3757 const unsigned char *,
3760 Lisp_Object (**get_func
) (Lisp_Object
,
3761 const unsigned char *,
3764 *put_func
= xpm_put_color_table_h
;
3765 *get_func
= xpm_get_color_table_h
;
3766 return make_hash_table (Qequal
, make_number (DEFAULT_HASH_SIZE
),
3767 make_float (DEFAULT_REHASH_SIZE
),
3768 make_float (DEFAULT_REHASH_THRESHOLD
),
3773 xpm_put_color_table_h (Lisp_Object color_table
,
3774 const unsigned char *chars_start
,
3778 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3780 Lisp_Object chars
= make_unibyte_string (chars_start
, chars_len
);
3782 hash_lookup (table
, chars
, &hash_code
);
3783 hash_put (table
, chars
, color
, hash_code
);
3787 xpm_get_color_table_h (Lisp_Object color_table
,
3788 const unsigned char *chars_start
,
3791 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3792 int i
= hash_lookup (table
, make_unibyte_string (chars_start
, chars_len
),
3795 return i
>= 0 ? HASH_VALUE (table
, i
) : Qnil
;
3798 enum xpm_color_key
{
3806 static const char xpm_color_key_strings
[][4] = {"s", "m", "g4", "g", "c"};
3809 xpm_str_to_color_key (const char *s
)
3814 i
< sizeof xpm_color_key_strings
/ sizeof xpm_color_key_strings
[0];
3816 if (strcmp (xpm_color_key_strings
[i
], s
) == 0)
3822 xpm_load_image (struct frame
*f
,
3824 const unsigned char *contents
,
3825 const unsigned char *end
)
3827 const unsigned char *s
= contents
, *beg
, *str
;
3828 unsigned char buffer
[BUFSIZ
];
3829 int width
, height
, x
, y
;
3830 int num_colors
, chars_per_pixel
;
3832 void (*put_color_table
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3833 Lisp_Object (*get_color_table
) (Lisp_Object
, const unsigned char *, int);
3834 Lisp_Object frame
, color_symbols
, color_table
;
3835 int best_key
, have_mask
= 0;
3836 XImagePtr ximg
= NULL
, mask_img
= NULL
;
3839 LA1 = xpm_scan (&s, end, &beg, &len)
3841 #define expect(TOKEN) \
3842 if (LA1 != (TOKEN)) \
3847 #define expect_ident(IDENT) \
3848 if (LA1 == XPM_TK_IDENT \
3849 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3854 if (!(end
- s
>= 9 && memcmp (s
, "/* XPM */", 9) == 0))
3858 expect_ident ("static");
3859 expect_ident ("char");
3861 expect (XPM_TK_IDENT
);
3866 expect (XPM_TK_STRING
);
3869 memcpy (buffer
, beg
, len
);
3871 if (sscanf (buffer
, "%d %d %d %d", &width
, &height
,
3872 &num_colors
, &chars_per_pixel
) != 4
3873 || width
<= 0 || height
<= 0
3874 || num_colors
<= 0 || chars_per_pixel
<= 0)
3877 if (!check_image_size (f
, width
, height
))
3879 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
3885 XSETFRAME (frame
, f
);
3886 if (!NILP (Fxw_display_color_p (frame
)))
3887 best_key
= XPM_COLOR_KEY_C
;
3888 else if (!NILP (Fx_display_grayscale_p (frame
)))
3889 best_key
= (XFASTINT (Fx_display_planes (frame
)) > 2
3890 ? XPM_COLOR_KEY_G
: XPM_COLOR_KEY_G4
);
3892 best_key
= XPM_COLOR_KEY_M
;
3894 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3895 if (chars_per_pixel
== 1)
3896 color_table
= xpm_make_color_table_v (&put_color_table
,
3899 color_table
= xpm_make_color_table_h (&put_color_table
,
3902 while (num_colors
-- > 0)
3904 char *color
, *max_color
;
3905 int key
, next_key
, max_key
= 0;
3906 Lisp_Object symbol_color
= Qnil
, color_val
;
3909 expect (XPM_TK_STRING
);
3910 if (len
<= chars_per_pixel
|| len
>= BUFSIZ
+ chars_per_pixel
)
3912 memcpy (buffer
, beg
+ chars_per_pixel
, len
- chars_per_pixel
);
3913 buffer
[len
- chars_per_pixel
] = '\0';
3915 str
= strtok (buffer
, " \t");
3918 key
= xpm_str_to_color_key (str
);
3923 color
= strtok (NULL
, " \t");
3927 while ((str
= strtok (NULL
, " \t")) != NULL
)
3929 next_key
= xpm_str_to_color_key (str
);
3932 color
[strlen (color
)] = ' ';
3935 if (key
== XPM_COLOR_KEY_S
)
3937 if (NILP (symbol_color
))
3938 symbol_color
= build_string (color
);
3940 else if (max_key
< key
&& key
<= best_key
)
3950 if (!NILP (color_symbols
) && !NILP (symbol_color
))
3952 Lisp_Object specified_color
= Fassoc (symbol_color
, color_symbols
);
3954 if (CONSP (specified_color
) && STRINGP (XCDR (specified_color
)))
3956 if (xstrcasecmp (SSDATA (XCDR (specified_color
)), "None") == 0)
3958 else if (x_defined_color (f
, SDATA (XCDR (specified_color
)),
3960 color_val
= make_number (cdef
.pixel
);
3963 if (NILP (color_val
) && max_key
> 0)
3965 if (xstrcasecmp (max_color
, "None") == 0)
3967 else if (x_defined_color (f
, max_color
, &cdef
, 0))
3968 color_val
= make_number (cdef
.pixel
);
3970 if (!NILP (color_val
))
3971 (*put_color_table
) (color_table
, beg
, chars_per_pixel
, color_val
);
3976 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
3977 &ximg
, &img
->pixmap
)
3979 || !x_create_x_image_and_pixmap (f
, width
, height
, 1,
3980 &mask_img
, &img
->mask
)
3984 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
3988 for (y
= 0; y
< height
; y
++)
3990 expect (XPM_TK_STRING
);
3992 if (len
< width
* chars_per_pixel
)
3994 for (x
= 0; x
< width
; x
++, str
+= chars_per_pixel
)
3996 Lisp_Object color_val
=
3997 (*get_color_table
) (color_table
, str
, chars_per_pixel
);
3999 XPutPixel (ximg
, x
, y
,
4000 (INTEGERP (color_val
) ? XINT (color_val
)
4001 : FRAME_FOREGROUND_PIXEL (f
)));
4003 XPutPixel (mask_img
, x
, y
,
4004 (!EQ (color_val
, Qt
) ? PIX_MASK_DRAW
4005 : (have_mask
= 1, PIX_MASK_RETAIN
)));
4007 if (EQ (color_val
, Qt
))
4008 ns_set_alpha (ximg
, x
, y
, 0);
4016 img
->height
= height
;
4018 /* Maybe fill in the background field while we have ximg handy. */
4019 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
4020 IMAGE_BACKGROUND (img
, f
, ximg
);
4022 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
4023 x_destroy_x_image (ximg
);
4027 /* Fill in the background_transparent field while we have the
4029 image_background_transparent (img
, f
, mask_img
);
4031 x_put_x_image (f
, mask_img
, img
->mask
, width
, height
);
4032 x_destroy_x_image (mask_img
);
4036 x_destroy_x_image (mask_img
);
4037 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4038 img
->mask
= NO_PIXMAP
;
4044 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
4046 x_destroy_x_image (ximg
);
4047 x_destroy_x_image (mask_img
);
4048 x_clear_image (f
, img
);
4057 xpm_load (struct frame
*f
,
4061 Lisp_Object file_name
;
4063 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4064 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
4065 if (STRINGP (file_name
))
4068 unsigned char *contents
;
4071 file
= x_find_image_file (file_name
);
4072 if (!STRINGP (file
))
4074 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
4078 contents
= slurp_file (SDATA (file
), &size
);
4079 if (contents
== NULL
)
4081 image_error ("Error loading XPM image `%s'", img
->spec
, Qnil
);
4085 success_p
= xpm_load_image (f
, img
, contents
, contents
+ size
);
4092 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
4093 if (!STRINGP (data
))
4095 image_error ("Invalid image data `%s'", data
, Qnil
);
4098 success_p
= xpm_load_image (f
, img
, SDATA (data
),
4099 SDATA (data
) + SBYTES (data
));
4105 #endif /* HAVE_NS && !HAVE_XPM */
4109 /***********************************************************************
4111 ***********************************************************************/
4113 #ifdef COLOR_TABLE_SUPPORT
4115 /* An entry in the color table mapping an RGB color to a pixel color. */
4120 unsigned long pixel
;
4122 /* Next in color table collision list. */
4123 struct ct_color
*next
;
4126 /* The bucket vector size to use. Must be prime. */
4130 /* Value is a hash of the RGB color given by R, G, and B. */
4132 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4134 /* The color hash table. */
4136 struct ct_color
**ct_table
;
4138 /* Number of entries in the color table. */
4140 int ct_colors_allocated
;
4142 /* Initialize the color table. */
4145 init_color_table (void)
4147 int size
= CT_SIZE
* sizeof (*ct_table
);
4148 ct_table
= (struct ct_color
**) xmalloc (size
);
4149 memset (ct_table
, 0, size
);
4150 ct_colors_allocated
= 0;
4154 /* Free memory associated with the color table. */
4157 free_color_table (void)
4160 struct ct_color
*p
, *next
;
4162 for (i
= 0; i
< CT_SIZE
; ++i
)
4163 for (p
= ct_table
[i
]; p
; p
= next
)
4174 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4175 entry for that color already is in the color table, return the
4176 pixel color of that entry. Otherwise, allocate a new color for R,
4177 G, B, and make an entry in the color table. */
4179 static unsigned long
4180 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4182 unsigned hash
= CT_HASH_RGB (r
, g
, b
);
4183 int i
= hash
% CT_SIZE
;
4185 Display_Info
*dpyinfo
;
4187 /* Handle TrueColor visuals specially, which improves performance by
4188 two orders of magnitude. Freeing colors on TrueColor visuals is
4189 a nop, and pixel colors specify RGB values directly. See also
4190 the Xlib spec, chapter 3.1. */
4191 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4192 if (dpyinfo
->red_bits
> 0)
4194 unsigned long pr
, pg
, pb
;
4196 /* Apply gamma-correction like normal color allocation does. */
4200 color
.red
= r
, color
.green
= g
, color
.blue
= b
;
4201 gamma_correct (f
, &color
);
4202 r
= color
.red
, g
= color
.green
, b
= color
.blue
;
4205 /* Scale down RGB values to the visual's bits per RGB, and shift
4206 them to the right position in the pixel color. Note that the
4207 original RGB values are 16-bit values, as usual in X. */
4208 pr
= (r
>> (16 - dpyinfo
->red_bits
)) << dpyinfo
->red_offset
;
4209 pg
= (g
>> (16 - dpyinfo
->green_bits
)) << dpyinfo
->green_offset
;
4210 pb
= (b
>> (16 - dpyinfo
->blue_bits
)) << dpyinfo
->blue_offset
;
4212 /* Assemble the pixel color. */
4213 return pr
| pg
| pb
;
4216 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4217 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
4223 #ifdef HAVE_X_WINDOWS
4232 cmap
= FRAME_X_COLORMAP (f
);
4233 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4236 ++ct_colors_allocated
;
4237 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4241 p
->pixel
= color
.pixel
;
4242 p
->next
= ct_table
[i
];
4246 return FRAME_FOREGROUND_PIXEL (f
);
4251 color
= PALETTERGB (r
, g
, b
);
4253 color
= RGB_TO_ULONG (r
, g
, b
);
4254 #endif /* HAVE_NTGUI */
4255 ++ct_colors_allocated
;
4256 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4261 p
->next
= ct_table
[i
];
4263 #endif /* HAVE_X_WINDOWS */
4271 /* Look up pixel color PIXEL which is used on frame F in the color
4272 table. If not already present, allocate it. Value is PIXEL. */
4274 static unsigned long
4275 lookup_pixel_color (struct frame
*f
, unsigned long pixel
)
4277 int i
= pixel
% CT_SIZE
;
4280 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4281 if (p
->pixel
== pixel
)
4290 #ifdef HAVE_X_WINDOWS
4291 cmap
= FRAME_X_COLORMAP (f
);
4292 color
.pixel
= pixel
;
4293 x_query_color (f
, &color
);
4294 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4297 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
4298 color
.pixel
= pixel
;
4299 XQueryColor (NULL
, cmap
, &color
);
4300 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4302 #endif /* HAVE_X_WINDOWS */
4306 ++ct_colors_allocated
;
4308 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4313 p
->next
= ct_table
[i
];
4317 return FRAME_FOREGROUND_PIXEL (f
);
4323 /* Value is a vector of all pixel colors contained in the color table,
4324 allocated via xmalloc. Set *N to the number of colors. */
4326 static unsigned long *
4327 colors_in_color_table (int *n
)
4331 unsigned long *colors
;
4333 if (ct_colors_allocated
== 0)
4340 colors
= (unsigned long *) xmalloc (ct_colors_allocated
4342 *n
= ct_colors_allocated
;
4344 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
4345 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4346 colors
[j
++] = p
->pixel
;
4352 #else /* COLOR_TABLE_SUPPORT */
4354 static unsigned long
4355 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4357 unsigned long pixel
;
4360 pixel
= PALETTERGB (r
>> 8, g
>> 8, b
>> 8);
4361 #endif /* HAVE_NTGUI */
4364 pixel
= RGB_TO_ULONG (r
>> 8, g
>> 8, b
>> 8);
4365 #endif /* HAVE_NS */
4370 init_color_table (void)
4373 #endif /* COLOR_TABLE_SUPPORT */
4376 /***********************************************************************
4378 ***********************************************************************/
4380 static XColor
*x_to_xcolors (struct frame
*, struct image
*, int);
4381 static void x_from_xcolors (struct frame
*, struct image
*, XColor
*);
4382 static void x_detect_edges (struct frame
*, struct image
*, int[9], int);
4385 static void XPutPixel (XImagePtr
, int, int, COLORREF
);
4386 #endif /* HAVE_NTGUI */
4388 /* Edge detection matrices for different edge-detection
4391 static int emboss_matrix
[9] = {
4393 2, -1, 0, /* y - 1 */
4395 0, 1, -2 /* y + 1 */
4398 static int laplace_matrix
[9] = {
4400 1, 0, 0, /* y - 1 */
4402 0, 0, -1 /* y + 1 */
4405 /* Value is the intensity of the color whose red/green/blue values
4408 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4411 /* On frame F, return an array of XColor structures describing image
4412 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4413 non-zero means also fill the red/green/blue members of the XColor
4414 structures. Value is a pointer to the array of XColors structures,
4415 allocated with xmalloc; it must be freed by the caller. */
4418 x_to_xcolors (struct frame
*f
, struct image
*img
, int rgb_p
)
4422 XImagePtr_or_DC ximg
;
4426 #endif /* HAVE_NTGUI */
4428 colors
= (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *colors
);
4431 /* Get the X image IMG->pixmap. */
4432 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
4433 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
4435 /* Load the image into a memory device context. */
4436 hdc
= get_frame_dc (f
);
4437 ximg
= CreateCompatibleDC (hdc
);
4438 release_frame_dc (f
, hdc
);
4439 prev
= SelectObject (ximg
, img
->pixmap
);
4440 #endif /* HAVE_NTGUI */
4442 /* Fill the `pixel' members of the XColor array. I wished there
4443 were an easy and portable way to circumvent XGetPixel. */
4445 for (y
= 0; y
< img
->height
; ++y
)
4449 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4450 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4451 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4453 x_query_colors (f
, row
, img
->width
);
4457 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4459 /* W32_TODO: palette support needed here? */
4460 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4463 p
->red
= RED16_FROM_ULONG (p
->pixel
);
4464 p
->green
= GREEN16_FROM_ULONG (p
->pixel
);
4465 p
->blue
= BLUE16_FROM_ULONG (p
->pixel
);
4468 #endif /* HAVE_X_WINDOWS */
4471 Destroy_Image (ximg
, prev
);
4478 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4479 created with CreateDIBSection, with the pointer to the bit values
4480 stored in ximg->data. */
4483 XPutPixel (XImagePtr ximg
, int x
, int y
, COLORREF color
)
4485 int width
= ximg
->info
.bmiHeader
.biWidth
;
4486 int height
= ximg
->info
.bmiHeader
.biHeight
;
4487 unsigned char * pixel
;
4489 /* True color images. */
4490 if (ximg
->info
.bmiHeader
.biBitCount
== 24)
4492 int rowbytes
= width
* 3;
4493 /* Ensure scanlines are aligned on 4 byte boundaries. */
4495 rowbytes
+= 4 - (rowbytes
% 4);
4497 pixel
= ximg
->data
+ y
* rowbytes
+ x
* 3;
4498 /* Windows bitmaps are in BGR order. */
4499 *pixel
= GetBValue (color
);
4500 *(pixel
+ 1) = GetGValue (color
);
4501 *(pixel
+ 2) = GetRValue (color
);
4503 /* Monochrome images. */
4504 else if (ximg
->info
.bmiHeader
.biBitCount
== 1)
4506 int rowbytes
= width
/ 8;
4507 /* Ensure scanlines are aligned on 4 byte boundaries. */
4509 rowbytes
+= 4 - (rowbytes
% 4);
4510 pixel
= ximg
->data
+ y
* rowbytes
+ x
/ 8;
4511 /* Filter out palette info. */
4512 if (color
& 0x00ffffff)
4513 *pixel
= *pixel
| (1 << x
% 8);
4515 *pixel
= *pixel
& ~(1 << x
% 8);
4518 image_error ("XPutPixel: palette image not supported", Qnil
, Qnil
);
4521 #endif /* HAVE_NTGUI */
4523 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4524 RGB members are set. F is the frame on which this all happens.
4525 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4528 x_from_xcolors (struct frame
*f
, struct image
*img
, XColor
*colors
)
4531 XImagePtr oimg
= NULL
;
4535 init_color_table ();
4537 x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 0,
4540 for (y
= 0; y
< img
->height
; ++y
)
4541 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4543 unsigned long pixel
;
4544 pixel
= lookup_rgb_color (f
, p
->red
, p
->green
, p
->blue
);
4545 XPutPixel (oimg
, x
, y
, pixel
);
4549 x_clear_image_1 (f
, img
, 1, 0, 1);
4551 x_put_x_image (f
, oimg
, pixmap
, img
->width
, img
->height
);
4552 x_destroy_x_image (oimg
);
4553 img
->pixmap
= pixmap
;
4554 #ifdef COLOR_TABLE_SUPPORT
4555 img
->colors
= colors_in_color_table (&img
->ncolors
);
4556 free_color_table ();
4557 #endif /* COLOR_TABLE_SUPPORT */
4561 /* On frame F, perform edge-detection on image IMG.
4563 MATRIX is a nine-element array specifying the transformation
4564 matrix. See emboss_matrix for an example.
4566 COLOR_ADJUST is a color adjustment added to each pixel of the
4570 x_detect_edges (struct frame
*f
, struct image
*img
, int *matrix
, int color_adjust
)
4572 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4576 for (i
= sum
= 0; i
< 9; ++i
)
4577 sum
+= eabs (matrix
[i
]);
4579 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4581 new = (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *new);
4583 for (y
= 0; y
< img
->height
; ++y
)
4585 p
= COLOR (new, 0, y
);
4586 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4587 p
= COLOR (new, img
->width
- 1, y
);
4588 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4591 for (x
= 1; x
< img
->width
- 1; ++x
)
4593 p
= COLOR (new, x
, 0);
4594 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4595 p
= COLOR (new, x
, img
->height
- 1);
4596 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4599 for (y
= 1; y
< img
->height
- 1; ++y
)
4601 p
= COLOR (new, 1, y
);
4603 for (x
= 1; x
< img
->width
- 1; ++x
, ++p
)
4605 int r
, g
, b
, yy
, xx
;
4608 for (yy
= y
- 1; yy
< y
+ 2; ++yy
)
4609 for (xx
= x
- 1; xx
< x
+ 2; ++xx
, ++i
)
4612 XColor
*t
= COLOR (colors
, xx
, yy
);
4613 r
+= matrix
[i
] * t
->red
;
4614 g
+= matrix
[i
] * t
->green
;
4615 b
+= matrix
[i
] * t
->blue
;
4618 r
= (r
/ sum
+ color_adjust
) & 0xffff;
4619 g
= (g
/ sum
+ color_adjust
) & 0xffff;
4620 b
= (b
/ sum
+ color_adjust
) & 0xffff;
4621 p
->red
= p
->green
= p
->blue
= COLOR_INTENSITY (r
, g
, b
);
4626 x_from_xcolors (f
, img
, new);
4632 /* Perform the pre-defined `emboss' edge-detection on image IMG
4636 x_emboss (struct frame
*f
, struct image
*img
)
4638 x_detect_edges (f
, img
, emboss_matrix
, 0xffff / 2);
4642 /* Transform image IMG which is used on frame F with a Laplace
4643 edge-detection algorithm. The result is an image that can be used
4644 to draw disabled buttons, for example. */
4647 x_laplace (struct frame
*f
, struct image
*img
)
4649 x_detect_edges (f
, img
, laplace_matrix
, 45000);
4653 /* Perform edge-detection on image IMG on frame F, with specified
4654 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4656 MATRIX must be either
4658 - a list of at least 9 numbers in row-major form
4659 - a vector of at least 9 numbers
4661 COLOR_ADJUST nil means use a default; otherwise it must be a
4665 x_edge_detection (struct frame
*f
, struct image
*img
, Lisp_Object matrix
,
4666 Lisp_Object color_adjust
)
4674 i
< 9 && CONSP (matrix
) && NUMBERP (XCAR (matrix
));
4675 ++i
, matrix
= XCDR (matrix
))
4676 trans
[i
] = XFLOATINT (XCAR (matrix
));
4678 else if (VECTORP (matrix
) && ASIZE (matrix
) >= 9)
4680 for (i
= 0; i
< 9 && NUMBERP (AREF (matrix
, i
)); ++i
)
4681 trans
[i
] = XFLOATINT (AREF (matrix
, i
));
4684 if (NILP (color_adjust
))
4685 color_adjust
= make_number (0xffff / 2);
4687 if (i
== 9 && NUMBERP (color_adjust
))
4688 x_detect_edges (f
, img
, trans
, XFLOATINT (color_adjust
));
4692 /* Transform image IMG on frame F so that it looks disabled. */
4695 x_disable_image (struct frame
*f
, struct image
*img
)
4697 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4699 int n_planes
= dpyinfo
->n_planes
* dpyinfo
->n_cbits
;
4701 int n_planes
= dpyinfo
->n_planes
;
4702 #endif /* HAVE_NTGUI */
4706 /* Color (or grayscale). Convert to gray, and equalize. Just
4707 drawing such images with a stipple can look very odd, so
4708 we're using this method instead. */
4709 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4711 const int h
= 15000;
4712 const int l
= 30000;
4714 for (p
= colors
, end
= colors
+ img
->width
* img
->height
;
4718 int i
= COLOR_INTENSITY (p
->red
, p
->green
, p
->blue
);
4719 int i2
= (0xffff - h
- l
) * i
/ 0xffff + l
;
4720 p
->red
= p
->green
= p
->blue
= i2
;
4723 x_from_xcolors (f
, img
, colors
);
4726 /* Draw a cross over the disabled image, if we must or if we
4728 if (n_planes
< 2 || cross_disabled_images
)
4731 Display
*dpy
= FRAME_X_DISPLAY (f
);
4734 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4736 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4738 gc
= XCreateGC (dpy
, img
->pixmap
, 0, NULL
);
4739 XSetForeground (dpy
, gc
, BLACK_PIX_DEFAULT (f
));
4740 XDrawLine (dpy
, img
->pixmap
, gc
, 0, 0,
4741 img
->width
- 1, img
->height
- 1);
4742 XDrawLine (dpy
, img
->pixmap
, gc
, 0, img
->height
- 1,
4748 gc
= XCreateGC (dpy
, img
->mask
, 0, NULL
);
4749 XSetForeground (dpy
, gc
, MaskForeground (f
));
4750 XDrawLine (dpy
, img
->mask
, gc
, 0, 0,
4751 img
->width
- 1, img
->height
- 1);
4752 XDrawLine (dpy
, img
->mask
, gc
, 0, img
->height
- 1,
4756 #endif /* !HAVE_NS */
4761 hdc
= get_frame_dc (f
);
4762 bmpdc
= CreateCompatibleDC (hdc
);
4763 release_frame_dc (f
, hdc
);
4765 prev
= SelectObject (bmpdc
, img
->pixmap
);
4767 SetTextColor (bmpdc
, BLACK_PIX_DEFAULT (f
));
4768 MoveToEx (bmpdc
, 0, 0, NULL
);
4769 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4770 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4771 LineTo (bmpdc
, img
->width
- 1, 0);
4775 SelectObject (bmpdc
, img
->mask
);
4776 SetTextColor (bmpdc
, WHITE_PIX_DEFAULT (f
));
4777 MoveToEx (bmpdc
, 0, 0, NULL
);
4778 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4779 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4780 LineTo (bmpdc
, img
->width
- 1, 0);
4782 SelectObject (bmpdc
, prev
);
4784 #endif /* HAVE_NTGUI */
4789 /* Build a mask for image IMG which is used on frame F. FILE is the
4790 name of an image file, for error messages. HOW determines how to
4791 determine the background color of IMG. If it is a list '(R G B)',
4792 with R, G, and B being integers >= 0, take that as the color of the
4793 background. Otherwise, determine the background color of IMG
4794 heuristically. Value is non-zero if successful. */
4797 x_build_heuristic_mask (struct frame
*f
, struct image
*img
, Lisp_Object how
)
4799 XImagePtr_or_DC ximg
;
4807 #endif /* HAVE_NTGUI */
4808 int x
, y
, rc
, use_img_background
;
4809 unsigned long bg
= 0;
4813 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4814 img
->mask
= NO_PIXMAP
;
4815 img
->background_transparent_valid
= 0;
4820 /* Create an image and pixmap serving as mask. */
4821 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 1,
4822 &mask_img
, &img
->mask
);
4825 #endif /* !HAVE_NS */
4827 /* Get the X image of IMG->pixmap. */
4828 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
, 0, 0,
4829 img
->width
, img
->height
,
4832 /* Create the bit array serving as mask. */
4833 row_width
= (img
->width
+ 7) / 8;
4834 mask_img
= xmalloc (row_width
* img
->height
);
4835 memset (mask_img
, 0, row_width
* img
->height
);
4837 /* Create a memory device context for IMG->pixmap. */
4838 frame_dc
= get_frame_dc (f
);
4839 ximg
= CreateCompatibleDC (frame_dc
);
4840 release_frame_dc (f
, frame_dc
);
4841 prev
= SelectObject (ximg
, img
->pixmap
);
4842 #endif /* HAVE_NTGUI */
4844 /* Determine the background color of ximg. If HOW is `(R G B)'
4845 take that as color. Otherwise, use the image's background color. */
4846 use_img_background
= 1;
4852 for (i
= 0; i
< 3 && CONSP (how
) && NATNUMP (XCAR (how
)); ++i
)
4854 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
4858 if (i
== 3 && NILP (how
))
4860 char color_name
[30];
4861 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
4864 0x00ffffff & /* Filter out palette info. */
4865 #endif /* HAVE_NTGUI */
4866 x_alloc_image_color (f
, img
, build_string (color_name
), 0));
4867 use_img_background
= 0;
4871 if (use_img_background
)
4872 bg
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
4874 /* Set all bits in mask_img to 1 whose color in ximg is different
4875 from the background color bg. */
4877 for (y
= 0; y
< img
->height
; ++y
)
4878 for (x
= 0; x
< img
->width
; ++x
)
4880 XPutPixel (mask_img
, x
, y
, (XGetPixel (ximg
, x
, y
) != bg
4881 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
));
4883 if (XGetPixel (ximg
, x
, y
) == bg
)
4884 ns_set_alpha (ximg
, x
, y
, 0);
4885 #endif /* HAVE_NS */
4887 /* Fill in the background_transparent field while we have the mask handy. */
4888 image_background_transparent (img
, f
, mask_img
);
4890 /* Put mask_img into img->mask. */
4891 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
4892 x_destroy_x_image (mask_img
);
4893 #endif /* !HAVE_NS */
4895 for (y
= 0; y
< img
->height
; ++y
)
4896 for (x
= 0; x
< img
->width
; ++x
)
4898 COLORREF p
= GetPixel (ximg
, x
, y
);
4900 mask_img
[y
* row_width
+ x
/ 8] |= 1 << (x
% 8);
4903 /* Create the mask image. */
4904 img
->mask
= w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
,
4906 /* Fill in the background_transparent field while we have the mask handy. */
4907 SelectObject (ximg
, img
->mask
);
4908 image_background_transparent (img
, f
, ximg
);
4910 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
4912 #endif /* HAVE_NTGUI */
4914 Destroy_Image (ximg
, prev
);
4920 /***********************************************************************
4921 PBM (mono, gray, color)
4922 ***********************************************************************/
4924 static int pbm_image_p (Lisp_Object object
);
4925 static int pbm_load (struct frame
*f
, struct image
*img
);
4926 static int pbm_scan_number (unsigned char **, unsigned char *);
4928 /* The symbol `pbm' identifying images of this type. */
4932 /* Indices of image specification fields in gs_format, below. */
4934 enum pbm_keyword_index
4950 /* Vector of image_keyword structures describing the format
4951 of valid user-defined image specifications. */
4953 static const struct image_keyword pbm_format
[PBM_LAST
] =
4955 {":type", IMAGE_SYMBOL_VALUE
, 1},
4956 {":file", IMAGE_STRING_VALUE
, 0},
4957 {":data", IMAGE_STRING_VALUE
, 0},
4958 {":ascent", IMAGE_ASCENT_VALUE
, 0},
4959 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
4960 {":relief", IMAGE_INTEGER_VALUE
, 0},
4961 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4962 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4963 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4964 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
4965 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
4968 /* Structure describing the image type `pbm'. */
4970 static struct image_type pbm_type
=
4980 /* Return non-zero if OBJECT is a valid PBM image specification. */
4983 pbm_image_p (Lisp_Object object
)
4985 struct image_keyword fmt
[PBM_LAST
];
4987 memcpy (fmt
, pbm_format
, sizeof fmt
);
4989 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
))
4992 /* Must specify either :data or :file. */
4993 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
4997 /* Scan a decimal number from *S and return it. Advance *S while
4998 reading the number. END is the end of the string. Value is -1 at
5002 pbm_scan_number (unsigned char **s
, unsigned char *end
)
5004 int c
= 0, val
= -1;
5008 /* Skip white-space. */
5009 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
5014 /* Skip comment to end of line. */
5015 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n'))
5018 else if (isdigit (c
))
5020 /* Read decimal number. */
5022 while (*s
< end
&& (c
= *(*s
)++, isdigit (c
)))
5023 val
= 10 * val
+ c
- '0';
5035 #if 0 /* Unused. ++kfs */
5037 /* Read FILE into memory. Value is a pointer to a buffer allocated
5038 with xmalloc holding FILE's contents. Value is null if an error
5039 occurred. *SIZE is set to the size of the file. */
5042 pbm_read_file (file
, size
)
5050 if (stat (SDATA (file
), &st
) == 0
5051 && (fp
= fopen (SDATA (file
), "rb")) != NULL
5052 && (buf
= (char *) xmalloc (st
.st_size
),
5053 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
5072 #endif /* HAVE_NTGUI */
5074 /* Load PBM image IMG for use on frame F. */
5077 pbm_load (struct frame
*f
, struct image
*img
)
5080 int width
, height
, max_color_idx
= 0;
5082 Lisp_Object file
, specified_file
;
5083 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
5084 unsigned char *contents
= NULL
;
5085 unsigned char *end
, *p
;
5088 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5090 if (STRINGP (specified_file
))
5092 file
= x_find_image_file (specified_file
);
5093 if (!STRINGP (file
))
5095 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5099 contents
= slurp_file (SSDATA (file
), &size
);
5100 if (contents
== NULL
)
5102 image_error ("Error reading `%s'", file
, Qnil
);
5107 end
= contents
+ size
;
5112 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5113 if (!STRINGP (data
))
5115 image_error ("Invalid image data `%s'", data
, Qnil
);
5119 end
= p
+ SBYTES (data
);
5122 /* Check magic number. */
5123 if (end
- p
< 2 || *p
++ != 'P')
5125 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5134 raw_p
= 0, type
= PBM_MONO
;
5138 raw_p
= 0, type
= PBM_GRAY
;
5142 raw_p
= 0, type
= PBM_COLOR
;
5146 raw_p
= 1, type
= PBM_MONO
;
5150 raw_p
= 1, type
= PBM_GRAY
;
5154 raw_p
= 1, type
= PBM_COLOR
;
5158 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5162 /* Read width, height, maximum color-component. Characters
5163 starting with `#' up to the end of a line are ignored. */
5164 width
= pbm_scan_number (&p
, end
);
5165 height
= pbm_scan_number (&p
, end
);
5167 if (type
!= PBM_MONO
)
5169 max_color_idx
= pbm_scan_number (&p
, end
);
5170 if (max_color_idx
> 65535 || max_color_idx
< 0)
5172 image_error ("Unsupported maximum PBM color value", Qnil
, Qnil
);
5177 if (!check_image_size (f
, width
, height
))
5179 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5183 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
5184 &ximg
, &img
->pixmap
))
5187 /* Initialize the color hash table. */
5188 init_color_table ();
5190 if (type
== PBM_MONO
)
5193 struct image_keyword fmt
[PBM_LAST
];
5194 unsigned long fg
= FRAME_FOREGROUND_PIXEL (f
);
5195 unsigned long bg
= FRAME_BACKGROUND_PIXEL (f
);
5197 /* Parse the image specification. */
5198 memcpy (fmt
, pbm_format
, sizeof fmt
);
5199 parse_image_spec (img
->spec
, fmt
, PBM_LAST
, Qpbm
);
5201 /* Get foreground and background colors, maybe allocate colors. */
5202 if (fmt
[PBM_FOREGROUND
].count
5203 && STRINGP (fmt
[PBM_FOREGROUND
].value
))
5204 fg
= x_alloc_image_color (f
, img
, fmt
[PBM_FOREGROUND
].value
, fg
);
5205 if (fmt
[PBM_BACKGROUND
].count
5206 && STRINGP (fmt
[PBM_BACKGROUND
].value
))
5208 bg
= x_alloc_image_color (f
, img
, fmt
[PBM_BACKGROUND
].value
, bg
);
5209 img
->background
= bg
;
5210 img
->background_valid
= 1;
5213 for (y
= 0; y
< height
; ++y
)
5214 for (x
= 0; x
< width
; ++x
)
5222 x_destroy_x_image (ximg
);
5223 x_clear_image (f
, img
);
5224 image_error ("Invalid image size in image `%s'",
5234 g
= pbm_scan_number (&p
, end
);
5236 XPutPixel (ximg
, x
, y
, g
? fg
: bg
);
5241 int expected_size
= height
* width
;
5242 if (max_color_idx
> 255)
5244 if (type
== PBM_COLOR
)
5247 if (raw_p
&& p
+ expected_size
> end
)
5249 x_destroy_x_image (ximg
);
5250 x_clear_image (f
, img
);
5251 image_error ("Invalid image size in image `%s'",
5256 for (y
= 0; y
< height
; ++y
)
5257 for (x
= 0; x
< width
; ++x
)
5261 if (type
== PBM_GRAY
&& raw_p
)
5264 if (max_color_idx
> 255)
5265 r
= g
= b
= r
* 256 + *p
++;
5267 else if (type
== PBM_GRAY
)
5268 r
= g
= b
= pbm_scan_number (&p
, end
);
5272 if (max_color_idx
> 255)
5275 if (max_color_idx
> 255)
5278 if (max_color_idx
> 255)
5283 r
= pbm_scan_number (&p
, end
);
5284 g
= pbm_scan_number (&p
, end
);
5285 b
= pbm_scan_number (&p
, end
);
5288 if (r
< 0 || g
< 0 || b
< 0)
5290 x_destroy_x_image (ximg
);
5291 image_error ("Invalid pixel value in image `%s'",
5296 /* RGB values are now in the range 0..max_color_idx.
5297 Scale this to the range 0..0xffff supported by X. */
5298 r
= (double) r
* 65535 / max_color_idx
;
5299 g
= (double) g
* 65535 / max_color_idx
;
5300 b
= (double) b
* 65535 / max_color_idx
;
5301 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5305 #ifdef COLOR_TABLE_SUPPORT
5306 /* Store in IMG->colors the colors allocated for the image, and
5307 free the color table. */
5308 img
->colors
= colors_in_color_table (&img
->ncolors
);
5309 free_color_table ();
5310 #endif /* COLOR_TABLE_SUPPORT */
5313 img
->height
= height
;
5315 /* Maybe fill in the background field while we have ximg handy. */
5317 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5318 /* Casting avoids a GCC warning. */
5319 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5321 /* Put the image into a pixmap. */
5322 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
5323 x_destroy_x_image (ximg
);
5325 /* X and W32 versions did it here, MAC version above. ++kfs
5327 img->height = height; */
5334 /***********************************************************************
5336 ***********************************************************************/
5338 #if defined (HAVE_PNG) || defined (HAVE_NS)
5340 /* Function prototypes. */
5342 static int png_image_p (Lisp_Object object
);
5343 static int png_load (struct frame
*f
, struct image
*img
);
5345 /* The symbol `png' identifying images of this type. */
5349 /* Indices of image specification fields in png_format, below. */
5351 enum png_keyword_index
5366 /* Vector of image_keyword structures describing the format
5367 of valid user-defined image specifications. */
5369 static const struct image_keyword png_format
[PNG_LAST
] =
5371 {":type", IMAGE_SYMBOL_VALUE
, 1},
5372 {":data", IMAGE_STRING_VALUE
, 0},
5373 {":file", IMAGE_STRING_VALUE
, 0},
5374 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5375 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
5376 {":relief", IMAGE_INTEGER_VALUE
, 0},
5377 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5378 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5379 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5380 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5383 /* Structure describing the image type `png'. */
5385 static struct image_type png_type
=
5394 /* Return non-zero if OBJECT is a valid PNG image specification. */
5397 png_image_p (Lisp_Object object
)
5399 struct image_keyword fmt
[PNG_LAST
];
5400 memcpy (fmt
, png_format
, sizeof fmt
);
5402 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
))
5405 /* Must specify either the :data or :file keyword. */
5406 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
5409 #endif /* HAVE_PNG || HAVE_NS */
5415 /* PNG library details. */
5417 DEF_IMGLIB_FN (png_voidp
, png_get_io_ptr
, (png_structp
));
5418 DEF_IMGLIB_FN (int, png_sig_cmp
, (png_bytep
, png_size_t
, png_size_t
));
5419 DEF_IMGLIB_FN (png_structp
, png_create_read_struct
, (png_const_charp
, png_voidp
,
5420 png_error_ptr
, png_error_ptr
));
5421 DEF_IMGLIB_FN (png_infop
, png_create_info_struct
, (png_structp
));
5422 DEF_IMGLIB_FN (void, png_destroy_read_struct
, (png_structpp
, png_infopp
, png_infopp
));
5423 DEF_IMGLIB_FN (void, png_set_read_fn
, (png_structp
, png_voidp
, png_rw_ptr
));
5424 DEF_IMGLIB_FN (void, png_set_sig_bytes
, (png_structp
, int));
5425 DEF_IMGLIB_FN (void, png_read_info
, (png_structp
, png_infop
));
5426 DEF_IMGLIB_FN (png_uint_32
, png_get_IHDR
, (png_structp
, png_infop
,
5427 png_uint_32
*, png_uint_32
*,
5428 int *, int *, int *, int *, int *));
5429 DEF_IMGLIB_FN (png_uint_32
, png_get_valid
, (png_structp
, png_infop
, png_uint_32
));
5430 DEF_IMGLIB_FN (void, png_set_strip_16
, (png_structp
));
5431 DEF_IMGLIB_FN (void, png_set_expand
, (png_structp
));
5432 DEF_IMGLIB_FN (void, png_set_gray_to_rgb
, (png_structp
));
5433 DEF_IMGLIB_FN (void, png_set_background
, (png_structp
, png_color_16p
,
5435 DEF_IMGLIB_FN (png_uint_32
, png_get_bKGD
, (png_structp
, png_infop
, png_color_16p
*));
5436 DEF_IMGLIB_FN (void, png_read_update_info
, (png_structp
, png_infop
));
5437 DEF_IMGLIB_FN (png_byte
, png_get_channels
, (png_structp
, png_infop
));
5438 DEF_IMGLIB_FN (png_size_t
, png_get_rowbytes
, (png_structp
, png_infop
));
5439 DEF_IMGLIB_FN (void, png_read_image
, (png_structp
, png_bytepp
));
5440 DEF_IMGLIB_FN (void, png_read_end
, (png_structp
, png_infop
));
5441 DEF_IMGLIB_FN (void, png_error
, (png_structp
, png_const_charp
));
5443 #if (PNG_LIBPNG_VER >= 10500)
5444 DEF_IMGLIB_FN (void, png_longjmp
, (png_structp
, int));
5445 DEF_IMGLIB_FN (jmp_buf *, png_set_longjmp_fn
, (png_structp
, png_longjmp_ptr
, size_t));
5446 #endif /* libpng version >= 1.5 */
5449 init_png_functions (Lisp_Object libraries
)
5453 /* Try loading libpng under probable names. */
5454 if (!(library
= w32_delayed_load (libraries
, Qpng
)))
5457 LOAD_IMGLIB_FN (library
, png_get_io_ptr
);
5458 LOAD_IMGLIB_FN (library
, png_sig_cmp
);
5459 LOAD_IMGLIB_FN (library
, png_create_read_struct
);
5460 LOAD_IMGLIB_FN (library
, png_create_info_struct
);
5461 LOAD_IMGLIB_FN (library
, png_destroy_read_struct
);
5462 LOAD_IMGLIB_FN (library
, png_set_read_fn
);
5463 LOAD_IMGLIB_FN (library
, png_set_sig_bytes
);
5464 LOAD_IMGLIB_FN (library
, png_read_info
);
5465 LOAD_IMGLIB_FN (library
, png_get_IHDR
);
5466 LOAD_IMGLIB_FN (library
, png_get_valid
);
5467 LOAD_IMGLIB_FN (library
, png_set_strip_16
);
5468 LOAD_IMGLIB_FN (library
, png_set_expand
);
5469 LOAD_IMGLIB_FN (library
, png_set_gray_to_rgb
);
5470 LOAD_IMGLIB_FN (library
, png_set_background
);
5471 LOAD_IMGLIB_FN (library
, png_get_bKGD
);
5472 LOAD_IMGLIB_FN (library
, png_read_update_info
);
5473 LOAD_IMGLIB_FN (library
, png_get_channels
);
5474 LOAD_IMGLIB_FN (library
, png_get_rowbytes
);
5475 LOAD_IMGLIB_FN (library
, png_read_image
);
5476 LOAD_IMGLIB_FN (library
, png_read_end
);
5477 LOAD_IMGLIB_FN (library
, png_error
);
5479 #if (PNG_LIBPNG_VER >= 10500)
5480 LOAD_IMGLIB_FN (library
, png_longjmp
);
5481 LOAD_IMGLIB_FN (library
, png_set_longjmp_fn
);
5482 #endif /* libpng version >= 1.5 */
5488 #define fn_png_get_io_ptr png_get_io_ptr
5489 #define fn_png_sig_cmp png_sig_cmp
5490 #define fn_png_create_read_struct png_create_read_struct
5491 #define fn_png_create_info_struct png_create_info_struct
5492 #define fn_png_destroy_read_struct png_destroy_read_struct
5493 #define fn_png_set_read_fn png_set_read_fn
5494 #define fn_png_set_sig_bytes png_set_sig_bytes
5495 #define fn_png_read_info png_read_info
5496 #define fn_png_get_IHDR png_get_IHDR
5497 #define fn_png_get_valid png_get_valid
5498 #define fn_png_set_strip_16 png_set_strip_16
5499 #define fn_png_set_expand png_set_expand
5500 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5501 #define fn_png_set_background png_set_background
5502 #define fn_png_get_bKGD png_get_bKGD
5503 #define fn_png_read_update_info png_read_update_info
5504 #define fn_png_get_channels png_get_channels
5505 #define fn_png_get_rowbytes png_get_rowbytes
5506 #define fn_png_read_image png_read_image
5507 #define fn_png_read_end png_read_end
5508 #define fn_png_error png_error
5510 #if (PNG_LIBPNG_VER >= 10500)
5511 #define fn_png_longjmp png_longjmp
5512 #define fn_png_set_longjmp_fn png_set_longjmp_fn
5513 #endif /* libpng version >= 1.5 */
5515 #endif /* HAVE_NTGUI */
5518 #if (PNG_LIBPNG_VER < 10500)
5519 #define PNG_LONGJMP(ptr) (longjmp ((ptr)->jmpbuf, 1))
5520 #define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5522 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5523 #define PNG_LONGJMP(ptr) (fn_png_longjmp ((ptr), 1))
5524 #define PNG_JMPBUF(ptr) \
5525 (*fn_png_set_longjmp_fn((ptr), longjmp, sizeof (jmp_buf)))
5528 /* Error and warning handlers installed when the PNG library
5531 static void my_png_error (png_struct
*, const char *) NO_RETURN
;
5533 my_png_error (png_struct
*png_ptr
, const char *msg
)
5535 xassert (png_ptr
!= NULL
);
5536 /* Avoid compiler warning about deprecated direct access to
5537 png_ptr's fields in libpng versions 1.4.x. */
5538 image_error ("PNG error: %s", build_string (msg
), Qnil
);
5539 PNG_LONGJMP (png_ptr
);
5544 my_png_warning (png_struct
*png_ptr
, const char *msg
)
5546 xassert (png_ptr
!= NULL
);
5547 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
5550 /* Memory source for PNG decoding. */
5552 struct png_memory_storage
5554 unsigned char *bytes
; /* The data */
5555 size_t len
; /* How big is it? */
5556 int index
; /* Where are we? */
5560 /* Function set as reader function when reading PNG image from memory.
5561 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5562 bytes from the input to DATA. */
5565 png_read_from_memory (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5567 struct png_memory_storage
*tbr
5568 = (struct png_memory_storage
*) fn_png_get_io_ptr (png_ptr
);
5570 if (length
> tbr
->len
- tbr
->index
)
5571 fn_png_error (png_ptr
, "Read error");
5573 memcpy (data
, tbr
->bytes
+ tbr
->index
, length
);
5574 tbr
->index
= tbr
->index
+ length
;
5578 /* Function set as reader function when reading PNG image from a file.
5579 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5580 bytes from the input to DATA. */
5583 png_read_from_file (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5585 FILE *fp
= (FILE *) fn_png_get_io_ptr (png_ptr
);
5587 if (fread (data
, 1, length
, fp
) < length
)
5588 fn_png_error (png_ptr
, "Read error");
5592 /* Load PNG image IMG for use on frame F. Value is non-zero if
5596 png_load (struct frame
*f
, struct image
*img
)
5598 Lisp_Object file
, specified_file
;
5599 Lisp_Object specified_data
;
5601 XImagePtr ximg
, mask_img
= NULL
;
5602 png_struct
*png_ptr
= NULL
;
5603 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
5604 FILE *volatile fp
= NULL
;
5606 png_byte
* volatile pixels
= NULL
;
5607 png_byte
** volatile rows
= NULL
;
5608 png_uint_32 width
, height
;
5609 int bit_depth
, color_type
, interlace_type
;
5611 png_uint_32 row_bytes
;
5613 struct png_memory_storage tbr
; /* Data to be read */
5615 /* Find out what file to load. */
5616 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5617 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5619 if (NILP (specified_data
))
5621 file
= x_find_image_file (specified_file
);
5622 if (!STRINGP (file
))
5624 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5628 /* Open the image file. */
5629 fp
= fopen (SSDATA (file
), "rb");
5632 image_error ("Cannot open image file `%s'", file
, Qnil
);
5636 /* Check PNG signature. */
5637 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
5638 || fn_png_sig_cmp (sig
, 0, sizeof sig
))
5640 image_error ("Not a PNG file: `%s'", file
, Qnil
);
5647 if (!STRINGP (specified_data
))
5649 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
5653 /* Read from memory. */
5654 tbr
.bytes
= SDATA (specified_data
);
5655 tbr
.len
= SBYTES (specified_data
);
5658 /* Check PNG signature. */
5659 if (tbr
.len
< sizeof sig
5660 || fn_png_sig_cmp (tbr
.bytes
, 0, sizeof sig
))
5662 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
5666 /* Need to skip past the signature. */
5667 tbr
.bytes
+= sizeof (sig
);
5670 /* Initialize read and info structs for PNG lib. */
5671 png_ptr
= fn_png_create_read_struct (PNG_LIBPNG_VER_STRING
,
5676 if (fp
) fclose (fp
);
5680 info_ptr
= fn_png_create_info_struct (png_ptr
);
5683 fn_png_destroy_read_struct (&png_ptr
, NULL
, NULL
);
5684 if (fp
) fclose (fp
);
5688 end_info
= fn_png_create_info_struct (png_ptr
);
5691 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
5692 if (fp
) fclose (fp
);
5696 /* Set error jump-back. We come back here when the PNG library
5697 detects an error. */
5698 if (setjmp (PNG_JMPBUF (png_ptr
)))
5702 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
5705 if (fp
) fclose (fp
);
5709 /* Read image info. */
5710 if (!NILP (specified_data
))
5711 fn_png_set_read_fn (png_ptr
, (void *) &tbr
, png_read_from_memory
);
5713 fn_png_set_read_fn (png_ptr
, (void *) fp
, png_read_from_file
);
5715 fn_png_set_sig_bytes (png_ptr
, sizeof sig
);
5716 fn_png_read_info (png_ptr
, info_ptr
);
5717 fn_png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
5718 &interlace_type
, NULL
, NULL
);
5720 if (!check_image_size (f
, width
, height
))
5722 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5725 /* If image contains simply transparency data, we prefer to
5726 construct a clipping mask. */
5727 if (fn_png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
5732 /* This function is easier to write if we only have to handle
5733 one data format: RGB or RGBA with 8 bits per channel. Let's
5734 transform other formats into that format. */
5736 /* Strip more than 8 bits per channel. */
5737 if (bit_depth
== 16)
5738 fn_png_set_strip_16 (png_ptr
);
5740 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5742 fn_png_set_expand (png_ptr
);
5744 /* Convert grayscale images to RGB. */
5745 if (color_type
== PNG_COLOR_TYPE_GRAY
5746 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
5747 fn_png_set_gray_to_rgb (png_ptr
);
5749 /* Handle alpha channel by combining the image with a background
5750 color. Do this only if a real alpha channel is supplied. For
5751 simple transparency, we prefer a clipping mask. */
5754 /* png_color_16 *image_bg; */
5755 Lisp_Object specified_bg
5756 = image_spec_value (img
->spec
, QCbackground
, NULL
);
5757 int shift
= (bit_depth
== 16) ? 0 : 8;
5759 if (STRINGP (specified_bg
))
5760 /* The user specified `:background', use that. */
5763 if (x_defined_color (f
, SSDATA (specified_bg
), &color
, 0))
5765 png_color_16 user_bg
;
5767 memset (&user_bg
, 0, sizeof user_bg
);
5768 user_bg
.red
= color
.red
>> shift
;
5769 user_bg
.green
= color
.green
>> shift
;
5770 user_bg
.blue
= color
.blue
>> shift
;
5772 fn_png_set_background (png_ptr
, &user_bg
,
5773 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5778 /* We use the current frame background, ignoring any default
5779 background color set by the image. */
5780 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5782 png_color_16 frame_background
;
5784 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
5785 x_query_color (f
, &color
);
5787 memset (&frame_background
, 0, sizeof frame_background
);
5788 frame_background
.red
= color
.red
>> shift
;
5789 frame_background
.green
= color
.green
>> shift
;
5790 frame_background
.blue
= color
.blue
>> shift
;
5791 #endif /* HAVE_X_WINDOWS */
5793 fn_png_set_background (png_ptr
, &frame_background
,
5794 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5798 /* Update info structure. */
5799 fn_png_read_update_info (png_ptr
, info_ptr
);
5801 /* Get number of channels. Valid values are 1 for grayscale images
5802 and images with a palette, 2 for grayscale images with transparency
5803 information (alpha channel), 3 for RGB images, and 4 for RGB
5804 images with alpha channel, i.e. RGBA. If conversions above were
5805 sufficient we should only have 3 or 4 channels here. */
5806 channels
= fn_png_get_channels (png_ptr
, info_ptr
);
5807 xassert (channels
== 3 || channels
== 4);
5809 /* Number of bytes needed for one row of the image. */
5810 row_bytes
= fn_png_get_rowbytes (png_ptr
, info_ptr
);
5812 /* Allocate memory for the image. */
5813 pixels
= (png_byte
*) xmalloc (row_bytes
* height
* sizeof *pixels
);
5814 rows
= (png_byte
**) xmalloc (height
* sizeof *rows
);
5815 for (i
= 0; i
< height
; ++i
)
5816 rows
[i
] = pixels
+ i
* row_bytes
;
5818 /* Read the entire image. */
5819 fn_png_read_image (png_ptr
, rows
);
5820 fn_png_read_end (png_ptr
, info_ptr
);
5827 /* Create the X image and pixmap. */
5828 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
5832 /* Create an image and pixmap serving as mask if the PNG image
5833 contains an alpha channel. */
5836 && !x_create_x_image_and_pixmap (f
, width
, height
, 1,
5837 &mask_img
, &img
->mask
))
5839 x_destroy_x_image (ximg
);
5840 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
5841 img
->pixmap
= NO_PIXMAP
;
5845 /* Fill the X image and mask from PNG data. */
5846 init_color_table ();
5848 for (y
= 0; y
< height
; ++y
)
5850 png_byte
*p
= rows
[y
];
5852 for (x
= 0; x
< width
; ++x
)
5859 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5860 /* An alpha channel, aka mask channel, associates variable
5861 transparency with an image. Where other image formats
5862 support binary transparency---fully transparent or fully
5863 opaque---PNG allows up to 254 levels of partial transparency.
5864 The PNG library implements partial transparency by combining
5865 the image with a specified background color.
5867 I'm not sure how to handle this here nicely: because the
5868 background on which the image is displayed may change, for
5869 real alpha channel support, it would be necessary to create
5870 a new image for each possible background.
5872 What I'm doing now is that a mask is created if we have
5873 boolean transparency information. Otherwise I'm using
5874 the frame's background color to combine the image with. */
5879 XPutPixel (mask_img
, x
, y
, *p
> 0 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
);
5885 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5886 /* Set IMG's background color from the PNG image, unless the user
5890 if (fn_png_get_bKGD (png_ptr
, info_ptr
, &bg
))
5892 img
->background
= lookup_rgb_color (f
, bg
->red
, bg
->green
, bg
->blue
);
5893 img
->background_valid
= 1;
5897 #ifdef COLOR_TABLE_SUPPORT
5898 /* Remember colors allocated for this image. */
5899 img
->colors
= colors_in_color_table (&img
->ncolors
);
5900 free_color_table ();
5901 #endif /* COLOR_TABLE_SUPPORT */
5904 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
5909 img
->height
= height
;
5911 /* Maybe fill in the background field while we have ximg handy.
5912 Casting avoids a GCC warning. */
5913 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5915 /* Put the image into the pixmap, then free the X image and its buffer. */
5916 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
5917 x_destroy_x_image (ximg
);
5919 /* Same for the mask. */
5922 /* Fill in the background_transparent field while we have the
5923 mask handy. Casting avoids a GCC warning. */
5924 image_background_transparent (img
, f
, (XImagePtr_or_DC
)mask_img
);
5926 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
5927 x_destroy_x_image (mask_img
);
5933 #else /* HAVE_PNG */
5937 png_load (struct frame
*f
, struct image
*img
)
5939 return ns_load_image(f
, img
,
5940 image_spec_value (img
->spec
, QCfile
, NULL
),
5941 image_spec_value (img
->spec
, QCdata
, NULL
));
5943 #endif /* HAVE_NS */
5946 #endif /* !HAVE_PNG */
5950 /***********************************************************************
5952 ***********************************************************************/
5954 #if defined (HAVE_JPEG) || defined (HAVE_NS)
5956 static int jpeg_image_p (Lisp_Object object
);
5957 static int jpeg_load (struct frame
*f
, struct image
*img
);
5959 /* The symbol `jpeg' identifying images of this type. */
5963 /* Indices of image specification fields in gs_format, below. */
5965 enum jpeg_keyword_index
5974 JPEG_HEURISTIC_MASK
,
5980 /* Vector of image_keyword structures describing the format
5981 of valid user-defined image specifications. */
5983 static const struct image_keyword jpeg_format
[JPEG_LAST
] =
5985 {":type", IMAGE_SYMBOL_VALUE
, 1},
5986 {":data", IMAGE_STRING_VALUE
, 0},
5987 {":file", IMAGE_STRING_VALUE
, 0},
5988 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5989 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
5990 {":relief", IMAGE_INTEGER_VALUE
, 0},
5991 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5992 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5993 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5994 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5997 /* Structure describing the image type `jpeg'. */
5999 static struct image_type jpeg_type
=
6008 /* Return non-zero if OBJECT is a valid JPEG image specification. */
6011 jpeg_image_p (Lisp_Object object
)
6013 struct image_keyword fmt
[JPEG_LAST
];
6015 memcpy (fmt
, jpeg_format
, sizeof fmt
);
6017 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
))
6020 /* Must specify either the :data or :file keyword. */
6021 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
6024 #endif /* HAVE_JPEG || HAVE_NS */
6028 /* Work around a warning about HAVE_STDLIB_H being redefined in
6030 #ifdef HAVE_STDLIB_H
6031 #undef HAVE_STDLIB_H
6032 #endif /* HAVE_STLIB_H */
6034 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6035 /* In older releases of the jpeg library, jpeglib.h will define boolean
6036 differently depending on __WIN32__, so make sure it is defined. */
6040 #include <jpeglib.h>
6043 #ifdef HAVE_STLIB_H_1
6044 #define HAVE_STDLIB_H 1
6049 /* JPEG library details. */
6050 DEF_IMGLIB_FN (void, jpeg_CreateDecompress
, (j_decompress_ptr
, int, size_t));
6051 DEF_IMGLIB_FN (boolean
, jpeg_start_decompress
, (j_decompress_ptr
));
6052 DEF_IMGLIB_FN (boolean
, jpeg_finish_decompress
, (j_decompress_ptr
));
6053 DEF_IMGLIB_FN (void, jpeg_destroy_decompress
, (j_decompress_ptr
));
6054 DEF_IMGLIB_FN (int, jpeg_read_header
, (j_decompress_ptr
, boolean
));
6055 DEF_IMGLIB_FN (JDIMENSION
, jpeg_read_scanlines
, (j_decompress_ptr
, JSAMPARRAY
, JDIMENSION
));
6056 DEF_IMGLIB_FN (struct jpeg_error_mgr
*, jpeg_std_error
, (struct jpeg_error_mgr
*));
6057 DEF_IMGLIB_FN (boolean
, jpeg_resync_to_restart
, (j_decompress_ptr
, int));
6060 init_jpeg_functions (Lisp_Object libraries
)
6064 if (!(library
= w32_delayed_load (libraries
, Qjpeg
)))
6067 LOAD_IMGLIB_FN (library
, jpeg_finish_decompress
);
6068 LOAD_IMGLIB_FN (library
, jpeg_read_scanlines
);
6069 LOAD_IMGLIB_FN (library
, jpeg_start_decompress
);
6070 LOAD_IMGLIB_FN (library
, jpeg_read_header
);
6071 LOAD_IMGLIB_FN (library
, jpeg_CreateDecompress
);
6072 LOAD_IMGLIB_FN (library
, jpeg_destroy_decompress
);
6073 LOAD_IMGLIB_FN (library
, jpeg_std_error
);
6074 LOAD_IMGLIB_FN (library
, jpeg_resync_to_restart
);
6078 /* Wrapper since we can't directly assign the function pointer
6079 to another function pointer that was declared more completely easily. */
6081 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo
, int desired
)
6083 return fn_jpeg_resync_to_restart (cinfo
, desired
);
6088 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress(a)
6089 #define fn_jpeg_start_decompress jpeg_start_decompress
6090 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6091 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6092 #define fn_jpeg_read_header jpeg_read_header
6093 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6094 #define fn_jpeg_std_error jpeg_std_error
6095 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6097 #endif /* HAVE_NTGUI */
6099 struct my_jpeg_error_mgr
6101 struct jpeg_error_mgr pub
;
6102 jmp_buf setjmp_buffer
;
6106 static void my_error_exit (j_common_ptr
) NO_RETURN
;
6108 my_error_exit (j_common_ptr cinfo
)
6110 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
6111 longjmp (mgr
->setjmp_buffer
, 1);
6115 /* Init source method for JPEG data source manager. Called by
6116 jpeg_read_header() before any data is actually read. See
6117 libjpeg.doc from the JPEG lib distribution. */
6120 our_common_init_source (j_decompress_ptr cinfo
)
6125 /* Method to terminate data source. Called by
6126 jpeg_finish_decompress() after all data has been processed. */
6129 our_common_term_source (j_decompress_ptr cinfo
)
6134 /* Fill input buffer method for JPEG data source manager. Called
6135 whenever more data is needed. We read the whole image in one step,
6136 so this only adds a fake end of input marker at the end. */
6138 static JOCTET our_memory_buffer
[2];
6141 our_memory_fill_input_buffer (j_decompress_ptr cinfo
)
6143 /* Insert a fake EOI marker. */
6144 struct jpeg_source_mgr
*src
= cinfo
->src
;
6146 our_memory_buffer
[0] = (JOCTET
) 0xFF;
6147 our_memory_buffer
[1] = (JOCTET
) JPEG_EOI
;
6149 src
->next_input_byte
= our_memory_buffer
;
6150 src
->bytes_in_buffer
= 2;
6155 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6156 is the JPEG data source manager. */
6159 our_memory_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6161 struct jpeg_source_mgr
*src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6165 if (num_bytes
> src
->bytes_in_buffer
)
6166 ERREXIT (cinfo
, JERR_INPUT_EOF
);
6168 src
->bytes_in_buffer
-= num_bytes
;
6169 src
->next_input_byte
+= num_bytes
;
6174 /* Set up the JPEG lib for reading an image from DATA which contains
6175 LEN bytes. CINFO is the decompression info structure created for
6176 reading the image. */
6179 jpeg_memory_src (j_decompress_ptr cinfo
, JOCTET
*data
, unsigned int len
)
6181 struct jpeg_source_mgr
*src
;
6183 if (cinfo
->src
== NULL
)
6185 /* First time for this JPEG object? */
6186 cinfo
->src
= (struct jpeg_source_mgr
*)
6187 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6188 sizeof (struct jpeg_source_mgr
));
6189 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6190 src
->next_input_byte
= data
;
6193 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6194 src
->init_source
= our_common_init_source
;
6195 src
->fill_input_buffer
= our_memory_fill_input_buffer
;
6196 src
->skip_input_data
= our_memory_skip_input_data
;
6197 src
->resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6198 src
->term_source
= our_common_term_source
;
6199 src
->bytes_in_buffer
= len
;
6200 src
->next_input_byte
= data
;
6204 struct jpeg_stdio_mgr
6206 struct jpeg_source_mgr mgr
;
6213 /* Size of buffer to read JPEG from file.
6214 Not too big, as we want to use alloc_small. */
6215 #define JPEG_STDIO_BUFFER_SIZE 8192
6218 /* Fill input buffer method for JPEG data source manager. Called
6219 whenever more data is needed. The data is read from a FILE *. */
6222 our_stdio_fill_input_buffer (j_decompress_ptr cinfo
)
6224 struct jpeg_stdio_mgr
*src
;
6226 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6231 bytes
= fread (src
->buffer
, 1, JPEG_STDIO_BUFFER_SIZE
, src
->file
);
6233 src
->mgr
.bytes_in_buffer
= bytes
;
6236 WARNMS (cinfo
, JWRN_JPEG_EOF
);
6238 src
->buffer
[0] = (JOCTET
) 0xFF;
6239 src
->buffer
[1] = (JOCTET
) JPEG_EOI
;
6240 src
->mgr
.bytes_in_buffer
= 2;
6242 src
->mgr
.next_input_byte
= src
->buffer
;
6249 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6250 is the JPEG data source manager. */
6253 our_stdio_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6255 struct jpeg_stdio_mgr
*src
;
6256 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6258 while (num_bytes
> 0 && !src
->finished
)
6260 if (num_bytes
<= src
->mgr
.bytes_in_buffer
)
6262 src
->mgr
.bytes_in_buffer
-= num_bytes
;
6263 src
->mgr
.next_input_byte
+= num_bytes
;
6268 num_bytes
-= src
->mgr
.bytes_in_buffer
;
6269 src
->mgr
.bytes_in_buffer
= 0;
6270 src
->mgr
.next_input_byte
= NULL
;
6272 our_stdio_fill_input_buffer (cinfo
);
6278 /* Set up the JPEG lib for reading an image from a FILE *.
6279 CINFO is the decompression info structure created for
6280 reading the image. */
6283 jpeg_file_src (j_decompress_ptr cinfo
, FILE *fp
)
6285 struct jpeg_stdio_mgr
*src
;
6287 if (cinfo
->src
!= NULL
)
6288 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6291 /* First time for this JPEG object? */
6292 cinfo
->src
= (struct jpeg_source_mgr
*)
6293 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6294 sizeof (struct jpeg_stdio_mgr
));
6295 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6296 src
->buffer
= (JOCTET
*)
6297 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6298 JPEG_STDIO_BUFFER_SIZE
);
6303 src
->mgr
.init_source
= our_common_init_source
;
6304 src
->mgr
.fill_input_buffer
= our_stdio_fill_input_buffer
;
6305 src
->mgr
.skip_input_data
= our_stdio_skip_input_data
;
6306 src
->mgr
.resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6307 src
->mgr
.term_source
= our_common_term_source
;
6308 src
->mgr
.bytes_in_buffer
= 0;
6309 src
->mgr
.next_input_byte
= NULL
;
6313 /* Load image IMG for use on frame F. Patterned after example.c
6314 from the JPEG lib. */
6317 jpeg_load (struct frame
*f
, struct image
*img
)
6319 struct jpeg_decompress_struct cinfo
;
6320 struct my_jpeg_error_mgr mgr
;
6321 Lisp_Object file
, specified_file
;
6322 Lisp_Object specified_data
;
6323 FILE * volatile fp
= NULL
;
6325 int row_stride
, x
, y
;
6326 XImagePtr ximg
= NULL
;
6328 unsigned long *colors
;
6331 /* Open the JPEG file. */
6332 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6333 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6335 if (NILP (specified_data
))
6337 file
= x_find_image_file (specified_file
);
6338 if (!STRINGP (file
))
6340 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6344 fp
= fopen (SSDATA (file
), "rb");
6347 image_error ("Cannot open `%s'", file
, Qnil
);
6351 else if (!STRINGP (specified_data
))
6353 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6357 /* Customize libjpeg's error handling to call my_error_exit when an
6358 error is detected. This function will perform a longjmp. */
6359 cinfo
.err
= fn_jpeg_std_error (&mgr
.pub
);
6360 mgr
.pub
.error_exit
= my_error_exit
;
6362 if ((rc
= setjmp (mgr
.setjmp_buffer
)) != 0)
6366 /* Called from my_error_exit. Display a JPEG error. */
6367 char buf
[JMSG_LENGTH_MAX
];
6368 cinfo
.err
->format_message ((j_common_ptr
) &cinfo
, buf
);
6369 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
6370 build_string (buf
));
6373 /* Close the input file and destroy the JPEG object. */
6375 fclose ((FILE *) fp
);
6376 fn_jpeg_destroy_decompress (&cinfo
);
6378 /* If we already have an XImage, free that. */
6379 x_destroy_x_image (ximg
);
6381 /* Free pixmap and colors. */
6382 x_clear_image (f
, img
);
6386 /* Create the JPEG decompression object. Let it read from fp.
6387 Read the JPEG image header. */
6388 fn_jpeg_CreateDecompress (&cinfo
, JPEG_LIB_VERSION
, sizeof (cinfo
));
6390 if (NILP (specified_data
))
6391 jpeg_file_src (&cinfo
, (FILE *) fp
);
6393 jpeg_memory_src (&cinfo
, SDATA (specified_data
),
6394 SBYTES (specified_data
));
6396 fn_jpeg_read_header (&cinfo
, 1);
6398 /* Customize decompression so that color quantization will be used.
6399 Start decompression. */
6400 cinfo
.quantize_colors
= 1;
6401 fn_jpeg_start_decompress (&cinfo
);
6402 width
= img
->width
= cinfo
.output_width
;
6403 height
= img
->height
= cinfo
.output_height
;
6405 if (!check_image_size (f
, width
, height
))
6407 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6408 longjmp (mgr
.setjmp_buffer
, 2);
6411 /* Create X image and pixmap. */
6412 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
6413 longjmp (mgr
.setjmp_buffer
, 2);
6415 /* Allocate colors. When color quantization is used,
6416 cinfo.actual_number_of_colors has been set with the number of
6417 colors generated, and cinfo.colormap is a two-dimensional array
6418 of color indices in the range 0..cinfo.actual_number_of_colors.
6419 No more than 255 colors will be generated. */
6423 if (cinfo
.out_color_components
> 2)
6424 ir
= 0, ig
= 1, ib
= 2;
6425 else if (cinfo
.out_color_components
> 1)
6426 ir
= 0, ig
= 1, ib
= 0;
6428 ir
= 0, ig
= 0, ib
= 0;
6430 /* Use the color table mechanism because it handles colors that
6431 cannot be allocated nicely. Such colors will be replaced with
6432 a default color, and we don't have to care about which colors
6433 can be freed safely, and which can't. */
6434 init_color_table ();
6435 colors
= (unsigned long *) alloca (cinfo
.actual_number_of_colors
6438 for (i
= 0; i
< cinfo
.actual_number_of_colors
; ++i
)
6440 /* Multiply RGB values with 255 because X expects RGB values
6441 in the range 0..0xffff. */
6442 int r
= cinfo
.colormap
[ir
][i
] << 8;
6443 int g
= cinfo
.colormap
[ig
][i
] << 8;
6444 int b
= cinfo
.colormap
[ib
][i
] << 8;
6445 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
6448 #ifdef COLOR_TABLE_SUPPORT
6449 /* Remember those colors actually allocated. */
6450 img
->colors
= colors_in_color_table (&img
->ncolors
);
6451 free_color_table ();
6452 #endif /* COLOR_TABLE_SUPPORT */
6456 row_stride
= width
* cinfo
.output_components
;
6457 buffer
= cinfo
.mem
->alloc_sarray ((j_common_ptr
) &cinfo
, JPOOL_IMAGE
,
6459 for (y
= 0; y
< height
; ++y
)
6461 fn_jpeg_read_scanlines (&cinfo
, buffer
, 1);
6462 for (x
= 0; x
< cinfo
.output_width
; ++x
)
6463 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
6467 fn_jpeg_finish_decompress (&cinfo
);
6468 fn_jpeg_destroy_decompress (&cinfo
);
6470 fclose ((FILE *) fp
);
6472 /* Maybe fill in the background field while we have ximg handy. */
6473 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6474 /* Casting avoids a GCC warning. */
6475 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6477 /* Put the image into the pixmap. */
6478 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6479 x_destroy_x_image (ximg
);
6483 #else /* HAVE_JPEG */
6487 jpeg_load (struct frame
*f
, struct image
*img
)
6489 return ns_load_image (f
, img
,
6490 image_spec_value (img
->spec
, QCfile
, NULL
),
6491 image_spec_value (img
->spec
, QCdata
, NULL
));
6493 #endif /* HAVE_NS */
6495 #endif /* !HAVE_JPEG */
6499 /***********************************************************************
6501 ***********************************************************************/
6503 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6505 static int tiff_image_p (Lisp_Object object
);
6506 static int tiff_load (struct frame
*f
, struct image
*img
);
6508 /* The symbol `tiff' identifying images of this type. */
6512 /* Indices of image specification fields in tiff_format, below. */
6514 enum tiff_keyword_index
6523 TIFF_HEURISTIC_MASK
,
6530 /* Vector of image_keyword structures describing the format
6531 of valid user-defined image specifications. */
6533 static const struct image_keyword tiff_format
[TIFF_LAST
] =
6535 {":type", IMAGE_SYMBOL_VALUE
, 1},
6536 {":data", IMAGE_STRING_VALUE
, 0},
6537 {":file", IMAGE_STRING_VALUE
, 0},
6538 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6539 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6540 {":relief", IMAGE_INTEGER_VALUE
, 0},
6541 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6542 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6543 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6544 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
6545 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
6548 /* Structure describing the image type `tiff'. */
6550 static struct image_type tiff_type
=
6559 /* Return non-zero if OBJECT is a valid TIFF image specification. */
6562 tiff_image_p (Lisp_Object object
)
6564 struct image_keyword fmt
[TIFF_LAST
];
6565 memcpy (fmt
, tiff_format
, sizeof fmt
);
6567 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
))
6570 /* Must specify either the :data or :file keyword. */
6571 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
6574 #endif /* HAVE_TIFF || HAVE_NS */
6582 /* TIFF library details. */
6583 DEF_IMGLIB_FN (TIFFErrorHandler
, TIFFSetErrorHandler
, (TIFFErrorHandler
));
6584 DEF_IMGLIB_FN (TIFFErrorHandler
, TIFFSetWarningHandler
, (TIFFErrorHandler
));
6585 DEF_IMGLIB_FN (TIFF
*, TIFFOpen
, (const char *, const char *));
6586 DEF_IMGLIB_FN (TIFF
*, TIFFClientOpen
, (const char *, const char *, thandle_t
,
6587 TIFFReadWriteProc
, TIFFReadWriteProc
,
6588 TIFFSeekProc
, TIFFCloseProc
, TIFFSizeProc
,
6589 TIFFMapFileProc
, TIFFUnmapFileProc
));
6590 DEF_IMGLIB_FN (int, TIFFGetField
, (TIFF
*, ttag_t
, ...));
6591 DEF_IMGLIB_FN (int, TIFFReadRGBAImage
, (TIFF
*, uint32
, uint32
, uint32
*, int));
6592 DEF_IMGLIB_FN (void, TIFFClose
, (TIFF
*));
6593 DEF_IMGLIB_FN (int, TIFFSetDirectory
, (TIFF
*, tdir_t
));
6596 init_tiff_functions (Lisp_Object libraries
)
6600 if (!(library
= w32_delayed_load (libraries
, Qtiff
)))
6603 LOAD_IMGLIB_FN (library
, TIFFSetErrorHandler
);
6604 LOAD_IMGLIB_FN (library
, TIFFSetWarningHandler
);
6605 LOAD_IMGLIB_FN (library
, TIFFOpen
);
6606 LOAD_IMGLIB_FN (library
, TIFFClientOpen
);
6607 LOAD_IMGLIB_FN (library
, TIFFGetField
);
6608 LOAD_IMGLIB_FN (library
, TIFFReadRGBAImage
);
6609 LOAD_IMGLIB_FN (library
, TIFFClose
);
6610 LOAD_IMGLIB_FN (library
, TIFFSetDirectory
);
6616 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6617 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6618 #define fn_TIFFOpen TIFFOpen
6619 #define fn_TIFFClientOpen TIFFClientOpen
6620 #define fn_TIFFGetField TIFFGetField
6621 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6622 #define fn_TIFFClose TIFFClose
6623 #define fn_TIFFSetDirectory TIFFSetDirectory
6624 #endif /* HAVE_NTGUI */
6627 /* Reading from a memory buffer for TIFF images Based on the PNG
6628 memory source, but we have to provide a lot of extra functions.
6631 We really only need to implement read and seek, but I am not
6632 convinced that the TIFF library is smart enough not to destroy
6633 itself if we only hand it the function pointers we need to
6638 unsigned char *bytes
;
6645 tiff_read_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6647 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6649 if (size
> src
->len
- src
->index
)
6651 memcpy (buf
, src
->bytes
+ src
->index
, size
);
6657 tiff_write_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6663 tiff_seek_in_memory (thandle_t data
, toff_t off
, int whence
)
6665 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6670 case SEEK_SET
: /* Go from beginning of source. */
6674 case SEEK_END
: /* Go from end of source. */
6675 idx
= src
->len
+ off
;
6678 case SEEK_CUR
: /* Go from current position. */
6679 idx
= src
->index
+ off
;
6682 default: /* Invalid `whence'. */
6686 if (idx
> src
->len
|| idx
< 0)
6694 tiff_close_memory (thandle_t data
)
6701 tiff_mmap_memory (thandle_t data
, tdata_t
*pbase
, toff_t
*psize
)
6703 /* It is already _IN_ memory. */
6708 tiff_unmap_memory (thandle_t data
, tdata_t base
, toff_t size
)
6710 /* We don't need to do this. */
6714 tiff_size_of_memory (thandle_t data
)
6716 return ((tiff_memory_source
*) data
)->len
;
6721 tiff_error_handler (const char *title
, const char *format
, va_list ap
)
6726 len
= sprintf (buf
, "TIFF error: %s ", title
);
6727 vsprintf (buf
+ len
, format
, ap
);
6728 add_to_log (buf
, Qnil
, Qnil
);
6733 tiff_warning_handler (const char *title
, const char *format
, va_list ap
)
6738 len
= sprintf (buf
, "TIFF warning: %s ", title
);
6739 vsprintf (buf
+ len
, format
, ap
);
6740 add_to_log (buf
, Qnil
, Qnil
);
6744 /* Load TIFF image IMG for use on frame F. Value is non-zero if
6748 tiff_load (struct frame
*f
, struct image
*img
)
6750 Lisp_Object file
, specified_file
;
6751 Lisp_Object specified_data
;
6753 int width
, height
, x
, y
, count
;
6757 tiff_memory_source memsrc
;
6760 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6761 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6763 fn_TIFFSetErrorHandler (tiff_error_handler
);
6764 fn_TIFFSetWarningHandler (tiff_warning_handler
);
6766 if (NILP (specified_data
))
6768 /* Read from a file */
6769 file
= x_find_image_file (specified_file
);
6770 if (!STRINGP (file
))
6772 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6776 /* Try to open the image file. */
6777 tiff
= fn_TIFFOpen (SSDATA (file
), "r");
6780 image_error ("Cannot open `%s'", file
, Qnil
);
6786 if (!STRINGP (specified_data
))
6788 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6792 /* Memory source! */
6793 memsrc
.bytes
= SDATA (specified_data
);
6794 memsrc
.len
= SBYTES (specified_data
);
6797 tiff
= fn_TIFFClientOpen ("memory_source", "r", (thandle_t
)&memsrc
,
6798 (TIFFReadWriteProc
) tiff_read_from_memory
,
6799 (TIFFReadWriteProc
) tiff_write_from_memory
,
6800 tiff_seek_in_memory
,
6802 tiff_size_of_memory
,
6808 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
6813 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
6814 if (INTEGERP (image
))
6816 int ino
= XFASTINT (image
);
6817 if (!fn_TIFFSetDirectory (tiff
, ino
))
6819 image_error ("Invalid image number `%s' in image `%s'",
6821 fn_TIFFClose (tiff
);
6826 /* Get width and height of the image, and allocate a raster buffer
6827 of width x height 32-bit values. */
6828 fn_TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
6829 fn_TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
6831 if (!check_image_size (f
, width
, height
))
6833 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6834 fn_TIFFClose (tiff
);
6838 buf
= (uint32
*) xmalloc (width
* height
* sizeof *buf
);
6840 rc
= fn_TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
6842 /* Count the number of images in the file. */
6843 for (count
= 1, rc2
= 1; rc2
; count
++)
6844 rc2
= fn_TIFFSetDirectory (tiff
, count
);
6847 img
->data
.lisp_val
= Fcons (Qcount
,
6848 Fcons (make_number (count
),
6849 img
->data
.lisp_val
));
6851 fn_TIFFClose (tiff
);
6854 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
6859 /* Create the X image and pixmap. */
6860 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
6866 /* Initialize the color table. */
6867 init_color_table ();
6869 /* Process the pixel raster. Origin is in the lower-left corner. */
6870 for (y
= 0; y
< height
; ++y
)
6872 uint32
*row
= buf
+ y
* width
;
6874 for (x
= 0; x
< width
; ++x
)
6876 uint32 abgr
= row
[x
];
6877 int r
= TIFFGetR (abgr
) << 8;
6878 int g
= TIFFGetG (abgr
) << 8;
6879 int b
= TIFFGetB (abgr
) << 8;
6880 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
6884 #ifdef COLOR_TABLE_SUPPORT
6885 /* Remember the colors allocated for the image. Free the color table. */
6886 img
->colors
= colors_in_color_table (&img
->ncolors
);
6887 free_color_table ();
6888 #endif /* COLOR_TABLE_SUPPORT */
6891 img
->height
= height
;
6893 /* Maybe fill in the background field while we have ximg handy. */
6894 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6895 /* Casting avoids a GCC warning on W32. */
6896 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6898 /* Put the image into the pixmap, then free the X image and its buffer. */
6899 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6900 x_destroy_x_image (ximg
);
6906 #else /* HAVE_TIFF */
6910 tiff_load (struct frame
*f
, struct image
*img
)
6912 return ns_load_image (f
, img
,
6913 image_spec_value (img
->spec
, QCfile
, NULL
),
6914 image_spec_value (img
->spec
, QCdata
, NULL
));
6916 #endif /* HAVE_NS */
6918 #endif /* !HAVE_TIFF */
6922 /***********************************************************************
6924 ***********************************************************************/
6926 #if defined (HAVE_GIF) || defined (HAVE_NS)
6928 static int gif_image_p (Lisp_Object object
);
6929 static int gif_load (struct frame
*f
, struct image
*img
);
6930 static void gif_clear_image (struct frame
*f
, struct image
*img
);
6932 /* The symbol `gif' identifying images of this type. */
6936 /* Indices of image specification fields in gif_format, below. */
6938 enum gif_keyword_index
6954 /* Vector of image_keyword structures describing the format
6955 of valid user-defined image specifications. */
6957 static const struct image_keyword gif_format
[GIF_LAST
] =
6959 {":type", IMAGE_SYMBOL_VALUE
, 1},
6960 {":data", IMAGE_STRING_VALUE
, 0},
6961 {":file", IMAGE_STRING_VALUE
, 0},
6962 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6963 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6964 {":relief", IMAGE_INTEGER_VALUE
, 0},
6965 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6966 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6967 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6968 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
6969 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
6972 /* Structure describing the image type `gif'. */
6974 static struct image_type gif_type
=
6983 /* Free X resources of GIF image IMG which is used on frame F. */
6986 gif_clear_image (struct frame
*f
, struct image
*img
)
6988 /* IMG->data.ptr_val may contain metadata with extension data. */
6989 img
->data
.lisp_val
= Qnil
;
6990 x_clear_image (f
, img
);
6993 /* Return non-zero if OBJECT is a valid GIF image specification. */
6996 gif_image_p (Lisp_Object object
)
6998 struct image_keyword fmt
[GIF_LAST
];
6999 memcpy (fmt
, gif_format
, sizeof fmt
);
7001 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
))
7004 /* Must specify either the :data or :file keyword. */
7005 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
7008 #endif /* HAVE_GIF */
7012 #if defined (HAVE_NTGUI)
7013 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7014 Undefine before redefining to avoid a preprocessor warning. */
7018 /* avoid conflict with QuickdrawText.h */
7019 #define DrawText gif_DrawText
7020 #include <gif_lib.h>
7023 #else /* HAVE_NTGUI */
7025 #include <gif_lib.h>
7027 #endif /* HAVE_NTGUI */
7032 /* GIF library details. */
7033 DEF_IMGLIB_FN (int, DGifCloseFile
, (GifFileType
*));
7034 DEF_IMGLIB_FN (int, DGifSlurp
, (GifFileType
*));
7035 DEF_IMGLIB_FN (GifFileType
*, DGifOpen
, (void *, InputFunc
));
7036 DEF_IMGLIB_FN (GifFileType
*, DGifOpenFileName
, (const char *));
7039 init_gif_functions (Lisp_Object libraries
)
7043 if (!(library
= w32_delayed_load (libraries
, Qgif
)))
7046 LOAD_IMGLIB_FN (library
, DGifCloseFile
);
7047 LOAD_IMGLIB_FN (library
, DGifSlurp
);
7048 LOAD_IMGLIB_FN (library
, DGifOpen
);
7049 LOAD_IMGLIB_FN (library
, DGifOpenFileName
);
7055 #define fn_DGifCloseFile DGifCloseFile
7056 #define fn_DGifSlurp DGifSlurp
7057 #define fn_DGifOpen DGifOpen
7058 #define fn_DGifOpenFileName DGifOpenFileName
7060 #endif /* HAVE_NTGUI */
7062 /* Reading a GIF image from memory
7063 Based on the PNG memory stuff to a certain extent. */
7067 unsigned char *bytes
;
7073 /* Make the current memory source available to gif_read_from_memory.
7074 It's done this way because not all versions of libungif support
7075 a UserData field in the GifFileType structure. */
7076 static gif_memory_source
*current_gif_memory_src
;
7079 gif_read_from_memory (GifFileType
*file
, GifByteType
*buf
, int len
)
7081 gif_memory_source
*src
= current_gif_memory_src
;
7083 if (len
> src
->len
- src
->index
)
7086 memcpy (buf
, src
->bytes
+ src
->index
, len
);
7092 /* Load GIF image IMG for use on frame F. Value is non-zero if
7095 static const int interlace_start
[] = {0, 4, 2, 1};
7096 static const int interlace_increment
[] = {8, 8, 4, 2};
7098 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7101 gif_load (struct frame
*f
, struct image
*img
)
7103 Lisp_Object file
, specified_file
;
7104 Lisp_Object specified_data
;
7105 int rc
, width
, height
, x
, y
, i
;
7106 boolean transparent_p
= 0;
7108 ColorMapObject
*gif_color_map
;
7109 unsigned long pixel_colors
[256];
7112 int ino
, image_height
, image_width
;
7113 gif_memory_source memsrc
;
7114 unsigned char *raster
;
7115 unsigned int transparency_color_index
IF_LINT (= 0);
7117 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
7118 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7120 if (NILP (specified_data
))
7122 file
= x_find_image_file (specified_file
);
7123 if (!STRINGP (file
))
7125 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
7129 /* Open the GIF file. */
7130 gif
= fn_DGifOpenFileName (SSDATA (file
));
7133 image_error ("Cannot open `%s'", file
, Qnil
);
7139 if (!STRINGP (specified_data
))
7141 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
7145 /* Read from memory! */
7146 current_gif_memory_src
= &memsrc
;
7147 memsrc
.bytes
= SDATA (specified_data
);
7148 memsrc
.len
= SBYTES (specified_data
);
7151 gif
= fn_DGifOpen (&memsrc
, gif_read_from_memory
);
7154 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
7159 /* Before reading entire contents, check the declared image size. */
7160 if (!check_image_size (f
, gif
->SWidth
, gif
->SHeight
))
7162 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7163 fn_DGifCloseFile (gif
);
7167 /* Read entire contents. */
7168 rc
= fn_DGifSlurp (gif
);
7169 if (rc
== GIF_ERROR
)
7171 image_error ("Error reading `%s'", img
->spec
, Qnil
);
7172 fn_DGifCloseFile (gif
);
7176 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
7177 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
7178 if (ino
>= gif
->ImageCount
)
7180 image_error ("Invalid image number `%s' in image `%s'",
7182 fn_DGifCloseFile (gif
);
7186 for (i
= 0; i
< gif
->SavedImages
[ino
].ExtensionBlockCount
; i
++)
7187 if ((gif
->SavedImages
[ino
].ExtensionBlocks
[i
].Function
7188 == GIF_LOCAL_DESCRIPTOR_EXTENSION
)
7189 && gif
->SavedImages
[ino
].ExtensionBlocks
[i
].ByteCount
== 4
7190 /* Transparency enabled? */
7191 && gif
->SavedImages
[ino
].ExtensionBlocks
[i
].Bytes
[0] & 1)
7194 transparency_color_index
7195 = (unsigned char) gif
->SavedImages
[ino
].ExtensionBlocks
[i
].Bytes
[3];
7198 img
->corners
[TOP_CORNER
] = gif
->SavedImages
[ino
].ImageDesc
.Top
;
7199 img
->corners
[LEFT_CORNER
] = gif
->SavedImages
[ino
].ImageDesc
.Left
;
7200 image_height
= gif
->SavedImages
[ino
].ImageDesc
.Height
;
7201 img
->corners
[BOT_CORNER
] = img
->corners
[TOP_CORNER
] + image_height
;
7202 image_width
= gif
->SavedImages
[ino
].ImageDesc
.Width
;
7203 img
->corners
[RIGHT_CORNER
] = img
->corners
[LEFT_CORNER
] + image_width
;
7205 width
= img
->width
= max (gif
->SWidth
,
7206 max (gif
->Image
.Left
+ gif
->Image
.Width
,
7207 img
->corners
[RIGHT_CORNER
]));
7208 height
= img
->height
= max (gif
->SHeight
,
7209 max (gif
->Image
.Top
+ gif
->Image
.Height
,
7210 img
->corners
[BOT_CORNER
]));
7212 if (!check_image_size (f
, width
, height
))
7214 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7215 fn_DGifCloseFile (gif
);
7219 /* Create the X image and pixmap. */
7220 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
7222 fn_DGifCloseFile (gif
);
7226 /* Allocate colors. */
7227 gif_color_map
= gif
->SavedImages
[ino
].ImageDesc
.ColorMap
;
7229 gif_color_map
= gif
->SColorMap
;
7230 init_color_table ();
7231 memset (pixel_colors
, 0, sizeof pixel_colors
);
7234 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
7236 if (transparent_p
&& transparency_color_index
== i
)
7238 Lisp_Object specified_bg
7239 = image_spec_value (img
->spec
, QCbackground
, NULL
);
7240 pixel_colors
[i
] = STRINGP (specified_bg
)
7241 ? x_alloc_image_color (f
, img
, specified_bg
,
7242 FRAME_BACKGROUND_PIXEL (f
))
7243 : FRAME_BACKGROUND_PIXEL (f
);
7247 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
7248 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
7249 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
7250 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
7254 #ifdef COLOR_TABLE_SUPPORT
7255 img
->colors
= colors_in_color_table (&img
->ncolors
);
7256 free_color_table ();
7257 #endif /* COLOR_TABLE_SUPPORT */
7259 /* Clear the part of the screen image that are not covered by
7260 the image from the GIF file. Full animated GIF support
7261 requires more than can be done here (see the gif89 spec,
7262 disposal methods). Let's simply assume that the part
7263 not covered by a sub-image is in the frame's background color. */
7264 for (y
= 0; y
< img
->corners
[TOP_CORNER
]; ++y
)
7265 for (x
= 0; x
< width
; ++x
)
7266 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7268 for (y
= img
->corners
[BOT_CORNER
]; y
< height
; ++y
)
7269 for (x
= 0; x
< width
; ++x
)
7270 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7272 for (y
= img
->corners
[TOP_CORNER
]; y
< img
->corners
[BOT_CORNER
]; ++y
)
7274 for (x
= 0; x
< img
->corners
[LEFT_CORNER
]; ++x
)
7275 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7276 for (x
= img
->corners
[RIGHT_CORNER
]; x
< width
; ++x
)
7277 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7280 /* Read the GIF image into the X image. We use a local variable
7281 `raster' here because RasterBits below is a char *, and invites
7282 problems with bytes >= 0x80. */
7283 raster
= (unsigned char *) gif
->SavedImages
[ino
].RasterBits
;
7285 if (gif
->SavedImages
[ino
].ImageDesc
.Interlace
)
7288 int row
= interlace_start
[0];
7292 for (y
= 0; y
< image_height
; y
++)
7294 if (row
>= image_height
)
7296 row
= interlace_start
[++pass
];
7297 while (row
>= image_height
)
7298 row
= interlace_start
[++pass
];
7301 for (x
= 0; x
< image_width
; x
++)
7303 int c
= raster
[(y
* image_width
) + x
];
7304 XPutPixel (ximg
, x
+ img
->corners
[LEFT_CORNER
],
7305 row
+ img
->corners
[TOP_CORNER
], pixel_colors
[c
]);
7308 row
+= interlace_increment
[pass
];
7313 for (y
= 0; y
< image_height
; ++y
)
7314 for (x
= 0; x
< image_width
; ++x
)
7316 int c
= raster
[y
* image_width
+ x
];
7317 XPutPixel (ximg
, x
+ img
->corners
[LEFT_CORNER
],
7318 y
+ img
->corners
[TOP_CORNER
], pixel_colors
[c
]);
7322 /* Save GIF image extension data for `image-metadata'.
7323 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7324 img
->data
.lisp_val
= Qnil
;
7325 if (gif
->SavedImages
[ino
].ExtensionBlockCount
> 0)
7327 ExtensionBlock
*ext
= gif
->SavedImages
[ino
].ExtensionBlocks
;
7328 for (i
= 0; i
< gif
->SavedImages
[ino
].ExtensionBlockCount
; i
++, ext
++)
7329 /* Append (... FUNCTION "BYTES") */
7330 img
->data
.lisp_val
= Fcons (make_unibyte_string (ext
->Bytes
, ext
->ByteCount
),
7331 Fcons (make_number (ext
->Function
),
7332 img
->data
.lisp_val
));
7333 img
->data
.lisp_val
= Fcons (Qextension_data
,
7334 Fcons (Fnreverse (img
->data
.lisp_val
),
7337 if (gif
->ImageCount
> 1)
7338 img
->data
.lisp_val
= Fcons (Qcount
,
7339 Fcons (make_number (gif
->ImageCount
),
7340 img
->data
.lisp_val
));
7342 fn_DGifCloseFile (gif
);
7344 /* Maybe fill in the background field while we have ximg handy. */
7345 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7346 /* Casting avoids a GCC warning. */
7347 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7349 /* Put the image into the pixmap, then free the X image and its buffer. */
7350 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7351 x_destroy_x_image (ximg
);
7356 #else /* !HAVE_GIF */
7360 gif_load (struct frame
*f
, struct image
*img
)
7362 return ns_load_image (f
, img
,
7363 image_spec_value (img
->spec
, QCfile
, NULL
),
7364 image_spec_value (img
->spec
, QCdata
, NULL
));
7366 #endif /* HAVE_NS */
7368 #endif /* HAVE_GIF */
7371 /***********************************************************************
7373 ***********************************************************************/
7374 #if defined (HAVE_IMAGEMAGICK)
7376 /* The symbol `imagemagick' identifying images of this type. */
7378 Lisp_Object Qimagemagick
;
7379 /* Indices of image specification fields in imagemagick_format, below. */
7381 enum imagemagick_keyword_index
7389 IMAGEMAGICK_ALGORITHM
,
7390 IMAGEMAGICK_HEURISTIC_MASK
,
7392 IMAGEMAGICK_BACKGROUND
,
7395 IMAGEMAGICK_ROTATION
,
7400 /* Vector of image_keyword structures describing the format
7401 of valid user-defined image specifications. */
7403 static struct image_keyword imagemagick_format
[IMAGEMAGICK_LAST
] =
7405 {":type", IMAGE_SYMBOL_VALUE
, 1},
7406 {":data", IMAGE_STRING_VALUE
, 0},
7407 {":file", IMAGE_STRING_VALUE
, 0},
7408 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7409 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
7410 {":relief", IMAGE_INTEGER_VALUE
, 0},
7411 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7412 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7413 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7414 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
7415 {":height", IMAGE_INTEGER_VALUE
, 0},
7416 {":width", IMAGE_INTEGER_VALUE
, 0},
7417 {":rotation", IMAGE_NUMBER_VALUE
, 0},
7418 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
7420 /* Free X resources of imagemagick image IMG which is used on frame F. */
7423 imagemagick_clear_image (struct frame
*f
,
7426 x_clear_image (f
, img
);
7431 /* Return non-zero if OBJECT is a valid IMAGEMAGICK image specification. Do
7432 this by calling parse_image_spec and supplying the keywords that
7433 identify the IMAGEMAGICK format. */
7436 imagemagick_image_p (Lisp_Object object
)
7438 struct image_keyword fmt
[IMAGEMAGICK_LAST
];
7439 memcpy (fmt
, imagemagick_format
, sizeof fmt
);
7441 if (!parse_image_spec (object
, fmt
, IMAGEMAGICK_LAST
, Qimagemagick
))
7444 /* Must specify either the :data or :file keyword. */
7445 return fmt
[IMAGEMAGICK_FILE
].count
+ fmt
[IMAGEMAGICK_DATA
].count
== 1;
7448 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7449 Therefore rename the function so it doesnt collide with ImageMagick. */
7450 #define DrawRectangle DrawRectangleGif
7451 #include <wand/MagickWand.h>
7453 /* imagemagick_load_image is a helper function for imagemagick_load,
7454 which does the actual loading given contents and size, apart from
7455 frame and image structures, passed from imagemagick_load.
7457 Uses librimagemagick to do most of the image processing.
7459 non-zero when successful.
7463 imagemagick_load_image (/* Pointer to emacs frame structure. */
7465 /* Pointer to emacs image structure. */
7467 /* String containing the IMAGEMAGICK data to
7469 unsigned char *contents
,
7470 /* Size of data in bytes. */
7472 /* Filename, either pass filename or
7474 unsigned char *filename
)
7476 unsigned long width
;
7477 unsigned long height
;
7483 Lisp_Object specified_bg
;
7488 MagickWand
*image_wand
;
7489 MagickWand
*ping_wand
;
7490 PixelIterator
*iterator
;
7492 MagickPixelPacket pixel
;
7495 Lisp_Object crop
, geometry
;
7497 int desired_width
, desired_height
;
7499 int imagemagick_rendermethod
;
7501 ImageInfo
*image_info
;
7502 ExceptionInfo
*exception
;
7506 /* Handle image index for image types who can contain more than one
7507 image. Interface :index is same as for GIF. First we "ping" the
7508 image to see how many sub-images it contains. Pinging is faster
7509 than loading the image to find out things about it. */
7511 /* `MagickWandGenesis' initializes the imagemagick environment. */
7512 MagickWandGenesis ();
7513 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
7514 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
7515 ping_wand
= NewMagickWand ();
7516 MagickSetResolution (ping_wand
, 2, 2);
7517 if (filename
!= NULL
)
7519 status
= MagickPingImage (ping_wand
, filename
);
7523 status
= MagickPingImageBlob (ping_wand
, contents
, size
);
7526 if (ino
>= MagickGetNumberImages (ping_wand
))
7528 image_error ("Invalid image number `%s' in image `%s'",
7530 DestroyMagickWand (ping_wand
);
7534 if (MagickGetNumberImages(ping_wand
) > 1)
7535 img
->data
.lisp_val
=
7537 Fcons (make_number (MagickGetNumberImages (ping_wand
)),
7538 img
->data
.lisp_val
));
7540 DestroyMagickWand (ping_wand
);
7542 /* Now, after pinging, we know how many images are inside the
7543 file. If its not a bundle, just one. */
7545 if (filename
!= NULL
)
7547 image_info
= CloneImageInfo ((ImageInfo
*) NULL
);
7548 (void) strcpy (image_info
->filename
, filename
);
7549 image_info
->number_scenes
= 1;
7550 image_info
->scene
= ino
;
7551 exception
= AcquireExceptionInfo ();
7553 im_image
= ReadImage (image_info
, exception
);
7554 DestroyExceptionInfo (exception
);
7556 if (im_image
!= NULL
)
7558 image_wand
= NewMagickWandFromImage (im_image
);
7559 DestroyImage(im_image
);
7560 status
= MagickTrue
;
7563 status
= MagickFalse
;
7567 image_wand
= NewMagickWand ();
7568 status
= MagickReadImageBlob (image_wand
, contents
, size
);
7571 if (status
== MagickFalse
) goto imagemagick_error
;
7573 /* If width and/or height is set in the display spec assume we want
7574 to scale to those values. if either h or w is unspecified, the
7575 unspecified should be calculated from the specified to preserve
7578 value
= image_spec_value (img
->spec
, QCwidth
, NULL
);
7579 desired_width
= (INTEGERP (value
) ? XFASTINT (value
) : -1);
7580 value
= image_spec_value (img
->spec
, QCheight
, NULL
);
7581 desired_height
= (INTEGERP (value
) ? XFASTINT (value
) : -1);
7583 height
= MagickGetImageHeight (image_wand
);
7584 width
= MagickGetImageWidth (image_wand
);
7586 if(desired_width
!= -1 && desired_height
== -1)
7588 /* w known, calculate h. */
7589 desired_height
= (double) desired_width
/ width
* height
;
7591 if(desired_width
== -1 && desired_height
!= -1)
7593 /* h known, calculate w. */
7594 desired_width
= (double) desired_height
/ height
* width
;
7596 if(desired_width
!= -1 && desired_height
!= -1)
7598 status
= MagickScaleImage (image_wand
, desired_width
, desired_height
);
7599 if (status
== MagickFalse
)
7601 image_error ("Imagemagick scale failed", Qnil
, Qnil
);
7602 goto imagemagick_error
;
7607 /* crop behaves similar to image slicing in Emacs but is more memory
7609 crop
= image_spec_value (img
->spec
, QCcrop
, NULL
);
7611 if (CONSP (crop
) && INTEGERP (XCAR (crop
)))
7613 /* After some testing, it seems MagickCropImage is the fastest
7614 crop function in ImageMagick. This crop function seems to do
7615 less copying than the alternatives, but it still reads the
7616 entire image into memory before croping, which is aparently
7617 difficult to avoid when using imagemagick. */
7620 w
= XFASTINT (XCAR (crop
));
7622 if (CONSP (crop
) && INTEGERP (XCAR (crop
)))
7624 h
= XFASTINT (XCAR (crop
));
7626 if (CONSP (crop
) && INTEGERP (XCAR (crop
)))
7628 x
= XFASTINT (XCAR (crop
));
7630 if (CONSP (crop
) && INTEGERP (XCAR (crop
)))
7632 y
= XFASTINT (XCAR (crop
));
7633 MagickCropImage (image_wand
, w
, h
, x
, y
);
7639 /* Furthermore :rotation. we need background color and angle for
7642 TODO background handling for rotation specified_bg =
7643 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
7645 value
= image_spec_value (img
->spec
, QCrotation
, NULL
);
7648 PixelWand
* background
= NewPixelWand ();
7649 PixelSetColor (background
, "#ffffff");/*TODO remove hardcode*/
7651 rotation
= extract_float (value
);
7653 status
= MagickRotateImage (image_wand
, background
, rotation
);
7654 DestroyPixelWand (background
);
7655 if (status
== MagickFalse
)
7657 image_error ("Imagemagick image rotate failed", Qnil
, Qnil
);
7658 goto imagemagick_error
;
7662 /* Finaly we are done manipulating the image, figure out resulting
7663 width, height, and then transfer ownerwship to Emacs. */
7664 height
= MagickGetImageHeight (image_wand
);
7665 width
= MagickGetImageWidth (image_wand
);
7667 if (! check_image_size (f
, width
, height
))
7669 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7670 goto imagemagick_error
;
7673 /* We can now get a valid pixel buffer from the imagemagick file, if all
7676 init_color_table ();
7677 imagemagick_rendermethod
= (INTEGERP (Vimagemagick_render_type
)
7678 ? XFASTINT (Vimagemagick_render_type
) : 0);
7679 if (imagemagick_rendermethod
== 0)
7681 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7682 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
7683 &ximg
, &img
->pixmap
))
7685 #ifdef COLOR_TABLE_SUPPORT
7686 free_color_table ();
7688 image_error("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
7689 goto imagemagick_error
;
7692 /* Copy imagegmagick image to x with primitive yet robust pixel
7693 pusher loop. This has been tested a lot with many different
7696 /* Copy pixels from the imagemagick image structure to the x image map. */
7697 iterator
= NewPixelIterator (image_wand
);
7698 if (iterator
== (PixelIterator
*) NULL
)
7700 #ifdef COLOR_TABLE_SUPPORT
7701 free_color_table ();
7703 x_destroy_x_image (ximg
);
7704 image_error ("Imagemagick pixel iterator creation failed",
7706 goto imagemagick_error
;
7709 for (y
= 0; y
< (long) MagickGetImageHeight (image_wand
); y
++)
7711 pixels
= PixelGetNextIteratorRow (iterator
, &width
);
7712 if (pixels
== (PixelWand
**) NULL
)
7714 for (x
= 0; x
< (long) width
; x
++)
7716 PixelGetMagickColor (pixels
[x
], &pixel
);
7717 XPutPixel (ximg
, x
, y
,
7718 lookup_rgb_color (f
,
7724 DestroyPixelIterator (iterator
);
7727 if (imagemagick_rendermethod
== 1)
7729 /* Magicexportimage is normaly faster than pixelpushing. This
7730 method is also well tested. Some aspects of this method are
7731 ad-hoc and needs to be more researched. */
7732 int imagedepth
= 24;/*MagickGetImageDepth(image_wand);*/
7733 char* exportdepth
= imagedepth
<= 8 ? "I" : "BGRP";/*"RGBP";*/
7734 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7735 if (!x_create_x_image_and_pixmap (f
, width
, height
, imagedepth
,
7736 &ximg
, &img
->pixmap
))
7738 #ifdef COLOR_TABLE_SUPPORT
7739 free_color_table ();
7741 image_error("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
7742 goto imagemagick_error
;
7746 /* Oddly, the below code doesnt seem to work:*/
7747 /* switch(ximg->bitmap_unit){ */
7749 /* pixelwidth=CharPixel; */
7752 /* pixelwidth=ShortPixel; */
7755 /* pixelwidth=LongPixel; */
7759 Here im just guessing the format of the bitmap.
7760 happens to work fine for:
7763 seems about 3 times as fast as pixel pushing(not carefully measured)
7765 pixelwidth
= CharPixel
;/*??? TODO figure out*/
7766 #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS
7767 MagickExportImagePixels (image_wand
,
7772 /*&(img->pixmap));*/
7775 image_error ("You dont have MagickExportImagePixels, upgrade ImageMagick!",
7781 #ifdef COLOR_TABLE_SUPPORT
7782 /* Remember colors allocated for this image. */
7783 img
->colors
= colors_in_color_table (&img
->ncolors
);
7784 free_color_table ();
7785 #endif /* COLOR_TABLE_SUPPORT */
7789 img
->height
= height
;
7791 /* Put the image into the pixmap, then free the X image and its
7793 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7794 x_destroy_x_image (ximg
);
7797 /* Final cleanup. image_wand should be the only resource left. */
7798 DestroyMagickWand (image_wand
);
7799 /* `MagickWandTerminus' terminates the imagemagick environment. */
7800 MagickWandTerminus ();
7805 DestroyMagickWand (image_wand
);
7806 MagickWandTerminus ();
7807 /* TODO more cleanup. */
7808 image_error ("Error parsing IMAGEMAGICK image `%s'", img
->spec
, Qnil
);
7813 /* Load IMAGEMAGICK image IMG for use on frame F. Value is non-zero if
7814 successful. this function will go into the imagemagick_type structure, and
7815 the prototype thus needs to be compatible with that structure. */
7818 imagemagick_load (struct frame
*f
,
7822 Lisp_Object file_name
;
7824 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7825 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
7826 if (STRINGP (file_name
))
7830 file
= x_find_image_file (file_name
);
7831 if (!STRINGP (file
))
7833 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
7836 success_p
= imagemagick_load_image (f
, img
, 0, 0, SDATA (file
));
7838 /* Else its not a file, its a lisp object. Load the image from a
7839 lisp object rather than a file. */
7844 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7845 if (!STRINGP (data
))
7847 image_error ("Invalid image data `%s'", data
, Qnil
);
7850 success_p
= imagemagick_load_image (f
, img
, SDATA (data
),
7851 SBYTES (data
), NULL
);
7857 /* Structure describing the image type `imagemagick'. Its the same
7858 type of structure defined for all image formats, handled by Emacs
7859 image functions. See struct image_type in dispextern.h. */
7861 static struct image_type imagemagick_type
=
7863 /* An identifier showing that this is an image structure for the
7864 IMAGEMAGICK format. */
7866 /* Handle to a function that can be used to identify a IMAGEMAGICK
7868 imagemagick_image_p
,
7869 /* Handle to function used to load a IMAGEMAGICK file. */
7871 /* Handle to function to free resources for IMAGEMAGICK. */
7872 imagemagick_clear_image
,
7873 /* An internal field to link to the next image type in a list of
7874 image types, will be filled in when registering the format. */
7881 DEFUN ("imagemagick-types", Fimagemagick_types
, Simagemagick_types
, 0, 0, 0,
7882 doc
: /* Return image file types supported by ImageMagick.
7883 Since ImageMagick recognizes a lot of file-types that clash with Emacs,
7884 such as .c, we want to be able to alter the list at the lisp level. */)
7887 Lisp_Object typelist
= Qnil
;
7890 char **imtypes
= GetMagickList ("*", &numf
, &ex
);
7892 Lisp_Object Qimagemagicktype
;
7893 for (i
= 0; i
< numf
; i
++)
7895 Qimagemagicktype
= intern (imtypes
[i
]);
7896 typelist
= Fcons (Qimagemagicktype
, typelist
);
7901 #endif /* defined (HAVE_IMAGEMAGICK) */
7905 /***********************************************************************
7907 ***********************************************************************/
7909 #if defined (HAVE_RSVG)
7911 /* Function prototypes. */
7913 static int svg_image_p (Lisp_Object object
);
7914 static int svg_load (struct frame
*f
, struct image
*img
);
7916 static int svg_load_image (struct frame
*, struct image
*,
7917 unsigned char *, unsigned int);
7919 /* The symbol `svg' identifying images of this type. */
7923 /* Indices of image specification fields in svg_format, below. */
7925 enum svg_keyword_index
7940 /* Vector of image_keyword structures describing the format
7941 of valid user-defined image specifications. */
7943 static const struct image_keyword svg_format
[SVG_LAST
] =
7945 {":type", IMAGE_SYMBOL_VALUE
, 1},
7946 {":data", IMAGE_STRING_VALUE
, 0},
7947 {":file", IMAGE_STRING_VALUE
, 0},
7948 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7949 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
7950 {":relief", IMAGE_INTEGER_VALUE
, 0},
7951 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7952 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7953 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7954 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
7957 /* Structure describing the image type `svg'. Its the same type of
7958 structure defined for all image formats, handled by emacs image
7959 functions. See struct image_type in dispextern.h. */
7961 static struct image_type svg_type
=
7963 /* An identifier showing that this is an image structure for the SVG format. */
7965 /* Handle to a function that can be used to identify a SVG file. */
7967 /* Handle to function used to load a SVG file. */
7969 /* Handle to function to free sresources for SVG. */
7971 /* An internal field to link to the next image type in a list of
7972 image types, will be filled in when registering the format. */
7977 /* Return non-zero if OBJECT is a valid SVG image specification. Do
7978 this by calling parse_image_spec and supplying the keywords that
7979 identify the SVG format. */
7982 svg_image_p (Lisp_Object object
)
7984 struct image_keyword fmt
[SVG_LAST
];
7985 memcpy (fmt
, svg_format
, sizeof fmt
);
7987 if (!parse_image_spec (object
, fmt
, SVG_LAST
, Qsvg
))
7990 /* Must specify either the :data or :file keyword. */
7991 return fmt
[SVG_FILE
].count
+ fmt
[SVG_DATA
].count
== 1;
7994 #include <librsvg/rsvg.h>
7998 /* SVG library functions. */
7999 DEF_IMGLIB_FN (RsvgHandle
*, rsvg_handle_new
);
8000 DEF_IMGLIB_FN (void, rsvg_handle_get_dimensions
);
8001 DEF_IMGLIB_FN (gboolean
, rsvg_handle_write
);
8002 DEF_IMGLIB_FN (gboolean
, rsvg_handle_close
);
8003 DEF_IMGLIB_FN (GdkPixbuf
*, rsvg_handle_get_pixbuf
);
8004 DEF_IMGLIB_FN (void, rsvg_handle_free
);
8006 DEF_IMGLIB_FN (int, gdk_pixbuf_get_width
);
8007 DEF_IMGLIB_FN (int, gdk_pixbuf_get_height
);
8008 DEF_IMGLIB_FN (guchar
*, gdk_pixbuf_get_pixels
);
8009 DEF_IMGLIB_FN (int, gdk_pixbuf_get_rowstride
);
8010 DEF_IMGLIB_FN (GdkColorspace
, gdk_pixbuf_get_colorspace
);
8011 DEF_IMGLIB_FN (int, gdk_pixbuf_get_n_channels
);
8012 DEF_IMGLIB_FN (gboolean
, gdk_pixbuf_get_has_alpha
);
8013 DEF_IMGLIB_FN (int, gdk_pixbuf_get_bits_per_sample
);
8015 DEF_IMGLIB_FN (void, g_type_init
);
8016 DEF_IMGLIB_FN (void, g_object_unref
);
8017 DEF_IMGLIB_FN (void, g_error_free
);
8019 Lisp_Object Qgdk_pixbuf
, Qglib
, Qgobject
;
8022 init_svg_functions (Lisp_Object libraries
)
8024 HMODULE library
, gdklib
, glib
, gobject
;
8026 if (!(glib
= w32_delayed_load (libraries
, Qglib
))
8027 || !(gobject
= w32_delayed_load (libraries
, Qgobject
))
8028 || !(gdklib
= w32_delayed_load (libraries
, Qgdk_pixbuf
))
8029 || !(library
= w32_delayed_load (libraries
, Qsvg
)))
8032 LOAD_IMGLIB_FN (library
, rsvg_handle_new
);
8033 LOAD_IMGLIB_FN (library
, rsvg_handle_get_dimensions
);
8034 LOAD_IMGLIB_FN (library
, rsvg_handle_write
);
8035 LOAD_IMGLIB_FN (library
, rsvg_handle_close
);
8036 LOAD_IMGLIB_FN (library
, rsvg_handle_get_pixbuf
);
8037 LOAD_IMGLIB_FN (library
, rsvg_handle_free
);
8039 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_width
);
8040 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_height
);
8041 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_pixels
);
8042 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_rowstride
);
8043 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_colorspace
);
8044 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_n_channels
);
8045 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_has_alpha
);
8046 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_bits_per_sample
);
8048 LOAD_IMGLIB_FN (gobject
, g_type_init
);
8049 LOAD_IMGLIB_FN (gobject
, g_object_unref
);
8050 LOAD_IMGLIB_FN (glib
, g_error_free
);
8056 /* The following aliases for library functions allow dynamic loading
8057 to be used on some platforms. */
8058 #define fn_rsvg_handle_new rsvg_handle_new
8059 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
8060 #define fn_rsvg_handle_write rsvg_handle_write
8061 #define fn_rsvg_handle_close rsvg_handle_close
8062 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
8063 #define fn_rsvg_handle_free rsvg_handle_free
8065 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
8066 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
8067 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
8068 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
8069 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
8070 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
8071 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
8072 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
8074 #define fn_g_type_init g_type_init
8075 #define fn_g_object_unref g_object_unref
8076 #define fn_g_error_free g_error_free
8077 #endif /* !HAVE_NTGUI */
8079 /* Load SVG image IMG for use on frame F. Value is non-zero if
8080 successful. this function will go into the svg_type structure, and
8081 the prototype thus needs to be compatible with that structure. */
8084 svg_load (struct frame
*f
, struct image
*img
)
8087 Lisp_Object file_name
;
8089 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8090 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
8091 if (STRINGP (file_name
))
8094 unsigned char *contents
;
8097 file
= x_find_image_file (file_name
);
8098 if (!STRINGP (file
))
8100 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
8104 /* Read the entire file into memory. */
8105 contents
= slurp_file (SDATA (file
), &size
);
8106 if (contents
== NULL
)
8108 image_error ("Error loading SVG image `%s'", img
->spec
, Qnil
);
8111 /* If the file was slurped into memory properly, parse it. */
8112 success_p
= svg_load_image (f
, img
, contents
, size
);
8115 /* Else its not a file, its a lisp object. Load the image from a
8116 lisp object rather than a file. */
8121 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8122 if (!STRINGP (data
))
8124 image_error ("Invalid image data `%s'", data
, Qnil
);
8127 success_p
= svg_load_image (f
, img
, SDATA (data
), SBYTES (data
));
8133 /* svg_load_image is a helper function for svg_load, which does the
8134 actual loading given contents and size, apart from frame and image
8135 structures, passed from svg_load.
8137 Uses librsvg to do most of the image processing.
8139 Returns non-zero when successful. */
8141 svg_load_image (struct frame
*f
, /* Pointer to emacs frame structure. */
8142 struct image
*img
, /* Pointer to emacs image structure. */
8143 unsigned char *contents
, /* String containing the SVG XML data to be parsed. */
8144 unsigned int size
) /* Size of data in bytes. */
8146 RsvgHandle
*rsvg_handle
;
8147 RsvgDimensionData dimension_data
;
8148 GError
*error
= NULL
;
8152 const guint8
*pixels
;
8155 Lisp_Object specified_bg
;
8160 /* g_type_init is a glib function that must be called prior to using
8161 gnome type library functions. */
8163 /* Make a handle to a new rsvg object. */
8164 rsvg_handle
= fn_rsvg_handle_new ();
8166 /* Parse the contents argument and fill in the rsvg_handle. */
8167 fn_rsvg_handle_write (rsvg_handle
, contents
, size
, &error
);
8168 if (error
) goto rsvg_error
;
8170 /* The parsing is complete, rsvg_handle is ready to used, close it
8171 for further writes. */
8172 fn_rsvg_handle_close (rsvg_handle
, &error
);
8173 if (error
) goto rsvg_error
;
8175 fn_rsvg_handle_get_dimensions (rsvg_handle
, &dimension_data
);
8176 if (! check_image_size (f
, dimension_data
.width
, dimension_data
.height
))
8178 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8182 /* We can now get a valid pixel buffer from the svg file, if all
8184 pixbuf
= fn_rsvg_handle_get_pixbuf (rsvg_handle
);
8185 if (!pixbuf
) goto rsvg_error
;
8186 fn_g_object_unref (rsvg_handle
);
8188 /* Extract some meta data from the svg handle. */
8189 width
= fn_gdk_pixbuf_get_width (pixbuf
);
8190 height
= fn_gdk_pixbuf_get_height (pixbuf
);
8191 pixels
= fn_gdk_pixbuf_get_pixels (pixbuf
);
8192 rowstride
= fn_gdk_pixbuf_get_rowstride (pixbuf
);
8194 /* Validate the svg meta data. */
8195 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf
) == GDK_COLORSPACE_RGB
);
8196 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf
) == 4);
8197 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf
));
8198 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf
) == 8);
8200 /* Try to create a x pixmap to hold the svg pixmap. */
8201 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
8203 fn_g_object_unref (pixbuf
);
8207 init_color_table ();
8209 /* Handle alpha channel by combining the image with a background
8211 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
8212 if (!STRINGP (specified_bg
)
8213 || !x_defined_color (f
, SDATA (specified_bg
), &background
, 0))
8216 background
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
8217 x_query_color (f
, &background
);
8219 ns_query_color (FRAME_BACKGROUND_COLOR (f
), &background
, 1);
8223 /* SVG pixmaps specify transparency in the last byte, so right
8224 shift 8 bits to get rid of it, since emacs doesn't support
8226 background
.red
>>= 8;
8227 background
.green
>>= 8;
8228 background
.blue
>>= 8;
8230 /* This loop handles opacity values, since Emacs assumes
8231 non-transparent images. Each pixel must be "flattened" by
8232 calculating the resulting color, given the transparency of the
8233 pixel, and the image background color. */
8234 for (y
= 0; y
< height
; ++y
)
8236 for (x
= 0; x
< width
; ++x
)
8246 opacity
= *pixels
++;
8248 red
= ((red
* opacity
)
8249 + (background
.red
* ((1 << 8) - opacity
)));
8250 green
= ((green
* opacity
)
8251 + (background
.green
* ((1 << 8) - opacity
)));
8252 blue
= ((blue
* opacity
)
8253 + (background
.blue
* ((1 << 8) - opacity
)));
8255 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, red
, green
, blue
));
8258 pixels
+= rowstride
- 4 * width
;
8261 #ifdef COLOR_TABLE_SUPPORT
8262 /* Remember colors allocated for this image. */
8263 img
->colors
= colors_in_color_table (&img
->ncolors
);
8264 free_color_table ();
8265 #endif /* COLOR_TABLE_SUPPORT */
8267 fn_g_object_unref (pixbuf
);
8270 img
->height
= height
;
8272 /* Maybe fill in the background field while we have ximg handy.
8273 Casting avoids a GCC warning. */
8274 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
8276 /* Put the image into the pixmap, then free the X image and its
8278 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
8279 x_destroy_x_image (ximg
);
8284 fn_g_object_unref (rsvg_handle
);
8285 /* FIXME: Use error->message so the user knows what is the actual
8286 problem with the image. */
8287 image_error ("Error parsing SVG image `%s'", img
->spec
, Qnil
);
8288 fn_g_error_free (error
);
8292 #endif /* defined (HAVE_RSVG) */
8297 /***********************************************************************
8299 ***********************************************************************/
8301 #ifdef HAVE_X_WINDOWS
8302 #define HAVE_GHOSTSCRIPT 1
8303 #endif /* HAVE_X_WINDOWS */
8305 #ifdef HAVE_GHOSTSCRIPT
8307 static int gs_image_p (Lisp_Object object
);
8308 static int gs_load (struct frame
*f
, struct image
*img
);
8309 static void gs_clear_image (struct frame
*f
, struct image
*img
);
8311 /* Keyword symbols. */
8313 Lisp_Object QCloader
, QCbounding_box
, QCpt_width
, QCpt_height
;
8315 /* Indices of image specification fields in gs_format, below. */
8317 enum gs_keyword_index
8335 /* Vector of image_keyword structures describing the format
8336 of valid user-defined image specifications. */
8338 static const struct image_keyword gs_format
[GS_LAST
] =
8340 {":type", IMAGE_SYMBOL_VALUE
, 1},
8341 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
8342 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
8343 {":file", IMAGE_STRING_VALUE
, 1},
8344 {":loader", IMAGE_FUNCTION_VALUE
, 0},
8345 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
8346 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8347 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
8348 {":relief", IMAGE_INTEGER_VALUE
, 0},
8349 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8350 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8351 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8352 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
8355 /* Structure describing the image type `ghostscript'. */
8357 static struct image_type gs_type
=
8367 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8370 gs_clear_image (struct frame
*f
, struct image
*img
)
8372 /* IMG->data.ptr_val may contain a recorded colormap. */
8373 xfree (img
->data
.ptr_val
);
8374 x_clear_image (f
, img
);
8378 /* Return non-zero if OBJECT is a valid Ghostscript image
8382 gs_image_p (Lisp_Object object
)
8384 struct image_keyword fmt
[GS_LAST
];
8388 memcpy (fmt
, gs_format
, sizeof fmt
);
8390 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
))
8393 /* Bounding box must be a list or vector containing 4 integers. */
8394 tem
= fmt
[GS_BOUNDING_BOX
].value
;
8397 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
8398 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
8403 else if (VECTORP (tem
))
8405 if (XVECTOR (tem
)->size
!= 4)
8407 for (i
= 0; i
< 4; ++i
)
8408 if (!INTEGERP (XVECTOR (tem
)->contents
[i
]))
8418 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
8422 gs_load (struct frame
*f
, struct image
*img
)
8425 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
8427 double in_width
, in_height
;
8428 Lisp_Object pixel_colors
= Qnil
;
8430 /* Compute pixel size of pixmap needed from the given size in the
8431 image specification. Sizes in the specification are in pt. 1 pt
8432 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8434 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
8435 in_width
= INTEGERP (pt_width
) ? XFASTINT (pt_width
) / 72.0 : 0;
8436 img
->width
= in_width
* FRAME_X_DISPLAY_INFO (f
)->resx
;
8437 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
8438 in_height
= INTEGERP (pt_height
) ? XFASTINT (pt_height
) / 72.0 : 0;
8439 img
->height
= in_height
* FRAME_X_DISPLAY_INFO (f
)->resy
;
8441 if (!check_image_size (f
, img
->width
, img
->height
))
8443 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8447 /* Create the pixmap. */
8448 xassert (img
->pixmap
== NO_PIXMAP
);
8450 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8452 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
8453 img
->width
, img
->height
,
8454 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
8459 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
8463 /* Call the loader to fill the pixmap. It returns a process object
8464 if successful. We do not record_unwind_protect here because
8465 other places in redisplay like calling window scroll functions
8466 don't either. Let the Lisp loader use `unwind-protect' instead. */
8467 sprintf (buffer
, "%lu %lu",
8468 (unsigned long) FRAME_X_WINDOW (f
),
8469 (unsigned long) img
->pixmap
);
8470 window_and_pixmap_id
= build_string (buffer
);
8472 sprintf (buffer
, "%lu %lu",
8473 FRAME_FOREGROUND_PIXEL (f
),
8474 FRAME_BACKGROUND_PIXEL (f
));
8475 pixel_colors
= build_string (buffer
);
8477 XSETFRAME (frame
, f
);
8478 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
8480 loader
= intern ("gs-load-image");
8482 img
->data
.lisp_val
= call6 (loader
, frame
, img
->spec
,
8483 make_number (img
->width
),
8484 make_number (img
->height
),
8485 window_and_pixmap_id
,
8487 return PROCESSP (img
->data
.lisp_val
);
8491 /* Kill the Ghostscript process that was started to fill PIXMAP on
8492 frame F. Called from XTread_socket when receiving an event
8493 telling Emacs that Ghostscript has finished drawing. */
8496 x_kill_gs_process (Pixmap pixmap
, struct frame
*f
)
8498 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
8502 /* Find the image containing PIXMAP. */
8503 for (i
= 0; i
< c
->used
; ++i
)
8504 if (c
->images
[i
]->pixmap
== pixmap
)
8507 /* Should someone in between have cleared the image cache, for
8508 instance, give up. */
8512 /* Kill the GS process. We should have found PIXMAP in the image
8513 cache and its image should contain a process object. */
8515 xassert (PROCESSP (img
->data
.lisp_val
));
8516 Fkill_process (img
->data
.lisp_val
, Qnil
);
8517 img
->data
.lisp_val
= Qnil
;
8519 #if defined (HAVE_X_WINDOWS)
8521 /* On displays with a mutable colormap, figure out the colors
8522 allocated for the image by looking at the pixels of an XImage for
8524 class = FRAME_X_VISUAL (f
)->class;
8525 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
8531 /* Try to get an XImage for img->pixmep. */
8532 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
8533 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
8538 /* Initialize the color table. */
8539 init_color_table ();
8541 /* For each pixel of the image, look its color up in the
8542 color table. After having done so, the color table will
8543 contain an entry for each color used by the image. */
8544 for (y
= 0; y
< img
->height
; ++y
)
8545 for (x
= 0; x
< img
->width
; ++x
)
8547 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
8548 lookup_pixel_color (f
, pixel
);
8551 /* Record colors in the image. Free color table and XImage. */
8552 #ifdef COLOR_TABLE_SUPPORT
8553 img
->colors
= colors_in_color_table (&img
->ncolors
);
8554 free_color_table ();
8556 XDestroyImage (ximg
);
8558 #if 0 /* This doesn't seem to be the case. If we free the colors
8559 here, we get a BadAccess later in x_clear_image when
8560 freeing the colors. */
8561 /* We have allocated colors once, but Ghostscript has also
8562 allocated colors on behalf of us. So, to get the
8563 reference counts right, free them once. */
8565 x_free_colors (f
, img
->colors
, img
->ncolors
);
8569 image_error ("Cannot get X image of `%s'; colors will not be freed",
8574 #endif /* HAVE_X_WINDOWS */
8576 /* Now that we have the pixmap, compute mask and transform the
8577 image if requested. */
8579 postprocess_image (f
, img
);
8583 #endif /* HAVE_GHOSTSCRIPT */
8586 /***********************************************************************
8588 ***********************************************************************/
8592 DEFUN ("imagep", Fimagep
, Simagep
, 1, 1, 0,
8593 doc
: /* Value is non-nil if SPEC is a valid image specification. */)
8596 return valid_image_p (spec
) ? Qt
: Qnil
;
8600 DEFUN ("lookup-image", Flookup_image
, Slookup_image
, 1, 1, 0, "")
8605 if (valid_image_p (spec
))
8606 id
= lookup_image (SELECTED_FRAME (), spec
);
8609 return make_number (id
);
8612 #endif /* GLYPH_DEBUG != 0 */
8615 /***********************************************************************
8617 ***********************************************************************/
8620 /* Image types that rely on external libraries are loaded dynamically
8621 if the library is available. */
8622 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8623 define_image_type (image_type, init_lib_fn (libraries))
8625 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8626 define_image_type (image_type, 1)
8627 #endif /* HAVE_NTGUI */
8629 DEFUN ("init-image-library", Finit_image_library
, Sinit_image_library
, 2, 2, 0,
8630 doc
: /* Initialize image library implementing image type TYPE.
8631 Return non-nil if TYPE is a supported image type.
8633 Image types pbm and xbm are prebuilt; other types are loaded here.
8634 Libraries to load are specified in alist LIBRARIES (usually, the value
8635 of `dynamic-library-alist', which see). */)
8636 (Lisp_Object type
, Lisp_Object libraries
)
8640 /* Don't try to reload the library. */
8641 tested
= Fassq (type
, Vimage_type_cache
);
8643 return XCDR (tested
);
8645 #if defined (HAVE_XPM) || defined (HAVE_NS)
8646 if (EQ (type
, Qxpm
))
8647 return CHECK_LIB_AVAILABLE (&xpm_type
, init_xpm_functions
, libraries
);
8650 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8651 if (EQ (type
, Qjpeg
))
8652 return CHECK_LIB_AVAILABLE (&jpeg_type
, init_jpeg_functions
, libraries
);
8655 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8656 if (EQ (type
, Qtiff
))
8657 return CHECK_LIB_AVAILABLE (&tiff_type
, init_tiff_functions
, libraries
);
8660 #if defined (HAVE_GIF) || defined (HAVE_NS)
8661 if (EQ (type
, Qgif
))
8662 return CHECK_LIB_AVAILABLE (&gif_type
, init_gif_functions
, libraries
);
8665 #if defined (HAVE_PNG) || defined (HAVE_NS)
8666 if (EQ (type
, Qpng
))
8667 return CHECK_LIB_AVAILABLE (&png_type
, init_png_functions
, libraries
);
8670 #if defined (HAVE_RSVG)
8671 if (EQ (type
, Qsvg
))
8672 return CHECK_LIB_AVAILABLE (&svg_type
, init_svg_functions
, libraries
);
8675 #if defined (HAVE_IMAGEMAGICK)
8676 if (EQ (type
, Qimagemagick
))
8678 return CHECK_LIB_AVAILABLE (&imagemagick_type
, init_imagemagick_functions
,
8683 #ifdef HAVE_GHOSTSCRIPT
8684 if (EQ (type
, Qpostscript
))
8685 return CHECK_LIB_AVAILABLE (&gs_type
, init_gs_functions
, libraries
);
8688 /* If the type is not recognized, avoid testing it ever again. */
8689 CACHE_IMAGE_TYPE (type
, Qnil
);
8694 syms_of_image (void)
8696 /* Initialize this only once, since that's what we do with Vimage_types
8697 and they are supposed to be in sync. Initializing here gives correct
8698 operation on GNU/Linux of calling dump-emacs after loading some images. */
8701 /* Must be defined now becase we're going to update it below, while
8702 defining the supported image types. */
8703 DEFVAR_LISP ("image-types", Vimage_types
,
8704 doc
: /* List of potentially supported image types.
8705 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8706 To check whether it is really supported, use `image-type-available-p'. */);
8707 Vimage_types
= Qnil
;
8709 DEFVAR_LISP ("max-image-size", Vmax_image_size
,
8710 doc
: /* Maximum size of images.
8711 Emacs will not load an image into memory if its pixel width or
8712 pixel height exceeds this limit.
8714 If the value is an integer, it directly specifies the maximum
8715 image height and width, measured in pixels. If it is a floating
8716 point number, it specifies the maximum image height and width
8717 as a ratio to the frame height and width. If the value is
8718 non-numeric, there is no explicit limit on the size of images. */);
8719 Vmax_image_size
= make_float (MAX_IMAGE_SIZE
);
8721 Vimage_type_cache
= Qnil
;
8722 staticpro (&Vimage_type_cache
);
8724 Qpbm
= intern_c_string ("pbm");
8726 ADD_IMAGE_TYPE (Qpbm
);
8728 Qxbm
= intern_c_string ("xbm");
8730 ADD_IMAGE_TYPE (Qxbm
);
8732 define_image_type (&xbm_type
, 1);
8733 define_image_type (&pbm_type
, 1);
8735 Qcount
= intern_c_string ("count");
8736 staticpro (&Qcount
);
8737 Qextension_data
= intern_c_string ("extension-data");
8738 staticpro (&Qextension_data
);
8740 QCascent
= intern_c_string (":ascent");
8741 staticpro (&QCascent
);
8742 QCmargin
= intern_c_string (":margin");
8743 staticpro (&QCmargin
);
8744 QCrelief
= intern_c_string (":relief");
8745 staticpro (&QCrelief
);
8746 QCconversion
= intern_c_string (":conversion");
8747 staticpro (&QCconversion
);
8748 QCcolor_symbols
= intern_c_string (":color-symbols");
8749 staticpro (&QCcolor_symbols
);
8750 QCheuristic_mask
= intern_c_string (":heuristic-mask");
8751 staticpro (&QCheuristic_mask
);
8752 QCindex
= intern_c_string (":index");
8753 staticpro (&QCindex
);
8754 QCgeometry
= intern_c_string (":geometry");
8755 staticpro (&QCgeometry
);
8756 QCcrop
= intern_c_string (":crop");
8757 staticpro (&QCcrop
);
8758 QCrotation
= intern_c_string (":rotation");
8759 staticpro (&QCrotation
);
8760 QCmatrix
= intern_c_string (":matrix");
8761 staticpro (&QCmatrix
);
8762 QCcolor_adjustment
= intern_c_string (":color-adjustment");
8763 staticpro (&QCcolor_adjustment
);
8764 QCmask
= intern_c_string (":mask");
8765 staticpro (&QCmask
);
8767 Qlaplace
= intern_c_string ("laplace");
8768 staticpro (&Qlaplace
);
8769 Qemboss
= intern_c_string ("emboss");
8770 staticpro (&Qemboss
);
8771 Qedge_detection
= intern_c_string ("edge-detection");
8772 staticpro (&Qedge_detection
);
8773 Qheuristic
= intern_c_string ("heuristic");
8774 staticpro (&Qheuristic
);
8776 Qpostscript
= intern_c_string ("postscript");
8777 staticpro (&Qpostscript
);
8778 #ifdef HAVE_GHOSTSCRIPT
8779 ADD_IMAGE_TYPE (Qpostscript
);
8780 QCloader
= intern_c_string (":loader");
8781 staticpro (&QCloader
);
8782 QCbounding_box
= intern_c_string (":bounding-box");
8783 staticpro (&QCbounding_box
);
8784 QCpt_width
= intern_c_string (":pt-width");
8785 staticpro (&QCpt_width
);
8786 QCpt_height
= intern_c_string (":pt-height");
8787 staticpro (&QCpt_height
);
8788 #endif /* HAVE_GHOSTSCRIPT */
8791 Qlibpng_version
= intern_c_string ("libpng-version");
8792 staticpro (&Qlibpng_version
);
8793 Fset (Qlibpng_version
,
8795 make_number (PNG_LIBPNG_VER
)
8802 #if defined (HAVE_XPM) || defined (HAVE_NS)
8803 Qxpm
= intern_c_string ("xpm");
8805 ADD_IMAGE_TYPE (Qxpm
);
8808 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8809 Qjpeg
= intern_c_string ("jpeg");
8811 ADD_IMAGE_TYPE (Qjpeg
);
8814 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8815 Qtiff
= intern_c_string ("tiff");
8817 ADD_IMAGE_TYPE (Qtiff
);
8820 #if defined (HAVE_GIF) || defined (HAVE_NS)
8821 Qgif
= intern_c_string ("gif");
8823 ADD_IMAGE_TYPE (Qgif
);
8826 #if defined (HAVE_PNG) || defined (HAVE_NS)
8827 Qpng
= intern_c_string ("png");
8829 ADD_IMAGE_TYPE (Qpng
);
8832 #if defined (HAVE_IMAGEMAGICK)
8833 Qimagemagick
= intern_c_string ("imagemagick");
8834 staticpro (&Qimagemagick
);
8835 ADD_IMAGE_TYPE (Qimagemagick
);
8838 #if defined (HAVE_RSVG)
8839 Qsvg
= intern_c_string ("svg");
8841 ADD_IMAGE_TYPE (Qsvg
);
8843 /* Other libraries used directly by svg code. */
8844 Qgdk_pixbuf
= intern_c_string ("gdk-pixbuf");
8845 staticpro (&Qgdk_pixbuf
);
8846 Qglib
= intern_c_string ("glib");
8848 Qgobject
= intern_c_string ("gobject");
8849 staticpro (&Qgobject
);
8850 #endif /* HAVE_NTGUI */
8851 #endif /* HAVE_RSVG */
8853 defsubr (&Sinit_image_library
);
8854 #ifdef HAVE_IMAGEMAGICK
8855 defsubr (&Simagemagick_types
);
8857 defsubr (&Sclear_image_cache
);
8858 defsubr (&Simage_flush
);
8859 defsubr (&Simage_size
);
8860 defsubr (&Simage_mask_p
);
8861 defsubr (&Simage_metadata
);
8865 defsubr (&Slookup_image
);
8868 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images
,
8869 doc
: /* Non-nil means always draw a cross over disabled images.
8870 Disabled images are those having a `:conversion disabled' property.
8871 A cross is always drawn on black & white displays. */);
8872 cross_disabled_images
= 0;
8874 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path
,
8875 doc
: /* List of directories to search for window system bitmap files. */);
8876 Vx_bitmap_file_path
= decode_env_path ((char *) 0, PATH_BITMAPS
);
8878 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay
,
8879 doc
: /* Maximum time after which images are removed from the cache.
8880 When an image has not been displayed this many seconds, Emacs
8881 automatically removes it from the image cache. If the cache contains
8882 a large number of images, the actual eviction time may be shorter.
8883 The value can also be nil, meaning the cache is never cleared.
8885 The function `clear-image-cache' disregards this variable. */);
8886 Vimage_cache_eviction_delay
= make_number (300);
8887 #ifdef HAVE_IMAGEMAGICK
8888 DEFVAR_LISP ("imagemagick-render-type", Vimagemagick_render_type
,
8889 doc
: /* Choose between ImageMagick render methods. */);