1 /* Functions for image support on window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
31 #if defined HAVE_LIBPNG_PNG_H
32 # include <libpng/png.h>
40 /* This makes the fields of a Display accessible, in Xlib header files. */
42 #define XLIB_ILLEGAL_ACCESS
47 #include "dispextern.h"
48 #include "blockinput.h"
51 #include "character.h"
53 #include "termhooks.h"
58 #include <sys/types.h>
61 #define COLOR_TABLE_SUPPORT 1
63 typedef struct x_bitmap_record Bitmap_Record
;
64 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
65 #define NO_PIXMAP None
67 #define RGB_PIXEL_COLOR unsigned long
69 #define PIX_MASK_RETAIN 0
70 #define PIX_MASK_DRAW 1
71 #endif /* HAVE_X_WINDOWS */
77 /* W32_TODO : Color tables on W32. */
78 #undef COLOR_TABLE_SUPPORT
80 typedef struct w32_bitmap_record Bitmap_Record
;
81 #define GET_PIXEL(ximg, x, y) GetPixel(ximg, x, y)
84 #define RGB_PIXEL_COLOR COLORREF
86 #define PIX_MASK_RETAIN 0
87 #define PIX_MASK_DRAW 1
89 #define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
90 #define x_defined_color w32_defined_color
91 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
93 /* Functions from w32term.c that depend on XColor (so can't go in w32term.h
94 without modifying lots of files). */
95 extern void x_query_colors (struct frame
*f
, XColor
*colors
, int ncolors
);
96 extern void x_query_color (struct frame
*f
, XColor
*color
);
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 /* Search path for bitmap files. */
127 Lisp_Object Vx_bitmap_file_path
;
130 static void x_disable_image
P_ ((struct frame
*, struct image
*));
131 static void x_edge_detection
P_ ((struct frame
*, struct image
*, Lisp_Object
,
134 static void init_color_table
P_ ((void));
135 static unsigned long lookup_rgb_color
P_ ((struct frame
*f
, int r
, int g
, int b
));
136 #ifdef COLOR_TABLE_SUPPORT
137 static void free_color_table
P_ ((void));
138 static unsigned long *colors_in_color_table
P_ ((int *n
));
139 static unsigned long lookup_pixel_color
P_ ((struct frame
*f
, unsigned long p
));
142 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
143 id, which is just an int that this section returns. Bitmaps are
144 reference counted so they can be shared among frames.
146 Bitmap indices are guaranteed to be > 0, so a negative number can
147 be used to indicate no bitmap.
149 If you use x_create_bitmap_from_data, then you must keep track of
150 the bitmaps yourself. That is, creating a bitmap from the same
151 data more than once will not be caught. */
155 XGetImage (Display
*display
, Pixmap pixmap
, int x
, int y
,
156 unsigned int width
, unsigned int height
,
157 unsigned long plane_mask
, int format
)
159 /* TODO: not sure what this function is supposed to do.. */
160 ns_retain_object(pixmap
);
164 /* use with imgs created by ns_image_for_XPM */
166 XGetPixel (XImagePtr ximage
, int x
, int y
)
168 return ns_get_pixel(ximage
, x
, y
);
171 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
172 pixel is assumed to be in form RGB */
174 XPutPixel (XImagePtr ximage
, int x
, int y
, unsigned long pixel
)
176 ns_put_pixel(ximage
, x
, y
, pixel
);
181 /* Functions to access the contents of a bitmap, given an id. */
184 x_bitmap_height (f
, id
)
188 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
192 x_bitmap_width (f
, id
)
196 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
199 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
201 x_bitmap_pixmap (f
, id
)
205 return (int) FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
209 #ifdef HAVE_X_WINDOWS
211 x_bitmap_mask (f
, id
)
215 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].mask
;
219 /* Allocate a new bitmap record. Returns index of new record. */
222 x_allocate_bitmap_record (f
)
225 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
228 if (dpyinfo
->bitmaps
== NULL
)
230 dpyinfo
->bitmaps_size
= 10;
232 = (Bitmap_Record
*) xmalloc (dpyinfo
->bitmaps_size
* sizeof (Bitmap_Record
));
233 dpyinfo
->bitmaps_last
= 1;
237 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
238 return ++dpyinfo
->bitmaps_last
;
240 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
241 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
244 dpyinfo
->bitmaps_size
*= 2;
246 = (Bitmap_Record
*) xrealloc (dpyinfo
->bitmaps
,
247 dpyinfo
->bitmaps_size
* sizeof (Bitmap_Record
));
248 return ++dpyinfo
->bitmaps_last
;
251 /* Add one reference to the reference count of the bitmap with id ID. */
254 x_reference_bitmap (f
, id
)
258 ++FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
261 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
264 x_create_bitmap_from_data (f
, bits
, width
, height
)
267 unsigned int width
, height
;
269 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
272 #ifdef HAVE_X_WINDOWS
274 bitmap
= XCreateBitmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
275 bits
, width
, height
);
278 #endif /* HAVE_X_WINDOWS */
282 bitmap
= CreateBitmap (width
, height
,
283 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_planes
,
284 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_cbits
,
288 #endif /* HAVE_NTGUI */
291 void *bitmap
= ns_image_from_XBM(bits
, width
, height
);
296 id
= x_allocate_bitmap_record (f
);
299 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
300 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
303 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
304 dpyinfo
->bitmaps
[id
- 1].height
= height
;
305 dpyinfo
->bitmaps
[id
- 1].width
= width
;
306 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
308 #ifdef HAVE_X_WINDOWS
309 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
310 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
311 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
312 #endif /* HAVE_X_WINDOWS */
315 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
316 dpyinfo
->bitmaps
[id
- 1].hinst
= NULL
;
317 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
318 #endif /* HAVE_NTGUI */
323 /* Create bitmap from file FILE for frame F. */
326 x_create_bitmap_from_file (f
, file
)
330 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
333 return -1; /* W32_TODO : bitmap support */
334 #endif /* HAVE_NTGUI */
338 void *bitmap
= ns_image_from_file(file
);
344 id
= x_allocate_bitmap_record (f
);
345 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
346 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
347 dpyinfo
->bitmaps
[id
- 1].file
= (char *) xmalloc (SBYTES (file
) + 1);
348 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
349 dpyinfo
->bitmaps
[id
- 1].height
= ns_image_width(bitmap
);
350 dpyinfo
->bitmaps
[id
- 1].width
= ns_image_height(bitmap
);
351 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SDATA (file
));
355 #ifdef HAVE_X_WINDOWS
356 unsigned int width
, height
;
358 int xhot
, yhot
, result
, id
;
363 /* Look for an existing bitmap with the same name. */
364 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
366 if (dpyinfo
->bitmaps
[id
].refcount
367 && dpyinfo
->bitmaps
[id
].file
368 && !strcmp (dpyinfo
->bitmaps
[id
].file
, (char *) SDATA (file
)))
370 ++dpyinfo
->bitmaps
[id
].refcount
;
375 /* Search bitmap-file-path for the file, if appropriate. */
376 fd
= openp (Vx_bitmap_file_path
, file
, Qnil
, &found
, Qnil
);
381 filename
= (char *) SDATA (found
);
383 result
= XReadBitmapFile (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
384 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
385 if (result
!= BitmapSuccess
)
388 id
= x_allocate_bitmap_record (f
);
389 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
390 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
391 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
392 dpyinfo
->bitmaps
[id
- 1].file
= (char *) xmalloc (SBYTES (file
) + 1);
393 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
394 dpyinfo
->bitmaps
[id
- 1].height
= height
;
395 dpyinfo
->bitmaps
[id
- 1].width
= width
;
396 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SDATA (file
));
399 #endif /* HAVE_X_WINDOWS */
405 free_bitmap_record (dpyinfo
, bm
)
406 Display_Info
*dpyinfo
;
409 #ifdef HAVE_X_WINDOWS
410 XFreePixmap (dpyinfo
->display
, bm
->pixmap
);
412 XFreePixmap (dpyinfo
->display
, bm
->mask
);
413 #endif /* HAVE_X_WINDOWS */
416 DeleteObject (bm
->pixmap
);
417 #endif /* HAVE_NTGUI */
420 ns_release_object(bm
->img
);
430 /* Remove reference to bitmap with id number ID. */
433 x_destroy_bitmap (f
, id
)
437 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
441 Bitmap_Record
*bm
= &dpyinfo
->bitmaps
[id
- 1];
443 if (--bm
->refcount
== 0)
446 free_bitmap_record (dpyinfo
, bm
);
452 /* Free all the bitmaps for the display specified by DPYINFO. */
455 x_destroy_all_bitmaps (dpyinfo
)
456 Display_Info
*dpyinfo
;
459 Bitmap_Record
*bm
= dpyinfo
->bitmaps
;
461 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++, bm
++)
462 if (bm
->refcount
> 0)
463 free_bitmap_record (dpyinfo
, bm
);
465 dpyinfo
->bitmaps_last
= 0;
469 #ifdef HAVE_X_WINDOWS
471 /* Useful functions defined in the section
472 `Image type independent image structures' below. */
474 static unsigned long four_corners_best
P_ ((XImagePtr ximg
,
477 unsigned long height
));
479 static int x_create_x_image_and_pixmap
P_ ((struct frame
*f
, int width
, int height
,
480 int depth
, XImagePtr
*ximg
,
483 static void x_destroy_x_image
P_ ((XImagePtr ximg
));
486 /* Create a mask of a bitmap. Note is this not a perfect mask.
487 It's nicer with some borders in this context */
490 x_create_bitmap_mask (f
, id
)
495 XImagePtr ximg
, mask_img
;
496 unsigned long width
, height
;
499 unsigned long x
, y
, xp
, xm
, yp
, ym
;
502 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
507 pixmap
= x_bitmap_pixmap (f
, id
);
508 width
= x_bitmap_width (f
, id
);
509 height
= x_bitmap_height (f
, id
);
512 ximg
= XGetImage (FRAME_X_DISPLAY (f
), pixmap
, 0, 0, width
, height
,
521 result
= x_create_x_image_and_pixmap (f
, width
, height
, 1, &mask_img
, &mask
);
526 XDestroyImage (ximg
);
530 bg
= four_corners_best (ximg
, NULL
, width
, height
);
532 for (y
= 0; y
< ximg
->height
; ++y
)
534 for (x
= 0; x
< ximg
->width
; ++x
)
536 xp
= x
!= ximg
->width
- 1 ? x
+ 1 : 0;
537 xm
= x
!= 0 ? x
- 1 : ximg
->width
- 1;
538 yp
= y
!= ximg
->height
- 1 ? y
+ 1 : 0;
539 ym
= y
!= 0 ? y
- 1 : ximg
->height
- 1;
540 if (XGetPixel (ximg
, x
, y
) == bg
541 && XGetPixel (ximg
, x
, yp
) == bg
542 && XGetPixel (ximg
, x
, ym
) == bg
543 && XGetPixel (ximg
, xp
, y
) == bg
544 && XGetPixel (ximg
, xp
, yp
) == bg
545 && XGetPixel (ximg
, xp
, ym
) == bg
546 && XGetPixel (ximg
, xm
, y
) == bg
547 && XGetPixel (ximg
, xm
, yp
) == bg
548 && XGetPixel (ximg
, xm
, ym
) == bg
)
549 XPutPixel (mask_img
, x
, y
, 0);
551 XPutPixel (mask_img
, x
, y
, 1);
555 xassert (interrupt_input_blocked
);
556 gc
= XCreateGC (FRAME_X_DISPLAY (f
), mask
, 0, NULL
);
557 XPutImage (FRAME_X_DISPLAY (f
), mask
, gc
, mask_img
, 0, 0, 0, 0,
559 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
561 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
562 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
564 XDestroyImage (ximg
);
565 x_destroy_x_image (mask_img
);
570 #endif /* HAVE_X_WINDOWS */
573 /***********************************************************************
575 ***********************************************************************/
577 /* Value is the number of elements of vector VECTOR. */
579 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
581 /* List of supported image types. Use define_image_type to add new
582 types. Use lookup_image_type to find a type for a given symbol. */
584 static struct image_type
*image_types
;
586 /* A list of symbols, one for each supported image type. */
588 Lisp_Object Vimage_types
;
590 /* An alist of image types and libraries that implement the type. */
592 Lisp_Object Vimage_library_alist
;
594 /* Cache for delayed-loading image types. */
596 static Lisp_Object Vimage_type_cache
;
598 /* The symbol `xbm' which is used as the type symbol for XBM images. */
604 extern Lisp_Object QCwidth
, QCheight
, QCforeground
, QCbackground
, QCfile
;
605 extern Lisp_Object QCdata
, QCtype
;
606 extern Lisp_Object Qcenter
;
607 Lisp_Object QCascent
, QCmargin
, QCrelief
, Qcount
, Qextension_data
;
608 Lisp_Object QCconversion
, QCcolor_symbols
, QCheuristic_mask
;
609 Lisp_Object QCindex
, QCmatrix
, QCcolor_adjustment
, QCmask
;
613 Lisp_Object Qlaplace
, Qemboss
, Qedge_detection
, Qheuristic
;
615 /* Time in seconds after which images should be removed from the cache
618 Lisp_Object Vimage_cache_eviction_delay
;
620 /* Function prototypes. */
622 static Lisp_Object define_image_type
P_ ((struct image_type
*type
, int loaded
));
623 static struct image_type
*lookup_image_type
P_ ((Lisp_Object symbol
));
624 static void image_error
P_ ((char *format
, Lisp_Object
, Lisp_Object
));
625 static void x_laplace
P_ ((struct frame
*, struct image
*));
626 static void x_emboss
P_ ((struct frame
*, struct image
*));
627 static int x_build_heuristic_mask
P_ ((struct frame
*, struct image
*,
630 #define CACHE_IMAGE_TYPE(type, status) \
631 do { Vimage_type_cache = Fcons (Fcons (type, status), Vimage_type_cache); } while (0)
633 #define ADD_IMAGE_TYPE(type) \
634 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
636 /* Define a new image type from TYPE. This adds a copy of TYPE to
637 image_types and caches the loading status of TYPE. */
640 define_image_type (type
, loaded
)
641 struct image_type
*type
;
650 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
651 The initialized data segment is read-only. */
652 struct image_type
*p
= (struct image_type
*) xmalloc (sizeof *p
);
653 bcopy (type
, p
, sizeof *p
);
654 p
->next
= image_types
;
659 CACHE_IMAGE_TYPE (*type
->type
, success
);
664 /* Look up image type SYMBOL, and return a pointer to its image_type
665 structure. Value is null if SYMBOL is not a known image type. */
667 static INLINE
struct image_type
*
668 lookup_image_type (symbol
)
671 struct image_type
*type
;
673 /* We must initialize the image-type if it hasn't been already. */
674 if (NILP (Finit_image_library (symbol
, Vimage_library_alist
)))
675 return 0; /* unimplemented */
677 for (type
= image_types
; type
; type
= type
->next
)
678 if (EQ (symbol
, *type
->type
))
685 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
686 valid image specification is a list whose car is the symbol
687 `image', and whose rest is a property list. The property list must
688 contain a value for key `:type'. That value must be the name of a
689 supported image type. The rest of the property list depends on the
693 valid_image_p (object
)
702 for (tem
= XCDR (object
); CONSP (tem
); tem
= XCDR (tem
))
703 if (EQ (XCAR (tem
), QCtype
))
706 if (CONSP (tem
) && SYMBOLP (XCAR (tem
)))
708 struct image_type
*type
;
709 type
= lookup_image_type (XCAR (tem
));
711 valid_p
= type
->valid_p (object
);
722 /* Log error message with format string FORMAT and argument ARG.
723 Signaling an error, e.g. when an image cannot be loaded, is not a
724 good idea because this would interrupt redisplay, and the error
725 message display would lead to another redisplay. This function
726 therefore simply displays a message. */
729 image_error (format
, arg1
, arg2
)
731 Lisp_Object arg1
, arg2
;
733 add_to_log (format
, arg1
, arg2
);
738 /***********************************************************************
740 ***********************************************************************/
742 enum image_value_type
744 IMAGE_DONT_CHECK_VALUE_TYPE
,
746 IMAGE_STRING_OR_NIL_VALUE
,
748 IMAGE_POSITIVE_INTEGER_VALUE
,
749 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
,
750 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
753 IMAGE_FUNCTION_VALUE
,
758 /* Structure used when parsing image specifications. */
762 /* Name of keyword. */
765 /* The type of value allowed. */
766 enum image_value_type type
;
768 /* Non-zero means key must be present. */
771 /* Used to recognize duplicate keywords in a property list. */
774 /* The value that was found. */
779 static int parse_image_spec
P_ ((Lisp_Object
, struct image_keyword
*,
781 static Lisp_Object image_spec_value
P_ ((Lisp_Object
, Lisp_Object
, int *));
784 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
785 has the format (image KEYWORD VALUE ...). One of the keyword/
786 value pairs must be `:type TYPE'. KEYWORDS is a vector of
787 image_keywords structures of size NKEYWORDS describing other
788 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
791 parse_image_spec (spec
, keywords
, nkeywords
, type
)
793 struct image_keyword
*keywords
;
804 while (CONSP (plist
))
806 Lisp_Object key
, value
;
808 /* First element of a pair must be a symbol. */
810 plist
= XCDR (plist
);
814 /* There must follow a value. */
817 value
= XCAR (plist
);
818 plist
= XCDR (plist
);
820 /* Find key in KEYWORDS. Error if not found. */
821 for (i
= 0; i
< nkeywords
; ++i
)
822 if (strcmp (keywords
[i
].name
, SDATA (SYMBOL_NAME (key
))) == 0)
828 /* Record that we recognized the keyword. If a keywords
829 was found more than once, it's an error. */
830 keywords
[i
].value
= value
;
833 if (keywords
[i
].count
> 1)
836 /* Check type of value against allowed type. */
837 switch (keywords
[i
].type
)
839 case IMAGE_STRING_VALUE
:
840 if (!STRINGP (value
))
844 case IMAGE_STRING_OR_NIL_VALUE
:
845 if (!STRINGP (value
) && !NILP (value
))
849 case IMAGE_SYMBOL_VALUE
:
850 if (!SYMBOLP (value
))
854 case IMAGE_POSITIVE_INTEGER_VALUE
:
855 if (!INTEGERP (value
) || XINT (value
) <= 0)
859 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
:
860 if (INTEGERP (value
) && XINT (value
) >= 0)
863 && INTEGERP (XCAR (value
)) && INTEGERP (XCDR (value
))
864 && XINT (XCAR (value
)) >= 0 && XINT (XCDR (value
)) >= 0)
868 case IMAGE_ASCENT_VALUE
:
869 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
871 else if (INTEGERP (value
)
873 && XINT (value
) <= 100)
877 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
878 if (!INTEGERP (value
) || XINT (value
) < 0)
882 case IMAGE_DONT_CHECK_VALUE_TYPE
:
885 case IMAGE_FUNCTION_VALUE
:
886 value
= indirect_function (value
);
889 || (CONSP (value
) && EQ (XCAR (value
), Qlambda
)))
893 case IMAGE_NUMBER_VALUE
:
894 if (!INTEGERP (value
) && !FLOATP (value
))
898 case IMAGE_INTEGER_VALUE
:
899 if (!INTEGERP (value
))
903 case IMAGE_BOOL_VALUE
:
904 if (!NILP (value
) && !EQ (value
, Qt
))
913 if (EQ (key
, QCtype
) && !EQ (type
, value
))
917 /* Check that all mandatory fields are present. */
918 for (i
= 0; i
< nkeywords
; ++i
)
919 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
926 /* Return the value of KEY in image specification SPEC. Value is nil
927 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
928 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
931 image_spec_value (spec
, key
, found
)
932 Lisp_Object spec
, key
;
937 xassert (valid_image_p (spec
));
939 for (tail
= XCDR (spec
);
940 CONSP (tail
) && CONSP (XCDR (tail
));
941 tail
= XCDR (XCDR (tail
)))
943 if (EQ (XCAR (tail
), key
))
947 return XCAR (XCDR (tail
));
957 DEFUN ("image-size", Fimage_size
, Simage_size
, 1, 3, 0,
958 doc
: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
959 PIXELS non-nil means return the size in pixels, otherwise return the
960 size in canonical character units.
961 FRAME is the frame on which the image will be displayed. FRAME nil
962 or omitted means use the selected frame. */)
963 (spec
, pixels
, frame
)
964 Lisp_Object spec
, pixels
, frame
;
969 if (valid_image_p (spec
))
971 struct frame
*f
= check_x_frame (frame
);
972 int id
= lookup_image (f
, spec
);
973 struct image
*img
= IMAGE_FROM_ID (f
, id
);
974 int width
= img
->width
+ 2 * img
->hmargin
;
975 int height
= img
->height
+ 2 * img
->vmargin
;
978 size
= Fcons (make_float ((double) width
/ FRAME_COLUMN_WIDTH (f
)),
979 make_float ((double) height
/ FRAME_LINE_HEIGHT (f
)));
981 size
= Fcons (make_number (width
), make_number (height
));
984 error ("Invalid image specification");
990 DEFUN ("image-mask-p", Fimage_mask_p
, Simage_mask_p
, 1, 2, 0,
991 doc
: /* Return t if image SPEC has a mask bitmap.
992 FRAME is the frame on which the image will be displayed. FRAME nil
993 or omitted means use the selected frame. */)
995 Lisp_Object spec
, frame
;
1000 if (valid_image_p (spec
))
1002 struct frame
*f
= check_x_frame (frame
);
1003 int id
= lookup_image (f
, spec
);
1004 struct image
*img
= IMAGE_FROM_ID (f
, id
);
1009 error ("Invalid image specification");
1014 DEFUN ("image-metadata", Fimage_metadata
, Simage_metadata
, 1, 2, 0,
1015 doc
: /* Return metadata for image SPEC.
1016 FRAME is the frame on which the image will be displayed. FRAME nil
1017 or omitted means use the selected frame. */)
1019 Lisp_Object spec
, frame
;
1024 if (valid_image_p (spec
))
1026 struct frame
*f
= check_x_frame (frame
);
1027 int id
= lookup_image (f
, spec
);
1028 struct image
*img
= IMAGE_FROM_ID (f
, id
);
1029 ext
= img
->data
.lisp_val
;
1036 /***********************************************************************
1037 Image type independent image structures
1038 ***********************************************************************/
1040 static struct image
*make_image
P_ ((Lisp_Object spec
, unsigned hash
));
1041 static void free_image
P_ ((struct frame
*f
, struct image
*img
));
1042 static int check_image_size
P_ ((struct frame
*f
, int width
, int height
));
1044 #define MAX_IMAGE_SIZE 6.0
1045 Lisp_Object Vmax_image_size
;
1047 /* Allocate and return a new image structure for image specification
1048 SPEC. SPEC has a hash value of HASH. */
1050 static struct image
*
1051 make_image (spec
, hash
)
1055 struct image
*img
= (struct image
*) xmalloc (sizeof *img
);
1056 Lisp_Object file
= image_spec_value (spec
, QCfile
, NULL
);
1058 xassert (valid_image_p (spec
));
1059 bzero (img
, sizeof *img
);
1060 img
->dependencies
= NILP (file
) ? Qnil
: list1 (file
);
1061 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
1062 xassert (img
->type
!= NULL
);
1064 img
->data
.lisp_val
= Qnil
;
1065 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
1067 img
->corners
[BOT_CORNER
] = -1; /* Full image */
1072 /* Free image IMG which was used on frame F, including its resources. */
1081 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1083 /* Remove IMG from the hash table of its cache. */
1085 img
->prev
->next
= img
->next
;
1087 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
1090 img
->next
->prev
= img
->prev
;
1092 c
->images
[img
->id
] = NULL
;
1094 /* Free resources, then free IMG. */
1095 img
->type
->free (f
, img
);
1100 /* Return 1 if the given widths and heights are valid for display;
1101 otherwise, return 0. */
1104 check_image_size (f
, width
, height
)
1111 if (width
<= 0 || height
<= 0)
1114 if (INTEGERP (Vmax_image_size
))
1115 w
= h
= XINT (Vmax_image_size
);
1116 else if (FLOATP (Vmax_image_size
))
1120 w
= FRAME_PIXEL_WIDTH (f
);
1121 h
= FRAME_PIXEL_HEIGHT (f
);
1124 w
= h
= 1024; /* Arbitrary size for unknown frame. */
1125 w
= (int) (XFLOAT_DATA (Vmax_image_size
) * w
);
1126 h
= (int) (XFLOAT_DATA (Vmax_image_size
) * h
);
1131 return (width
<= w
&& height
<= h
);
1134 /* Prepare image IMG for display on frame F. Must be called before
1135 drawing an image. */
1138 prepare_image_for_display (f
, img
)
1144 /* We're about to display IMG, so set its timestamp to `now'. */
1146 img
->timestamp
= EMACS_SECS (t
);
1148 /* If IMG doesn't have a pixmap yet, load it now, using the image
1149 type dependent loader function. */
1150 if (img
->pixmap
== NO_PIXMAP
&& !img
->load_failed_p
)
1151 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
1156 /* Value is the number of pixels for the ascent of image IMG when
1157 drawn in face FACE. */
1160 image_ascent (img
, face
, slice
)
1163 struct glyph_slice
*slice
;
1168 if (slice
->height
== img
->height
)
1169 height
= img
->height
+ img
->vmargin
;
1170 else if (slice
->y
== 0)
1171 height
= slice
->height
+ img
->vmargin
;
1173 height
= slice
->height
;
1175 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
1180 /* W32 specific version. Why?. ++kfs */
1181 ascent
= height
/ 2 - (FONT_DESCENT (face
->font
)
1182 - FONT_BASE (face
->font
)) / 2;
1184 /* This expression is arranged so that if the image can't be
1185 exactly centered, it will be moved slightly up. This is
1186 because a typical font is `top-heavy' (due to the presence
1187 uppercase letters), so the image placement should err towards
1188 being top-heavy too. It also just generally looks better. */
1189 ascent
= (height
+ FONT_BASE(face
->font
)
1190 - FONT_DESCENT(face
->font
) + 1) / 2;
1191 #endif /* HAVE_NTGUI */
1194 ascent
= height
/ 2;
1197 ascent
= (int) (height
* img
->ascent
/ 100.0);
1203 /* Image background colors. */
1205 /* Find the "best" corner color of a bitmap.
1206 On W32, XIMG is assumed to a device context with the bitmap selected. */
1208 static RGB_PIXEL_COLOR
1209 four_corners_best (ximg
, corners
, width
, height
)
1210 XImagePtr_or_DC ximg
;
1212 unsigned long width
, height
;
1214 RGB_PIXEL_COLOR corner_pixels
[4], best
;
1217 if (corners
&& corners
[BOT_CORNER
] >= 0)
1219 /* Get the colors at the corner_pixels of ximg. */
1220 corner_pixels
[0] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[TOP_CORNER
]);
1221 corner_pixels
[1] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[TOP_CORNER
]);
1222 corner_pixels
[2] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[BOT_CORNER
] - 1);
1223 corner_pixels
[3] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[BOT_CORNER
] - 1);
1227 /* Get the colors at the corner_pixels of ximg. */
1228 corner_pixels
[0] = GET_PIXEL (ximg
, 0, 0);
1229 corner_pixels
[1] = GET_PIXEL (ximg
, width
- 1, 0);
1230 corner_pixels
[2] = GET_PIXEL (ximg
, width
- 1, height
- 1);
1231 corner_pixels
[3] = GET_PIXEL (ximg
, 0, height
- 1);
1233 /* Choose the most frequently found color as background. */
1234 for (i
= best_count
= 0; i
< 4; ++i
)
1238 for (j
= n
= 0; j
< 4; ++j
)
1239 if (corner_pixels
[i
] == corner_pixels
[j
])
1243 best
= corner_pixels
[i
], best_count
= n
;
1249 /* Portability macros */
1253 #define Destroy_Image(img_dc, prev) \
1254 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1256 #define Free_Pixmap(display, pixmap) \
1257 DeleteObject (pixmap)
1259 #elif defined (HAVE_NS)
1261 #define Destroy_Image(ximg, dummy) \
1262 ns_release_object(ximg)
1264 #define Free_Pixmap(display, pixmap) \
1265 ns_release_object(pixmap)
1269 #define Destroy_Image(ximg, dummy) \
1270 XDestroyImage (ximg)
1272 #define Free_Pixmap(display, pixmap) \
1273 XFreePixmap (display, pixmap)
1275 #endif /* !HAVE_NTGUI && !HAVE_NS */
1278 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1279 it is guessed heuristically. If non-zero, XIMG is an existing
1280 XImage object (or device context with the image selected on W32) to
1281 use for the heuristic. */
1284 image_background (img
, f
, ximg
)
1287 XImagePtr_or_DC ximg
;
1289 if (! img
->background_valid
)
1290 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1292 int free_ximg
= !ximg
;
1295 #endif /* HAVE_NTGUI */
1300 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
1301 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1303 HDC frame_dc
= get_frame_dc (f
);
1304 ximg
= CreateCompatibleDC (frame_dc
);
1305 release_frame_dc (f
, frame_dc
);
1306 prev
= SelectObject (ximg
, img
->pixmap
);
1307 #endif /* !HAVE_NTGUI */
1310 img
->background
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
1313 Destroy_Image (ximg
, prev
);
1315 img
->background_valid
= 1;
1318 return img
->background
;
1321 /* Return the `background_transparent' field of IMG. If IMG doesn't
1322 have one yet, it is guessed heuristically. If non-zero, MASK is an
1323 existing XImage object to use for the heuristic. */
1326 image_background_transparent (img
, f
, mask
)
1329 XImagePtr_or_DC mask
;
1331 if (! img
->background_transparent_valid
)
1332 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1336 int free_mask
= !mask
;
1339 #endif /* HAVE_NTGUI */
1344 mask
= XGetImage (FRAME_X_DISPLAY (f
), img
->mask
,
1345 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1347 HDC frame_dc
= get_frame_dc (f
);
1348 mask
= CreateCompatibleDC (frame_dc
);
1349 release_frame_dc (f
, frame_dc
);
1350 prev
= SelectObject (mask
, img
->mask
);
1351 #endif /* HAVE_NTGUI */
1354 img
->background_transparent
1355 = (four_corners_best (mask
, img
->corners
, img
->width
, img
->height
) == PIX_MASK_RETAIN
);
1358 Destroy_Image (mask
, prev
);
1361 img
->background_transparent
= 0;
1363 img
->background_transparent_valid
= 1;
1366 return img
->background_transparent
;
1370 /***********************************************************************
1371 Helper functions for X image types
1372 ***********************************************************************/
1374 static void x_clear_image_1
P_ ((struct frame
*, struct image
*, int,
1376 static void x_clear_image
P_ ((struct frame
*f
, struct image
*img
));
1377 static unsigned long x_alloc_image_color
P_ ((struct frame
*f
,
1379 Lisp_Object color_name
,
1380 unsigned long dflt
));
1383 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
1384 free the pixmap if any. MASK_P non-zero means clear the mask
1385 pixmap if any. COLORS_P non-zero means free colors allocated for
1386 the image, if any. */
1389 x_clear_image_1 (f
, img
, pixmap_p
, mask_p
, colors_p
)
1392 int pixmap_p
, mask_p
, colors_p
;
1394 if (pixmap_p
&& img
->pixmap
)
1396 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
1397 img
->pixmap
= NO_PIXMAP
;
1398 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1399 img
->background_valid
= 0;
1402 if (mask_p
&& img
->mask
)
1404 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1405 img
->mask
= NO_PIXMAP
;
1406 img
->background_transparent_valid
= 0;
1409 if (colors_p
&& img
->ncolors
)
1411 /* W32_TODO: color table support. */
1412 #ifdef HAVE_X_WINDOWS
1413 x_free_colors (f
, img
->colors
, img
->ncolors
);
1414 #endif /* HAVE_X_WINDOWS */
1415 xfree (img
->colors
);
1422 /* Free X resources of image IMG which is used on frame F. */
1425 x_clear_image (f
, img
)
1430 x_clear_image_1 (f
, img
, 1, 1, 1);
1435 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1436 cannot be allocated, use DFLT. Add a newly allocated color to
1437 IMG->colors, so that it can be freed again. Value is the pixel
1440 static unsigned long
1441 x_alloc_image_color (f
, img
, color_name
, dflt
)
1444 Lisp_Object color_name
;
1448 unsigned long result
;
1450 xassert (STRINGP (color_name
));
1452 if (x_defined_color (f
, SDATA (color_name
), &color
, 1))
1454 /* This isn't called frequently so we get away with simply
1455 reallocating the color vector to the needed size, here. */
1458 (unsigned long *) xrealloc (img
->colors
,
1459 img
->ncolors
* sizeof *img
->colors
);
1460 img
->colors
[img
->ncolors
- 1] = color
.pixel
;
1461 result
= color
.pixel
;
1471 /***********************************************************************
1473 ***********************************************************************/
1475 static struct image
*search_image_cache
P_ ((struct frame
*, Lisp_Object
, unsigned));
1476 static void cache_image
P_ ((struct frame
*f
, struct image
*img
));
1477 static void postprocess_image
P_ ((struct frame
*, struct image
*));
1479 /* Return a new, initialized image cache that is allocated from the
1480 heap. Call free_image_cache to free an image cache. */
1482 struct image_cache
*
1485 struct image_cache
*c
= (struct image_cache
*) xmalloc (sizeof *c
);
1488 bzero (c
, sizeof *c
);
1490 c
->images
= (struct image
**) xmalloc (c
->size
* sizeof *c
->images
);
1491 size
= IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
1492 c
->buckets
= (struct image
**) xmalloc (size
);
1493 bzero (c
->buckets
, size
);
1498 /* Find an image matching SPEC in the cache, and return it. If no
1499 image is found, return NULL. */
1500 static struct image
*
1501 search_image_cache (f
, spec
, hash
)
1507 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1508 int i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1510 if (!c
) return NULL
;
1512 /* If the image spec does not specify a background color, the cached
1513 image must have the same background color as the current frame.
1514 The foreground color must also match, for the sake of monochrome
1517 In fact, we could ignore the foreground color matching condition
1518 for color images, or if the image spec specifies :foreground;
1519 similarly we could ignore the background color matching condition
1520 for formats that don't use transparency (such as jpeg), or if the
1521 image spec specifies :background. However, the extra memory
1522 usage is probably negligible in practice, so we don't bother. */
1524 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
1525 if (img
->hash
== hash
1526 && !NILP (Fequal (img
->spec
, spec
))
1527 && img
->frame_foreground
== FRAME_FOREGROUND_PIXEL (f
)
1528 && img
->frame_background
== FRAME_BACKGROUND_PIXEL (f
))
1534 /* Search frame F for an image with spec SPEC, and free it. */
1537 uncache_image (f
, spec
)
1541 struct image
*img
= search_image_cache (f
, spec
, sxhash (spec
, 0));
1543 free_image (f
, img
);
1547 /* Free image cache of frame F. Be aware that X frames share images
1551 free_image_cache (f
)
1554 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1559 /* Cache should not be referenced by any frame when freed. */
1560 xassert (c
->refcount
== 0);
1562 for (i
= 0; i
< c
->used
; ++i
)
1563 free_image (f
, c
->images
[i
]);
1567 FRAME_IMAGE_CACHE (f
) = NULL
;
1572 /* Clear image cache of frame F. FILTER=t means free all images.
1573 FILTER=nil means clear only images that haven't been
1574 displayed for some time.
1575 Else, only free the images which have FILTER in their `dependencies'.
1576 Should be called from time to time to reduce the number of loaded images.
1577 If image-cache-eviction-delay is non-nil, this frees images in the cache
1578 which weren't displayed for at least that many seconds. */
1581 clear_image_cache (struct frame
*f
, Lisp_Object filter
)
1583 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1585 if (c
&& (!NILP (filter
) || INTEGERP (Vimage_cache_eviction_delay
)))
1592 old
= EMACS_SECS (t
) - XFASTINT (Vimage_cache_eviction_delay
);
1594 /* Block input so that we won't be interrupted by a SIGIO
1595 while being in an inconsistent state. */
1598 for (i
= nfreed
= 0; i
< c
->used
; ++i
)
1600 struct image
*img
= c
->images
[i
];
1602 && (NILP (filter
) ? img
->timestamp
< old
1604 || !NILP (Fmember (filter
, img
->dependencies
)))))
1606 free_image (f
, img
);
1611 /* We may be clearing the image cache because, for example,
1612 Emacs was iconified for a longer period of time. In that
1613 case, current matrices may still contain references to
1614 images freed above. So, clear these matrices. */
1617 Lisp_Object tail
, frame
;
1619 FOR_EACH_FRAME (tail
, frame
)
1621 struct frame
*f
= XFRAME (frame
);
1622 if (FRAME_IMAGE_CACHE (f
) == c
)
1623 clear_current_matrices (f
);
1626 ++windows_or_buffers_changed
;
1634 clear_image_caches (Lisp_Object filter
)
1636 /* FIXME: We want to do
1637 * struct terminal *t;
1638 * for (t = terminal_list; t; t = t->next_terminal)
1639 * clear_image_cache (t, filter); */
1640 Lisp_Object tail
, frame
;
1641 FOR_EACH_FRAME (tail
, frame
)
1642 if (FRAME_WINDOW_P (XFRAME (frame
)))
1643 clear_image_cache (XFRAME (frame
), filter
);
1646 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
1648 doc
: /* Clear the image cache.
1649 FILTER nil or a frame means clear all images in the selected frame.
1650 FILTER t means clear the image caches of all frames.
1651 Anything else, means only clear those images which refer to FILTER,
1652 which is then usually a filename. */)
1656 if (!(EQ (filter
, Qnil
) || FRAMEP (filter
)))
1657 clear_image_caches (filter
);
1659 clear_image_cache (check_x_frame (filter
), Qt
);
1665 DEFUN ("image-refresh", Fimage_refresh
, Simage_refresh
,
1667 doc
: /* Refresh the image with specification SPEC on frame FRAME.
1668 If SPEC specifies an image file, the displayed image is updated with
1669 the current contents of that file.
1670 FRAME nil or omitted means use the selected frame.
1671 FRAME t means refresh the image on all frames. */)
1673 Lisp_Object spec
, frame
;
1675 if (!valid_image_p (spec
))
1676 error ("Invalid image specification");
1681 FOR_EACH_FRAME (tail
, frame
)
1683 struct frame
*f
= XFRAME (frame
);
1684 if (FRAME_WINDOW_P (f
))
1685 uncache_image (f
, spec
);
1689 uncache_image (check_x_frame (frame
), spec
);
1695 /* Compute masks and transform image IMG on frame F, as specified
1696 by the image's specification, */
1699 postprocess_image (f
, img
)
1703 /* Manipulation of the image's mask. */
1706 Lisp_Object conversion
, spec
;
1711 /* `:heuristic-mask t'
1713 means build a mask heuristically.
1714 `:heuristic-mask (R G B)'
1715 `:mask (heuristic (R G B))'
1716 means build a mask from color (R G B) in the
1719 means remove a mask, if any. */
1721 mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
1723 x_build_heuristic_mask (f
, img
, mask
);
1728 mask
= image_spec_value (spec
, QCmask
, &found_p
);
1730 if (EQ (mask
, Qheuristic
))
1731 x_build_heuristic_mask (f
, img
, Qt
);
1732 else if (CONSP (mask
)
1733 && EQ (XCAR (mask
), Qheuristic
))
1735 if (CONSP (XCDR (mask
)))
1736 x_build_heuristic_mask (f
, img
, XCAR (XCDR (mask
)));
1738 x_build_heuristic_mask (f
, img
, XCDR (mask
));
1740 else if (NILP (mask
) && found_p
&& img
->mask
)
1742 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1743 img
->mask
= NO_PIXMAP
;
1748 /* Should we apply an image transformation algorithm? */
1749 conversion
= image_spec_value (spec
, QCconversion
, NULL
);
1750 if (EQ (conversion
, Qdisabled
))
1751 x_disable_image (f
, img
);
1752 else if (EQ (conversion
, Qlaplace
))
1754 else if (EQ (conversion
, Qemboss
))
1756 else if (CONSP (conversion
)
1757 && EQ (XCAR (conversion
), Qedge_detection
))
1760 tem
= XCDR (conversion
);
1762 x_edge_detection (f
, img
,
1763 Fplist_get (tem
, QCmatrix
),
1764 Fplist_get (tem
, QCcolor_adjustment
));
1770 /* Return the id of image with Lisp specification SPEC on frame F.
1771 SPEC must be a valid Lisp image specification (see valid_image_p). */
1774 lookup_image (f
, spec
)
1778 struct image_cache
*c
;
1781 struct gcpro gcpro1
;
1784 /* F must be a window-system frame, and SPEC must be a valid image
1786 xassert (FRAME_WINDOW_P (f
));
1787 xassert (valid_image_p (spec
));
1789 c
= FRAME_IMAGE_CACHE (f
);
1793 /* Look up SPEC in the hash table of the image cache. */
1794 hash
= sxhash (spec
, 0);
1795 img
= search_image_cache (f
, spec
, hash
);
1796 if (img
&& img
->load_failed_p
)
1798 free_image (f
, img
);
1802 /* If not found, create a new image and cache it. */
1805 extern Lisp_Object Qpostscript
;
1808 img
= make_image (spec
, hash
);
1809 cache_image (f
, img
);
1810 img
->load_failed_p
= img
->type
->load (f
, img
) == 0;
1811 img
->frame_foreground
= FRAME_FOREGROUND_PIXEL (f
);
1812 img
->frame_background
= FRAME_BACKGROUND_PIXEL (f
);
1814 /* If we can't load the image, and we don't have a width and
1815 height, use some arbitrary width and height so that we can
1816 draw a rectangle for it. */
1817 if (img
->load_failed_p
)
1821 value
= image_spec_value (spec
, QCwidth
, NULL
);
1822 img
->width
= (INTEGERP (value
)
1823 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
1824 value
= image_spec_value (spec
, QCheight
, NULL
);
1825 img
->height
= (INTEGERP (value
)
1826 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
1830 /* Handle image type independent image attributes
1831 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1832 `:background COLOR'. */
1833 Lisp_Object ascent
, margin
, relief
, bg
;
1835 ascent
= image_spec_value (spec
, QCascent
, NULL
);
1836 if (INTEGERP (ascent
))
1837 img
->ascent
= XFASTINT (ascent
);
1838 else if (EQ (ascent
, Qcenter
))
1839 img
->ascent
= CENTERED_IMAGE_ASCENT
;
1841 margin
= image_spec_value (spec
, QCmargin
, NULL
);
1842 if (INTEGERP (margin
) && XINT (margin
) >= 0)
1843 img
->vmargin
= img
->hmargin
= XFASTINT (margin
);
1844 else if (CONSP (margin
) && INTEGERP (XCAR (margin
))
1845 && INTEGERP (XCDR (margin
)))
1847 if (XINT (XCAR (margin
)) > 0)
1848 img
->hmargin
= XFASTINT (XCAR (margin
));
1849 if (XINT (XCDR (margin
)) > 0)
1850 img
->vmargin
= XFASTINT (XCDR (margin
));
1853 relief
= image_spec_value (spec
, QCrelief
, NULL
);
1854 if (INTEGERP (relief
))
1856 img
->relief
= XINT (relief
);
1857 img
->hmargin
+= eabs (img
->relief
);
1858 img
->vmargin
+= eabs (img
->relief
);
1861 if (! img
->background_valid
)
1863 bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
1867 = x_alloc_image_color (f
, img
, bg
,
1868 FRAME_BACKGROUND_PIXEL (f
));
1869 img
->background_valid
= 1;
1873 /* Do image transformations and compute masks, unless we
1874 don't have the image yet. */
1875 if (!EQ (*img
->type
->type
, Qpostscript
))
1876 postprocess_image (f
, img
);
1882 /* We're using IMG, so set its timestamp to `now'. */
1883 EMACS_GET_TIME (now
);
1884 img
->timestamp
= EMACS_SECS (now
);
1888 /* Value is the image id. */
1893 /* Cache image IMG in the image cache of frame F. */
1896 cache_image (f
, img
)
1900 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1903 /* Find a free slot in c->images. */
1904 for (i
= 0; i
< c
->used
; ++i
)
1905 if (c
->images
[i
] == NULL
)
1908 /* If no free slot found, maybe enlarge c->images. */
1909 if (i
== c
->used
&& c
->used
== c
->size
)
1912 c
->images
= (struct image
**) xrealloc (c
->images
,
1913 c
->size
* sizeof *c
->images
);
1916 /* Add IMG to c->images, and assign IMG an id. */
1922 /* Add IMG to the cache's hash table. */
1923 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1924 img
->next
= c
->buckets
[i
];
1926 img
->next
->prev
= img
;
1928 c
->buckets
[i
] = img
;
1932 /* Call FN on every image in the image cache of frame F. Used to mark
1933 Lisp Objects in the image cache. */
1935 /* Mark Lisp objects in image IMG. */
1941 mark_object (img
->spec
);
1942 mark_object (img
->dependencies
);
1944 if (!NILP (img
->data
.lisp_val
))
1945 mark_object (img
->data
.lisp_val
);
1950 mark_image_cache (struct image_cache
*c
)
1955 for (i
= 0; i
< c
->used
; ++i
)
1957 mark_image (c
->images
[i
]);
1963 /***********************************************************************
1964 X / NS / W32 support code
1965 ***********************************************************************/
1969 /* Macro for defining functions that will be loaded from image DLLs. */
1970 #define DEF_IMGLIB_FN(func) int (FAR CDECL *fn_##func)()
1972 /* Macro for loading those image functions from the library. */
1973 #define LOAD_IMGLIB_FN(lib,func) { \
1974 fn_##func = (void *) GetProcAddress (lib, #func); \
1975 if (!fn_##func) return 0; \
1978 /* Load a DLL implementing an image type.
1979 The `image-library-alist' variable associates a symbol,
1980 identifying an image type, to a list of possible filenames.
1981 The function returns NULL if no library could be loaded for
1982 the given image type, or if the library was previously loaded;
1983 else the handle of the DLL. */
1985 w32_delayed_load (Lisp_Object libraries
, Lisp_Object type
)
1987 HMODULE library
= NULL
;
1989 if (CONSP (libraries
) && NILP (Fassq (type
, Vimage_type_cache
)))
1991 Lisp_Object dlls
= Fassq (type
, libraries
);
1994 for (dlls
= XCDR (dlls
); CONSP (dlls
); dlls
= XCDR (dlls
))
1996 CHECK_STRING_CAR (dlls
);
1997 if (library
= LoadLibrary (SDATA (XCAR (dlls
))))
2005 #endif /* HAVE_NTGUI */
2007 static int x_create_x_image_and_pixmap
P_ ((struct frame
*, int, int, int,
2008 XImagePtr
*, Pixmap
*));
2009 static void x_destroy_x_image
P_ ((XImagePtr
));
2010 static void x_put_x_image
P_ ((struct frame
*, XImagePtr
, Pixmap
, int, int));
2013 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
2014 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
2015 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
2016 via xmalloc. Print error messages via image_error if an error
2017 occurs. Value is non-zero if successful.
2019 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
2020 should indicate the bit depth of the image. */
2023 x_create_x_image_and_pixmap (f
, width
, height
, depth
, ximg
, pixmap
)
2025 int width
, height
, depth
;
2029 #ifdef HAVE_X_WINDOWS
2030 Display
*display
= FRAME_X_DISPLAY (f
);
2031 Window window
= FRAME_X_WINDOW (f
);
2032 Screen
*screen
= FRAME_X_SCREEN (f
);
2034 xassert (interrupt_input_blocked
);
2037 depth
= DefaultDepthOfScreen (screen
);
2038 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
2039 depth
, ZPixmap
, 0, NULL
, width
, height
,
2040 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
2043 image_error ("Unable to allocate X image", Qnil
, Qnil
);
2047 /* Allocate image raster. */
2048 (*ximg
)->data
= (char *) xmalloc ((*ximg
)->bytes_per_line
* height
);
2050 /* Allocate a pixmap of the same size. */
2051 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
2052 if (*pixmap
== NO_PIXMAP
)
2054 x_destroy_x_image (*ximg
);
2056 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
2061 #endif /* HAVE_X_WINDOWS */
2065 BITMAPINFOHEADER
*header
;
2067 int scanline_width_bits
;
2069 int palette_colors
= 0;
2074 if (depth
!= 1 && depth
!= 4 && depth
!= 8
2075 && depth
!= 16 && depth
!= 24 && depth
!= 32)
2077 image_error ("Invalid image bit depth specified", Qnil
, Qnil
);
2081 scanline_width_bits
= width
* depth
;
2082 remainder
= scanline_width_bits
% 32;
2085 scanline_width_bits
+= 32 - remainder
;
2087 /* Bitmaps with a depth less than 16 need a palette. */
2088 /* BITMAPINFO structure already contains the first RGBQUAD. */
2090 palette_colors
= 1 << depth
- 1;
2092 *ximg
= xmalloc (sizeof (XImage
) + palette_colors
* sizeof (RGBQUAD
));
2095 image_error ("Unable to allocate memory for XImage", Qnil
, Qnil
);
2099 header
= &((*ximg
)->info
.bmiHeader
);
2100 bzero (&((*ximg
)->info
), sizeof (BITMAPINFO
));
2101 header
->biSize
= sizeof (*header
);
2102 header
->biWidth
= width
;
2103 header
->biHeight
= -height
; /* negative indicates a top-down bitmap. */
2104 header
->biPlanes
= 1;
2105 header
->biBitCount
= depth
;
2106 header
->biCompression
= BI_RGB
;
2107 header
->biClrUsed
= palette_colors
;
2109 /* TODO: fill in palette. */
2112 (*ximg
)->info
.bmiColors
[0].rgbBlue
= 0;
2113 (*ximg
)->info
.bmiColors
[0].rgbGreen
= 0;
2114 (*ximg
)->info
.bmiColors
[0].rgbRed
= 0;
2115 (*ximg
)->info
.bmiColors
[0].rgbReserved
= 0;
2116 (*ximg
)->info
.bmiColors
[1].rgbBlue
= 255;
2117 (*ximg
)->info
.bmiColors
[1].rgbGreen
= 255;
2118 (*ximg
)->info
.bmiColors
[1].rgbRed
= 255;
2119 (*ximg
)->info
.bmiColors
[1].rgbReserved
= 0;
2122 hdc
= get_frame_dc (f
);
2124 /* Create a DIBSection and raster array for the bitmap,
2125 and store its handle in *pixmap. */
2126 *pixmap
= CreateDIBSection (hdc
, &((*ximg
)->info
),
2127 (depth
< 16) ? DIB_PAL_COLORS
: DIB_RGB_COLORS
,
2128 /* casting avoids a GCC warning */
2129 (void **)&((*ximg
)->data
), NULL
, 0);
2131 /* Realize display palette and garbage all frames. */
2132 release_frame_dc (f
, hdc
);
2134 if (*pixmap
== NULL
)
2136 DWORD err
= GetLastError ();
2137 Lisp_Object errcode
;
2138 /* All system errors are < 10000, so the following is safe. */
2139 XSETINT (errcode
, (int) err
);
2140 image_error ("Unable to create bitmap, error code %d", errcode
, Qnil
);
2141 x_destroy_x_image (*ximg
);
2147 #endif /* HAVE_NTGUI */
2150 *pixmap
= ns_image_for_XPM(width
, height
, depth
);
2154 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil
, Qnil
);
2163 /* Destroy XImage XIMG. Free XIMG->data. */
2166 x_destroy_x_image (ximg
)
2169 xassert (interrupt_input_blocked
);
2172 #ifdef HAVE_X_WINDOWS
2175 XDestroyImage (ximg
);
2176 #endif /* HAVE_X_WINDOWS */
2178 /* Data will be freed by DestroyObject. */
2181 #endif /* HAVE_NTGUI */
2183 ns_release_object(ximg
);
2184 #endif /* HAVE_NS */
2189 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2190 are width and height of both the image and pixmap. */
2193 x_put_x_image (f
, ximg
, pixmap
, width
, height
)
2199 #ifdef HAVE_X_WINDOWS
2202 xassert (interrupt_input_blocked
);
2203 gc
= XCreateGC (FRAME_X_DISPLAY (f
), pixmap
, 0, NULL
);
2204 XPutImage (FRAME_X_DISPLAY (f
), pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
2205 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
2206 #endif /* HAVE_X_WINDOWS */
2209 #if 0 /* I don't think this is necessary looking at where it is used. */
2210 HDC hdc
= get_frame_dc (f
);
2211 SetDIBits (hdc
, pixmap
, 0, height
, ximg
->data
, &(ximg
->info
), DIB_RGB_COLORS
);
2212 release_frame_dc (f
, hdc
);
2214 #endif /* HAVE_NTGUI */
2217 xassert (ximg
== pixmap
);
2218 ns_retain_object(ximg
);
2223 /***********************************************************************
2225 ***********************************************************************/
2227 static unsigned char *slurp_file
P_ ((char *, int *));
2230 /* Find image file FILE. Look in data-directory/images, then
2231 x-bitmap-file-path. Value is the encoded full name of the file
2232 found, or nil if not found. */
2235 x_find_image_file (file
)
2238 Lisp_Object file_found
, search_path
;
2239 struct gcpro gcpro1
, gcpro2
;
2243 /* TODO I think this should use something like image-load-path
2244 instead. Unfortunately, that can contain non-string elements. */
2245 search_path
= Fcons (Fexpand_file_name (build_string ("images"),
2247 Vx_bitmap_file_path
);
2248 GCPRO2 (file_found
, search_path
);
2250 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2251 fd
= openp (search_path
, file
, Qnil
, &file_found
, Qnil
);
2257 file_found
= ENCODE_FILE (file_found
);
2266 /* Read FILE into memory. Value is a pointer to a buffer allocated
2267 with xmalloc holding FILE's contents. Value is null if an error
2268 occurred. *SIZE is set to the size of the file. */
2270 static unsigned char *
2271 slurp_file (file
, size
)
2276 unsigned char *buf
= NULL
;
2279 if (stat (file
, &st
) == 0
2280 && (fp
= fopen (file
, "rb")) != NULL
2281 && (buf
= (unsigned char *) xmalloc (st
.st_size
),
2282 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
2303 /***********************************************************************
2305 ***********************************************************************/
2307 static int xbm_scan
P_ ((unsigned char **, unsigned char *, char *, int *));
2308 static int xbm_load
P_ ((struct frame
*f
, struct image
*img
));
2309 static int xbm_load_image
P_ ((struct frame
*f
, struct image
*img
,
2310 unsigned char *, unsigned char *));
2311 static int xbm_image_p
P_ ((Lisp_Object object
));
2312 static int xbm_read_bitmap_data
P_ ((struct frame
*f
,
2313 unsigned char *, unsigned char *,
2314 int *, int *, unsigned char **, int));
2315 static int xbm_file_p
P_ ((Lisp_Object
));
2318 /* Indices of image specification fields in xbm_format, below. */
2320 enum xbm_keyword_index
2338 /* Vector of image_keyword structures describing the format
2339 of valid XBM image specifications. */
2341 static const struct image_keyword xbm_format
[XBM_LAST
] =
2343 {":type", IMAGE_SYMBOL_VALUE
, 1},
2344 {":file", IMAGE_STRING_VALUE
, 0},
2345 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2346 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2347 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2348 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
2349 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
2350 {":ascent", IMAGE_ASCENT_VALUE
, 0},
2351 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
2352 {":relief", IMAGE_INTEGER_VALUE
, 0},
2353 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2354 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2355 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
2358 /* Structure describing the image type XBM. */
2360 static struct image_type xbm_type
=
2369 /* Tokens returned from xbm_scan. */
2378 /* Return non-zero if OBJECT is a valid XBM-type image specification.
2379 A valid specification is a list starting with the symbol `image'
2380 The rest of the list is a property list which must contain an
2383 If the specification specifies a file to load, it must contain
2384 an entry `:file FILENAME' where FILENAME is a string.
2386 If the specification is for a bitmap loaded from memory it must
2387 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2388 WIDTH and HEIGHT are integers > 0. DATA may be:
2390 1. a string large enough to hold the bitmap data, i.e. it must
2391 have a size >= (WIDTH + 7) / 8 * HEIGHT
2393 2. a bool-vector of size >= WIDTH * HEIGHT
2395 3. a vector of strings or bool-vectors, one for each line of the
2398 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2399 may not be specified in this case because they are defined in the
2402 Both the file and data forms may contain the additional entries
2403 `:background COLOR' and `:foreground COLOR'. If not present,
2404 foreground and background of the frame on which the image is
2405 displayed is used. */
2408 xbm_image_p (object
)
2411 struct image_keyword kw
[XBM_LAST
];
2413 bcopy (xbm_format
, kw
, sizeof kw
);
2414 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
2417 xassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
2419 if (kw
[XBM_FILE
].count
)
2421 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
2424 else if (kw
[XBM_DATA
].count
&& xbm_file_p (kw
[XBM_DATA
].value
))
2426 /* In-memory XBM file. */
2427 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_FILE
].count
)
2435 /* Entries for `:width', `:height' and `:data' must be present. */
2436 if (!kw
[XBM_WIDTH
].count
2437 || !kw
[XBM_HEIGHT
].count
2438 || !kw
[XBM_DATA
].count
)
2441 data
= kw
[XBM_DATA
].value
;
2442 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
2443 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
2445 /* Check type of data, and width and height against contents of
2451 /* Number of elements of the vector must be >= height. */
2452 if (XVECTOR (data
)->size
< height
)
2455 /* Each string or bool-vector in data must be large enough
2456 for one line of the image. */
2457 for (i
= 0; i
< height
; ++i
)
2459 Lisp_Object elt
= XVECTOR (data
)->contents
[i
];
2464 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
2467 else if (BOOL_VECTOR_P (elt
))
2469 if (XBOOL_VECTOR (elt
)->size
< width
)
2476 else if (STRINGP (data
))
2479 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
2482 else if (BOOL_VECTOR_P (data
))
2484 if (XBOOL_VECTOR (data
)->size
< width
* height
)
2495 /* Scan a bitmap file. FP is the stream to read from. Value is
2496 either an enumerator from enum xbm_token, or a character for a
2497 single-character token, or 0 at end of file. If scanning an
2498 identifier, store the lexeme of the identifier in SVAL. If
2499 scanning a number, store its value in *IVAL. */
2502 xbm_scan (s
, end
, sval
, ival
)
2503 unsigned char **s
, *end
;
2511 /* Skip white space. */
2512 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
2517 else if (isdigit (c
))
2519 int value
= 0, digit
;
2521 if (c
== '0' && *s
< end
)
2524 if (c
== 'x' || c
== 'X')
2531 else if (c
>= 'a' && c
<= 'f')
2532 digit
= c
- 'a' + 10;
2533 else if (c
>= 'A' && c
<= 'F')
2534 digit
= c
- 'A' + 10;
2537 value
= 16 * value
+ digit
;
2540 else if (isdigit (c
))
2544 && (c
= *(*s
)++, isdigit (c
)))
2545 value
= 8 * value
+ c
- '0';
2552 && (c
= *(*s
)++, isdigit (c
)))
2553 value
= 10 * value
+ c
- '0';
2561 else if (isalpha (c
) || c
== '_')
2565 && (c
= *(*s
)++, (isalnum (c
) || c
== '_')))
2572 else if (c
== '/' && **s
== '*')
2574 /* C-style comment. */
2576 while (**s
&& (**s
!= '*' || *(*s
+ 1) != '/'))
2590 /* Create a Windows bitmap from X bitmap data. */
2592 w32_create_pixmap_from_bitmap_data (int width
, int height
, char *data
)
2594 static unsigned char swap_nibble
[16]
2595 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2596 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2597 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2598 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2600 unsigned char *bits
, *p
;
2603 w1
= (width
+ 7) / 8; /* nb of 8bits elt in X bitmap */
2604 w2
= ((width
+ 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2605 bits
= (unsigned char *) alloca (height
* w2
);
2606 bzero (bits
, height
* w2
);
2607 for (i
= 0; i
< height
; i
++)
2610 for (j
= 0; j
< w1
; j
++)
2612 /* Bitswap XBM bytes to match how Windows does things. */
2613 unsigned char c
= *data
++;
2614 *p
++ = (unsigned char)((swap_nibble
[c
& 0xf] << 4)
2615 | (swap_nibble
[(c
>>4) & 0xf]));
2618 bmp
= CreateBitmap (width
, height
, 1, 1, (char *) bits
);
2624 convert_mono_to_color_image (f
, img
, foreground
, background
)
2627 COLORREF foreground
, background
;
2629 HDC hdc
, old_img_dc
, new_img_dc
;
2630 HGDIOBJ old_prev
, new_prev
;
2633 hdc
= get_frame_dc (f
);
2634 old_img_dc
= CreateCompatibleDC (hdc
);
2635 new_img_dc
= CreateCompatibleDC (hdc
);
2636 new_pixmap
= CreateCompatibleBitmap (hdc
, img
->width
, img
->height
);
2637 release_frame_dc (f
, hdc
);
2638 old_prev
= SelectObject (old_img_dc
, img
->pixmap
);
2639 new_prev
= SelectObject (new_img_dc
, new_pixmap
);
2640 /* Windows convention for mono bitmaps is black = background,
2641 white = foreground. */
2642 SetTextColor (new_img_dc
, background
);
2643 SetBkColor (new_img_dc
, foreground
);
2645 BitBlt (new_img_dc
, 0, 0, img
->width
, img
->height
, old_img_dc
,
2648 SelectObject (old_img_dc
, old_prev
);
2649 SelectObject (new_img_dc
, new_prev
);
2650 DeleteDC (old_img_dc
);
2651 DeleteDC (new_img_dc
);
2652 DeleteObject (img
->pixmap
);
2653 if (new_pixmap
== 0)
2654 fprintf (stderr
, "Failed to convert image to color.\n");
2656 img
->pixmap
= new_pixmap
;
2659 #define XBM_BIT_SHUFFLE(b) (~(b))
2663 #define XBM_BIT_SHUFFLE(b) (b)
2665 #endif /* HAVE_NTGUI */
2669 Create_Pixmap_From_Bitmap_Data (f
, img
, data
, fg
, bg
, non_default_colors
)
2673 RGB_PIXEL_COLOR fg
, bg
;
2674 int non_default_colors
;
2678 = w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
, data
);
2680 /* If colors were specified, transfer the bitmap to a color one. */
2681 if (non_default_colors
)
2682 convert_mono_to_color_image (f
, img
, fg
, bg
);
2684 #elif defined (HAVE_NS)
2685 img
->pixmap
= ns_image_from_XBM(data
, img
->width
, img
->height
);
2689 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
2692 img
->width
, img
->height
,
2694 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
2695 #endif /* !HAVE_NTGUI && !HAVE_NS */
2700 /* Replacement for XReadBitmapFileData which isn't available under old
2701 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2702 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2703 the image. Return in *DATA the bitmap data allocated with xmalloc.
2704 Value is non-zero if successful. DATA null means just test if
2705 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR
2706 is non-zero, inhibit the call to image_error when the image size is
2707 invalid (the bitmap remains unread). */
2710 xbm_read_bitmap_data (f
, contents
, end
, width
, height
, data
, inhibit_image_error
)
2712 unsigned char *contents
, *end
;
2713 int *width
, *height
;
2714 unsigned char **data
;
2715 int inhibit_image_error
;
2717 unsigned char *s
= contents
;
2718 char buffer
[BUFSIZ
];
2721 int bytes_per_line
, i
, nbytes
;
2727 LA1 = xbm_scan (&s, end, buffer, &value)
2729 #define expect(TOKEN) \
2730 if (LA1 != (TOKEN)) \
2735 #define expect_ident(IDENT) \
2736 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2741 *width
= *height
= -1;
2744 LA1
= xbm_scan (&s
, end
, buffer
, &value
);
2746 /* Parse defines for width, height and hot-spots. */
2750 expect_ident ("define");
2751 expect (XBM_TK_IDENT
);
2753 if (LA1
== XBM_TK_NUMBER
)
2755 char *p
= strrchr (buffer
, '_');
2756 p
= p
? p
+ 1 : buffer
;
2757 if (strcmp (p
, "width") == 0)
2759 else if (strcmp (p
, "height") == 0)
2762 expect (XBM_TK_NUMBER
);
2765 if (!check_image_size (f
, *width
, *height
))
2767 if (!inhibit_image_error
)
2768 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
2771 else if (data
== NULL
)
2774 /* Parse bits. Must start with `static'. */
2775 expect_ident ("static");
2776 if (LA1
== XBM_TK_IDENT
)
2778 if (strcmp (buffer
, "unsigned") == 0)
2781 expect_ident ("char");
2783 else if (strcmp (buffer
, "short") == 0)
2787 if (*width
% 16 && *width
% 16 < 9)
2790 else if (strcmp (buffer
, "char") == 0)
2798 expect (XBM_TK_IDENT
);
2804 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
2805 nbytes
= bytes_per_line
* *height
;
2806 p
= *data
= (unsigned char *) xmalloc (nbytes
);
2810 for (i
= 0; i
< nbytes
; i
+= 2)
2813 expect (XBM_TK_NUMBER
);
2815 *p
++ = XBM_BIT_SHUFFLE (val
);
2816 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
2817 *p
++ = XBM_BIT_SHUFFLE (value
>> 8);
2819 if (LA1
== ',' || LA1
== '}')
2827 for (i
= 0; i
< nbytes
; ++i
)
2830 expect (XBM_TK_NUMBER
);
2832 *p
++ = XBM_BIT_SHUFFLE (val
);
2834 if (LA1
== ',' || LA1
== '}')
2859 /* Load XBM image IMG which will be displayed on frame F from buffer
2860 CONTENTS. END is the end of the buffer. Value is non-zero if
2864 xbm_load_image (f
, img
, contents
, end
)
2867 unsigned char *contents
, *end
;
2870 unsigned char *data
;
2873 rc
= xbm_read_bitmap_data (f
, contents
, end
, &img
->width
, &img
->height
,
2877 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2878 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2879 int non_default_colors
= 0;
2882 xassert (img
->width
> 0 && img
->height
> 0);
2884 /* Get foreground and background colors, maybe allocate colors. */
2885 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
2888 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
2889 non_default_colors
= 1;
2891 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
2894 background
= x_alloc_image_color (f
, img
, value
, background
);
2895 img
->background
= background
;
2896 img
->background_valid
= 1;
2897 non_default_colors
= 1;
2900 Create_Pixmap_From_Bitmap_Data (f
, img
, data
,
2901 foreground
, background
,
2902 non_default_colors
);
2905 if (img
->pixmap
== NO_PIXMAP
)
2907 x_clear_image (f
, img
);
2908 image_error ("Unable to create X pixmap for `%s'", img
->spec
, Qnil
);
2914 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2920 /* Value is non-zero if DATA looks like an in-memory XBM file. */
2927 return (STRINGP (data
)
2928 && xbm_read_bitmap_data (NULL
, SDATA (data
),
2929 (SDATA (data
) + SBYTES (data
)),
2934 /* Fill image IMG which is used on frame F with pixmap data. Value is
2935 non-zero if successful. */
2943 Lisp_Object file_name
;
2945 xassert (xbm_image_p (img
->spec
));
2947 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2948 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
2949 if (STRINGP (file_name
))
2952 unsigned char *contents
;
2954 struct gcpro gcpro1
;
2956 file
= x_find_image_file (file_name
);
2958 if (!STRINGP (file
))
2960 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
2965 contents
= slurp_file (SDATA (file
), &size
);
2966 if (contents
== NULL
)
2968 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2973 success_p
= xbm_load_image (f
, img
, contents
, contents
+ size
);
2978 struct image_keyword fmt
[XBM_LAST
];
2980 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2981 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2982 int non_default_colors
= 0;
2985 int in_memory_file_p
= 0;
2987 /* See if data looks like an in-memory XBM file. */
2988 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
2989 in_memory_file_p
= xbm_file_p (data
);
2991 /* Parse the image specification. */
2992 bcopy (xbm_format
, fmt
, sizeof fmt
);
2993 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
2996 /* Get specified width, and height. */
2997 if (!in_memory_file_p
)
2999 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
3000 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
3001 xassert (img
->width
> 0 && img
->height
> 0);
3004 /* Get foreground and background colors, maybe allocate colors. */
3005 if (fmt
[XBM_FOREGROUND
].count
3006 && STRINGP (fmt
[XBM_FOREGROUND
].value
))
3008 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
3010 non_default_colors
= 1;
3013 if (fmt
[XBM_BACKGROUND
].count
3014 && STRINGP (fmt
[XBM_BACKGROUND
].value
))
3016 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
3018 non_default_colors
= 1;
3021 if (in_memory_file_p
)
3022 success_p
= xbm_load_image (f
, img
, SDATA (data
),
3031 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
3033 p
= bits
= (char *) alloca (nbytes
* img
->height
);
3034 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
3036 Lisp_Object line
= XVECTOR (data
)->contents
[i
];
3038 bcopy (SDATA (line
), p
, nbytes
);
3040 bcopy (XBOOL_VECTOR (line
)->data
, p
, nbytes
);
3043 else if (STRINGP (data
))
3044 bits
= SDATA (data
);
3046 bits
= XBOOL_VECTOR (data
)->data
;
3052 /* Windows mono bitmaps are reversed compared with X. */
3053 invertedBits
= bits
;
3054 nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
3056 bits
= (char *) alloca(nbytes
);
3057 for (i
= 0; i
< nbytes
; i
++)
3058 bits
[i
] = XBM_BIT_SHUFFLE (invertedBits
[i
]);
3061 /* Create the pixmap. */
3063 Create_Pixmap_From_Bitmap_Data (f
, img
, bits
,
3064 foreground
, background
,
3065 non_default_colors
);
3070 image_error ("Unable to create pixmap for XBM image `%s'",
3072 x_clear_image (f
, img
);
3082 /***********************************************************************
3084 ***********************************************************************/
3086 #if defined (HAVE_XPM) || defined (HAVE_NS)
3088 static int xpm_image_p
P_ ((Lisp_Object object
));
3089 static int xpm_load
P_ ((struct frame
*f
, struct image
*img
));
3090 static int xpm_valid_color_symbols_p
P_ ((Lisp_Object
));
3092 #endif /* HAVE_XPM || HAVE_NS */
3096 /* Indicate to xpm.h that we don't have Xlib. */
3098 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
3099 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
3100 #define XColor xpm_XColor
3101 #define XImage xpm_XImage
3102 #define Display xpm_Display
3103 #define PIXEL_ALREADY_TYPEDEFED
3104 #include "X11/xpm.h"
3109 #undef PIXEL_ALREADY_TYPEDEFED
3111 #include "X11/xpm.h"
3112 #endif /* HAVE_NTGUI */
3113 #endif /* HAVE_XPM */
3115 #if defined (HAVE_XPM) || defined (HAVE_NS)
3116 /* The symbol `xpm' identifying XPM-format images. */
3120 /* Indices of image specification fields in xpm_format, below. */
3122 enum xpm_keyword_index
3138 /* Vector of image_keyword structures describing the format
3139 of valid XPM image specifications. */
3141 static const struct image_keyword xpm_format
[XPM_LAST
] =
3143 {":type", IMAGE_SYMBOL_VALUE
, 1},
3144 {":file", IMAGE_STRING_VALUE
, 0},
3145 {":data", IMAGE_STRING_VALUE
, 0},
3146 {":ascent", IMAGE_ASCENT_VALUE
, 0},
3147 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
3148 {":relief", IMAGE_INTEGER_VALUE
, 0},
3149 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3150 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3151 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3152 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3153 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
3156 /* Structure describing the image type XPM. */
3158 static struct image_type xpm_type
=
3167 #ifdef HAVE_X_WINDOWS
3169 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3170 functions for allocating image colors. Our own functions handle
3171 color allocation failures more gracefully than the ones on the XPM
3174 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3175 #define ALLOC_XPM_COLORS
3177 #endif /* HAVE_X_WINDOWS */
3179 #ifdef ALLOC_XPM_COLORS
3181 static void xpm_init_color_cache
P_ ((struct frame
*, XpmAttributes
*));
3182 static void xpm_free_color_cache
P_ ((void));
3183 static int xpm_lookup_color
P_ ((struct frame
*, char *, XColor
*));
3184 static int xpm_color_bucket
P_ ((char *));
3185 static struct xpm_cached_color
*xpm_cache_color
P_ ((struct frame
*, char *,
3188 /* An entry in a hash table used to cache color definitions of named
3189 colors. This cache is necessary to speed up XPM image loading in
3190 case we do color allocations ourselves. Without it, we would need
3191 a call to XParseColor per pixel in the image. */
3193 struct xpm_cached_color
3195 /* Next in collision chain. */
3196 struct xpm_cached_color
*next
;
3198 /* Color definition (RGB and pixel color). */
3205 /* The hash table used for the color cache, and its bucket vector
3208 #define XPM_COLOR_CACHE_BUCKETS 1001
3209 struct xpm_cached_color
**xpm_color_cache
;
3211 /* Initialize the color cache. */
3214 xpm_init_color_cache (f
, attrs
)
3216 XpmAttributes
*attrs
;
3218 size_t nbytes
= XPM_COLOR_CACHE_BUCKETS
* sizeof *xpm_color_cache
;
3219 xpm_color_cache
= (struct xpm_cached_color
**) xmalloc (nbytes
);
3220 memset (xpm_color_cache
, 0, nbytes
);
3221 init_color_table ();
3223 if (attrs
->valuemask
& XpmColorSymbols
)
3228 for (i
= 0; i
< attrs
->numsymbols
; ++i
)
3229 if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3230 attrs
->colorsymbols
[i
].value
, &color
))
3232 color
.pixel
= lookup_rgb_color (f
, color
.red
, color
.green
,
3234 xpm_cache_color (f
, attrs
->colorsymbols
[i
].name
, &color
, -1);
3239 /* Free the color cache. */
3242 xpm_free_color_cache ()
3244 struct xpm_cached_color
*p
, *next
;
3247 for (i
= 0; i
< XPM_COLOR_CACHE_BUCKETS
; ++i
)
3248 for (p
= xpm_color_cache
[i
]; p
; p
= next
)
3254 xfree (xpm_color_cache
);
3255 xpm_color_cache
= NULL
;
3256 free_color_table ();
3259 /* Return the bucket index for color named COLOR_NAME in the color
3263 xpm_color_bucket (color_name
)
3269 for (s
= color_name
; *s
; ++s
)
3271 return h
%= XPM_COLOR_CACHE_BUCKETS
;
3275 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3276 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3279 static struct xpm_cached_color
*
3280 xpm_cache_color (f
, color_name
, color
, bucket
)
3287 struct xpm_cached_color
*p
;
3290 bucket
= xpm_color_bucket (color_name
);
3292 nbytes
= sizeof *p
+ strlen (color_name
);
3293 p
= (struct xpm_cached_color
*) xmalloc (nbytes
);
3294 strcpy (p
->name
, color_name
);
3296 p
->next
= xpm_color_cache
[bucket
];
3297 xpm_color_cache
[bucket
] = p
;
3301 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3302 return the cached definition in *COLOR. Otherwise, make a new
3303 entry in the cache and allocate the color. Value is zero if color
3304 allocation failed. */
3307 xpm_lookup_color (f
, color_name
, color
)
3312 struct xpm_cached_color
*p
;
3313 int h
= xpm_color_bucket (color_name
);
3315 for (p
= xpm_color_cache
[h
]; p
; p
= p
->next
)
3316 if (strcmp (p
->name
, color_name
) == 0)
3321 else if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3324 color
->pixel
= lookup_rgb_color (f
, color
->red
, color
->green
,
3326 p
= xpm_cache_color (f
, color_name
, color
, h
);
3328 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3329 with transparency, and it's useful. */
3330 else if (strcmp ("opaque", color_name
) == 0)
3332 bzero (color
, sizeof (XColor
)); /* Is this necessary/correct? */
3333 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
3334 p
= xpm_cache_color (f
, color_name
, color
, h
);
3341 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3342 CLOSURE is a pointer to the frame on which we allocate the
3343 color. Return in *COLOR the allocated color. Value is non-zero
3347 xpm_alloc_color (dpy
, cmap
, color_name
, color
, closure
)
3354 return xpm_lookup_color ((struct frame
*) closure
, color_name
, color
);
3358 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3359 is a pointer to the frame on which we allocate the color. Value is
3360 non-zero if successful. */
3363 xpm_free_colors (dpy
, cmap
, pixels
, npixels
, closure
)
3373 #endif /* ALLOC_XPM_COLORS */
3378 /* XPM library details. */
3380 DEF_IMGLIB_FN (XpmFreeAttributes
);
3381 DEF_IMGLIB_FN (XpmCreateImageFromBuffer
);
3382 DEF_IMGLIB_FN (XpmReadFileToImage
);
3383 DEF_IMGLIB_FN (XImageFree
);
3386 init_xpm_functions (Lisp_Object libraries
)
3390 if (!(library
= w32_delayed_load (libraries
, Qxpm
)))
3393 LOAD_IMGLIB_FN (library
, XpmFreeAttributes
);
3394 LOAD_IMGLIB_FN (library
, XpmCreateImageFromBuffer
);
3395 LOAD_IMGLIB_FN (library
, XpmReadFileToImage
);
3396 LOAD_IMGLIB_FN (library
, XImageFree
);
3400 #endif /* HAVE_NTGUI */
3403 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
3404 for XPM images. Such a list must consist of conses whose car and
3408 xpm_valid_color_symbols_p (color_symbols
)
3409 Lisp_Object color_symbols
;
3411 while (CONSP (color_symbols
))
3413 Lisp_Object sym
= XCAR (color_symbols
);
3415 || !STRINGP (XCAR (sym
))
3416 || !STRINGP (XCDR (sym
)))
3418 color_symbols
= XCDR (color_symbols
);
3421 return NILP (color_symbols
);
3425 /* Value is non-zero if OBJECT is a valid XPM image specification. */
3428 xpm_image_p (object
)
3431 struct image_keyword fmt
[XPM_LAST
];
3432 bcopy (xpm_format
, fmt
, sizeof fmt
);
3433 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
3434 /* Either `:file' or `:data' must be present. */
3435 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
3436 /* Either no `:color-symbols' or it's a list of conses
3437 whose car and cdr are strings. */
3438 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
3439 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
)));
3442 #endif /* HAVE_XPM || HAVE_NS */
3444 #if defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
3446 x_create_bitmap_from_xpm_data (f
, bits
)
3450 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3452 XpmAttributes attrs
;
3453 Pixmap bitmap
, mask
;
3455 bzero (&attrs
, sizeof attrs
);
3457 attrs
.visual
= FRAME_X_VISUAL (f
);
3458 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3459 attrs
.valuemask
|= XpmVisual
;
3460 attrs
.valuemask
|= XpmColormap
;
3462 rc
= XpmCreatePixmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3463 bits
, &bitmap
, &mask
, &attrs
);
3464 if (rc
!= XpmSuccess
)
3466 XpmFreeAttributes (&attrs
);
3470 id
= x_allocate_bitmap_record (f
);
3471 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
3472 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
3473 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
3474 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
3475 dpyinfo
->bitmaps
[id
- 1].height
= attrs
.height
;
3476 dpyinfo
->bitmaps
[id
- 1].width
= attrs
.width
;
3477 dpyinfo
->bitmaps
[id
- 1].depth
= attrs
.depth
;
3478 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
3480 XpmFreeAttributes (&attrs
);
3483 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3485 /* Load image IMG which will be displayed on frame F. Value is
3486 non-zero if successful. */
3496 XpmAttributes attrs
;
3497 Lisp_Object specified_file
, color_symbols
;
3500 xpm_XImage
* xpm_image
= NULL
, * xpm_mask
= NULL
;
3501 #endif /* HAVE_NTGUI */
3503 /* Configure the XPM lib. Use the visual of frame F. Allocate
3504 close colors. Return colors allocated. */
3505 bzero (&attrs
, sizeof attrs
);
3508 attrs
.visual
= FRAME_X_VISUAL (f
);
3509 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3510 attrs
.valuemask
|= XpmVisual
;
3511 attrs
.valuemask
|= XpmColormap
;
3512 #endif /* HAVE_NTGUI */
3514 #ifdef ALLOC_XPM_COLORS
3515 /* Allocate colors with our own functions which handle
3516 failing color allocation more gracefully. */
3517 attrs
.color_closure
= f
;
3518 attrs
.alloc_color
= xpm_alloc_color
;
3519 attrs
.free_colors
= xpm_free_colors
;
3520 attrs
.valuemask
|= XpmAllocColor
| XpmFreeColors
| XpmColorClosure
;
3521 #else /* not ALLOC_XPM_COLORS */
3522 /* Let the XPM lib allocate colors. */
3523 attrs
.valuemask
|= XpmReturnAllocPixels
;
3524 #ifdef XpmAllocCloseColors
3525 attrs
.alloc_close_colors
= 1;
3526 attrs
.valuemask
|= XpmAllocCloseColors
;
3527 #else /* not XpmAllocCloseColors */
3528 attrs
.closeness
= 600;
3529 attrs
.valuemask
|= XpmCloseness
;
3530 #endif /* not XpmAllocCloseColors */
3531 #endif /* ALLOC_XPM_COLORS */
3533 /* If image specification contains symbolic color definitions, add
3534 these to `attrs'. */
3535 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3536 if (CONSP (color_symbols
))
3539 XpmColorSymbol
*xpm_syms
;
3542 attrs
.valuemask
|= XpmColorSymbols
;
3544 /* Count number of symbols. */
3545 attrs
.numsymbols
= 0;
3546 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
3549 /* Allocate an XpmColorSymbol array. */
3550 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
3551 xpm_syms
= (XpmColorSymbol
*) alloca (size
);
3552 bzero (xpm_syms
, size
);
3553 attrs
.colorsymbols
= xpm_syms
;
3555 /* Fill the color symbol array. */
3556 for (tail
= color_symbols
, i
= 0;
3558 ++i
, tail
= XCDR (tail
))
3560 Lisp_Object name
= XCAR (XCAR (tail
));
3561 Lisp_Object color
= XCDR (XCAR (tail
));
3562 xpm_syms
[i
].name
= (char *) alloca (SCHARS (name
) + 1);
3563 strcpy (xpm_syms
[i
].name
, SDATA (name
));
3564 xpm_syms
[i
].value
= (char *) alloca (SCHARS (color
) + 1);
3565 strcpy (xpm_syms
[i
].value
, SDATA (color
));
3569 /* Create a pixmap for the image, either from a file, or from a
3570 string buffer containing data in the same format as an XPM file. */
3571 #ifdef ALLOC_XPM_COLORS
3572 xpm_init_color_cache (f
, &attrs
);
3575 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
3579 HDC frame_dc
= get_frame_dc (f
);
3580 hdc
= CreateCompatibleDC (frame_dc
);
3581 release_frame_dc (f
, frame_dc
);
3583 #endif /* HAVE_NTGUI */
3585 if (STRINGP (specified_file
))
3587 Lisp_Object file
= x_find_image_file (specified_file
);
3588 if (!STRINGP (file
))
3590 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
3595 /* XpmReadFileToPixmap is not available in the Windows port of
3596 libxpm. But XpmReadFileToImage almost does what we want. */
3597 rc
= fn_XpmReadFileToImage (&hdc
, SDATA (file
),
3598 &xpm_image
, &xpm_mask
,
3601 rc
= XpmReadFileToPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3602 SDATA (file
), &img
->pixmap
, &img
->mask
,
3604 #endif /* HAVE_NTGUI */
3608 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
3610 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3611 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3612 rc
= fn_XpmCreateImageFromBuffer (&hdc
, SDATA (buffer
),
3613 &xpm_image
, &xpm_mask
,
3616 rc
= XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3618 &img
->pixmap
, &img
->mask
,
3620 #endif /* HAVE_NTGUI */
3623 if (rc
== XpmSuccess
)
3625 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3626 img
->colors
= colors_in_color_table (&img
->ncolors
);
3627 #else /* not ALLOC_XPM_COLORS */
3631 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3632 plus some duplicate attributes. */
3633 if (xpm_image
&& xpm_image
->bitmap
)
3635 img
->pixmap
= xpm_image
->bitmap
;
3636 /* XImageFree in libXpm frees XImage struct without destroying
3637 the bitmap, which is what we want. */
3638 fn_XImageFree (xpm_image
);
3640 if (xpm_mask
&& xpm_mask
->bitmap
)
3642 /* The mask appears to be inverted compared with what we expect.
3643 TODO: invert our expectations. See other places where we
3644 have to invert bits because our idea of masks is backwards. */
3646 old_obj
= SelectObject (hdc
, xpm_mask
->bitmap
);
3648 PatBlt (hdc
, 0, 0, xpm_mask
->width
, xpm_mask
->height
, DSTINVERT
);
3649 SelectObject (hdc
, old_obj
);
3651 img
->mask
= xpm_mask
->bitmap
;
3652 fn_XImageFree (xpm_mask
);
3657 #endif /* HAVE_NTGUI */
3659 /* Remember allocated colors. */
3660 img
->ncolors
= attrs
.nalloc_pixels
;
3661 img
->colors
= (unsigned long *) xmalloc (img
->ncolors
3662 * sizeof *img
->colors
);
3663 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
3665 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
3666 #ifdef DEBUG_X_COLORS
3667 register_color (img
->colors
[i
]);
3670 #endif /* not ALLOC_XPM_COLORS */
3672 img
->width
= attrs
.width
;
3673 img
->height
= attrs
.height
;
3674 xassert (img
->width
> 0 && img
->height
> 0);
3676 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3678 fn_XpmFreeAttributes (&attrs
);
3680 XpmFreeAttributes (&attrs
);
3681 #endif /* HAVE_NTGUI */
3687 #endif /* HAVE_NTGUI */
3692 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
3695 case XpmFileInvalid
:
3696 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
3700 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
3703 case XpmColorFailed
:
3704 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
3708 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
3713 #ifdef ALLOC_XPM_COLORS
3714 xpm_free_color_cache ();
3716 return rc
== XpmSuccess
;
3719 #endif /* HAVE_XPM */
3721 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3723 /* XPM support functions for NS where libxpm is not available.
3724 Only XPM version 3 (without any extensions) is supported. */
3726 static int xpm_scan
P_ ((const unsigned char **, const unsigned char *,
3727 const unsigned char **, int *));
3728 static Lisp_Object xpm_make_color_table_v
3729 P_ ((void (**) (Lisp_Object
, const unsigned char *, int, Lisp_Object
),
3730 Lisp_Object (**) (Lisp_Object
, const unsigned char *, int)));
3731 static void xpm_put_color_table_v
P_ ((Lisp_Object
, const unsigned char *,
3733 static Lisp_Object xpm_get_color_table_v
P_ ((Lisp_Object
,
3734 const unsigned char *, int));
3735 static Lisp_Object xpm_make_color_table_h
3736 P_ ((void (**) (Lisp_Object
, const unsigned char *, int, Lisp_Object
),
3737 Lisp_Object (**) (Lisp_Object
, const unsigned char *, int)));
3738 static void xpm_put_color_table_h
P_ ((Lisp_Object
, const unsigned char *,
3740 static Lisp_Object xpm_get_color_table_h
P_ ((Lisp_Object
,
3741 const unsigned char *, int));
3742 static int xpm_str_to_color_key
P_ ((const char *));
3743 static int xpm_load_image
P_ ((struct frame
*, struct image
*,
3744 const unsigned char *, const unsigned char *));
3746 /* Tokens returned from xpm_scan. */
3755 /* Scan an XPM data and return a character (< 256) or a token defined
3756 by enum xpm_token above. *S and END are the start (inclusive) and
3757 the end (exclusive) addresses of the data, respectively. Advance
3758 *S while scanning. If token is either XPM_TK_IDENT or
3759 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3760 length of the corresponding token, respectively. */
3763 xpm_scan (s
, end
, beg
, len
)
3764 const unsigned char **s
, *end
, **beg
;
3771 /* Skip white-space. */
3772 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
3775 /* gnus-pointer.xpm uses '-' in its identifier.
3776 sb-dir-plus.xpm uses '+' in its identifier. */
3777 if (isalpha (c
) || c
== '_' || c
== '-' || c
== '+')
3781 && (c
= **s
, isalnum (c
) || c
== '_' || c
== '-' || c
== '+'))
3784 return XPM_TK_IDENT
;
3789 while (*s
< end
&& **s
!= '"')
3794 return XPM_TK_STRING
;
3798 if (*s
< end
&& **s
== '*')
3800 /* C-style comment. */
3804 while (*s
< end
&& *(*s
)++ != '*')
3807 while (*s
< end
&& **s
!= '/');
3821 /* Functions for color table lookup in XPM data. A key is a string
3822 specifying the color of each pixel in XPM data. A value is either
3823 an integer that specifies a pixel color, Qt that specifies
3824 transparency, or Qnil for the unspecified color. If the length of
3825 the key string is one, a vector is used as a table. Otherwise, a
3826 hash table is used. */
3829 xpm_make_color_table_v (put_func
, get_func
)
3830 void (**put_func
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3831 Lisp_Object (**get_func
) (Lisp_Object
, const unsigned char *, int);
3833 *put_func
= xpm_put_color_table_v
;
3834 *get_func
= xpm_get_color_table_v
;
3835 return Fmake_vector (make_number (256), Qnil
);
3839 xpm_put_color_table_v (color_table
, chars_start
, chars_len
, color
)
3840 Lisp_Object color_table
;
3841 const unsigned char *chars_start
;
3845 XVECTOR (color_table
)->contents
[*chars_start
] = color
;
3849 xpm_get_color_table_v (color_table
, chars_start
, chars_len
)
3850 Lisp_Object color_table
;
3851 const unsigned char *chars_start
;
3854 return XVECTOR (color_table
)->contents
[*chars_start
];
3858 xpm_make_color_table_h (put_func
, get_func
)
3859 void (**put_func
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3860 Lisp_Object (**get_func
) (Lisp_Object
, const unsigned char *, int);
3862 *put_func
= xpm_put_color_table_h
;
3863 *get_func
= xpm_get_color_table_h
;
3864 return make_hash_table (Qequal
, make_number (DEFAULT_HASH_SIZE
),
3865 make_float (DEFAULT_REHASH_SIZE
),
3866 make_float (DEFAULT_REHASH_THRESHOLD
),
3871 xpm_put_color_table_h (color_table
, chars_start
, chars_len
, color
)
3872 Lisp_Object color_table
;
3873 const unsigned char *chars_start
;
3877 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3879 Lisp_Object chars
= make_unibyte_string (chars_start
, chars_len
);
3881 hash_lookup (table
, chars
, &hash_code
);
3882 hash_put (table
, chars
, color
, hash_code
);
3886 xpm_get_color_table_h (color_table
, chars_start
, chars_len
)
3887 Lisp_Object color_table
;
3888 const unsigned char *chars_start
;
3891 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3892 int i
= hash_lookup (table
, make_unibyte_string (chars_start
, chars_len
),
3895 return i
>= 0 ? HASH_VALUE (table
, i
) : Qnil
;
3898 enum xpm_color_key
{
3906 static const char xpm_color_key_strings
[][4] = {"s", "m", "g4", "g", "c"};
3909 xpm_str_to_color_key (s
)
3915 i
< sizeof xpm_color_key_strings
/ sizeof xpm_color_key_strings
[0];
3917 if (strcmp (xpm_color_key_strings
[i
], s
) == 0)
3923 xpm_load_image (f
, img
, contents
, end
)
3926 const unsigned char *contents
, *end
;
3928 const unsigned char *s
= contents
, *beg
, *str
;
3929 unsigned char buffer
[BUFSIZ
];
3930 int width
, height
, x
, y
;
3931 int num_colors
, chars_per_pixel
;
3933 void (*put_color_table
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3934 Lisp_Object (*get_color_table
) (Lisp_Object
, const unsigned char *, int);
3935 Lisp_Object frame
, color_symbols
, color_table
;
3936 int best_key
, have_mask
= 0;
3937 XImagePtr ximg
= NULL
, mask_img
= NULL
;
3940 LA1 = xpm_scan (&s, end, &beg, &len)
3942 #define expect(TOKEN) \
3943 if (LA1 != (TOKEN)) \
3948 #define expect_ident(IDENT) \
3949 if (LA1 == XPM_TK_IDENT \
3950 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3955 if (!(end
- s
>= 9 && memcmp (s
, "/* XPM */", 9) == 0))
3959 expect_ident ("static");
3960 expect_ident ("char");
3962 expect (XPM_TK_IDENT
);
3967 expect (XPM_TK_STRING
);
3970 memcpy (buffer
, beg
, len
);
3972 if (sscanf (buffer
, "%d %d %d %d", &width
, &height
,
3973 &num_colors
, &chars_per_pixel
) != 4
3974 || width
<= 0 || height
<= 0
3975 || num_colors
<= 0 || chars_per_pixel
<= 0)
3978 if (!check_image_size (f
, width
, height
))
3980 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
3986 XSETFRAME (frame
, f
);
3987 if (!NILP (Fxw_display_color_p (frame
)))
3988 best_key
= XPM_COLOR_KEY_C
;
3989 else if (!NILP (Fx_display_grayscale_p (frame
)))
3990 best_key
= (XFASTINT (Fx_display_planes (frame
)) > 2
3991 ? XPM_COLOR_KEY_G
: XPM_COLOR_KEY_G4
);
3993 best_key
= XPM_COLOR_KEY_M
;
3995 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3996 if (chars_per_pixel
== 1)
3997 color_table
= xpm_make_color_table_v (&put_color_table
,
4000 color_table
= xpm_make_color_table_h (&put_color_table
,
4003 while (num_colors
-- > 0)
4005 unsigned char *color
, *max_color
;
4006 int key
, next_key
, max_key
= 0;
4007 Lisp_Object symbol_color
= Qnil
, color_val
;
4010 expect (XPM_TK_STRING
);
4011 if (len
<= chars_per_pixel
|| len
>= BUFSIZ
+ chars_per_pixel
)
4013 memcpy (buffer
, beg
+ chars_per_pixel
, len
- chars_per_pixel
);
4014 buffer
[len
- chars_per_pixel
] = '\0';
4016 str
= strtok (buffer
, " \t");
4019 key
= xpm_str_to_color_key (str
);
4024 color
= strtok (NULL
, " \t");
4028 while ((str
= strtok (NULL
, " \t")) != NULL
)
4030 next_key
= xpm_str_to_color_key (str
);
4033 color
[strlen (color
)] = ' ';
4036 if (key
== XPM_COLOR_KEY_S
)
4038 if (NILP (symbol_color
))
4039 symbol_color
= build_string (color
);
4041 else if (max_key
< key
&& key
<= best_key
)
4051 if (!NILP (color_symbols
) && !NILP (symbol_color
))
4053 Lisp_Object specified_color
= Fassoc (symbol_color
, color_symbols
);
4055 if (CONSP (specified_color
) && STRINGP (XCDR (specified_color
)))
4057 if (xstrcasecmp (SDATA (XCDR (specified_color
)), "None") == 0)
4059 else if (x_defined_color (f
, SDATA (XCDR (specified_color
)),
4061 color_val
= make_number (cdef
.pixel
);
4064 if (NILP (color_val
) && max_key
> 0)
4066 if (xstrcasecmp (max_color
, "None") == 0)
4068 else if (x_defined_color (f
, max_color
, &cdef
, 0))
4069 color_val
= make_number (cdef
.pixel
);
4071 if (!NILP (color_val
))
4072 (*put_color_table
) (color_table
, beg
, chars_per_pixel
, color_val
);
4077 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
4078 &ximg
, &img
->pixmap
)
4080 || !x_create_x_image_and_pixmap (f
, width
, height
, 1,
4081 &mask_img
, &img
->mask
)
4085 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
4089 for (y
= 0; y
< height
; y
++)
4091 expect (XPM_TK_STRING
);
4093 if (len
< width
* chars_per_pixel
)
4095 for (x
= 0; x
< width
; x
++, str
+= chars_per_pixel
)
4097 Lisp_Object color_val
=
4098 (*get_color_table
) (color_table
, str
, chars_per_pixel
);
4100 XPutPixel (ximg
, x
, y
,
4101 (INTEGERP (color_val
) ? XINT (color_val
)
4102 : FRAME_FOREGROUND_PIXEL (f
)));
4104 XPutPixel (mask_img
, x
, y
,
4105 (!EQ (color_val
, Qt
) ? PIX_MASK_DRAW
4106 : (have_mask
= 1, PIX_MASK_RETAIN
)));
4108 if (EQ(color_val
, Qt
))
4109 ns_set_alpha(ximg
, x
, y
, 0);
4117 img
->height
= height
;
4119 /* Maybe fill in the background field while we have ximg handy. */
4120 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
4121 IMAGE_BACKGROUND (img
, f
, ximg
);
4123 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
4124 x_destroy_x_image (ximg
);
4128 /* Fill in the background_transparent field while we have the
4130 image_background_transparent (img
, f
, mask_img
);
4132 x_put_x_image (f
, mask_img
, img
->mask
, width
, height
);
4133 x_destroy_x_image (mask_img
);
4137 x_destroy_x_image (mask_img
);
4138 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4139 img
->mask
= NO_PIXMAP
;
4145 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
4147 x_destroy_x_image (ximg
);
4148 x_destroy_x_image (mask_img
);
4149 x_clear_image (f
, img
);
4163 Lisp_Object file_name
;
4165 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4166 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
4167 if (STRINGP (file_name
))
4170 unsigned char *contents
;
4172 struct gcpro gcpro1
;
4174 file
= x_find_image_file (file_name
);
4176 if (!STRINGP (file
))
4178 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
4183 contents
= slurp_file (SDATA (file
), &size
);
4184 if (contents
== NULL
)
4186 image_error ("Error loading XPM image `%s'", img
->spec
, Qnil
);
4191 success_p
= xpm_load_image (f
, img
, contents
, contents
+ size
);
4199 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
4200 success_p
= xpm_load_image (f
, img
, SDATA (data
),
4201 SDATA (data
) + SBYTES (data
));
4207 #endif /* HAVE_NS && !HAVE_XPM */
4211 /***********************************************************************
4213 ***********************************************************************/
4215 #ifdef COLOR_TABLE_SUPPORT
4217 /* An entry in the color table mapping an RGB color to a pixel color. */
4222 unsigned long pixel
;
4224 /* Next in color table collision list. */
4225 struct ct_color
*next
;
4228 /* The bucket vector size to use. Must be prime. */
4232 /* Value is a hash of the RGB color given by R, G, and B. */
4234 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4236 /* The color hash table. */
4238 struct ct_color
**ct_table
;
4240 /* Number of entries in the color table. */
4242 int ct_colors_allocated
;
4244 /* Initialize the color table. */
4249 int size
= CT_SIZE
* sizeof (*ct_table
);
4250 ct_table
= (struct ct_color
**) xmalloc (size
);
4251 bzero (ct_table
, size
);
4252 ct_colors_allocated
= 0;
4256 /* Free memory associated with the color table. */
4262 struct ct_color
*p
, *next
;
4264 for (i
= 0; i
< CT_SIZE
; ++i
)
4265 for (p
= ct_table
[i
]; p
; p
= next
)
4276 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4277 entry for that color already is in the color table, return the
4278 pixel color of that entry. Otherwise, allocate a new color for R,
4279 G, B, and make an entry in the color table. */
4281 static unsigned long
4282 lookup_rgb_color (f
, r
, g
, b
)
4286 unsigned hash
= CT_HASH_RGB (r
, g
, b
);
4287 int i
= hash
% CT_SIZE
;
4289 Display_Info
*dpyinfo
;
4291 /* Handle TrueColor visuals specially, which improves performance by
4292 two orders of magnitude. Freeing colors on TrueColor visuals is
4293 a nop, and pixel colors specify RGB values directly. See also
4294 the Xlib spec, chapter 3.1. */
4295 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4296 if (dpyinfo
->red_bits
> 0)
4298 unsigned long pr
, pg
, pb
;
4300 /* Apply gamma-correction like normal color allocation does. */
4304 color
.red
= r
, color
.green
= g
, color
.blue
= b
;
4305 gamma_correct (f
, &color
);
4306 r
= color
.red
, g
= color
.green
, b
= color
.blue
;
4309 /* Scale down RGB values to the visual's bits per RGB, and shift
4310 them to the right position in the pixel color. Note that the
4311 original RGB values are 16-bit values, as usual in X. */
4312 pr
= (r
>> (16 - dpyinfo
->red_bits
)) << dpyinfo
->red_offset
;
4313 pg
= (g
>> (16 - dpyinfo
->green_bits
)) << dpyinfo
->green_offset
;
4314 pb
= (b
>> (16 - dpyinfo
->blue_bits
)) << dpyinfo
->blue_offset
;
4316 /* Assemble the pixel color. */
4317 return pr
| pg
| pb
;
4320 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4321 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
4327 #ifdef HAVE_X_WINDOWS
4336 cmap
= FRAME_X_COLORMAP (f
);
4337 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4340 ++ct_colors_allocated
;
4341 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4345 p
->pixel
= color
.pixel
;
4346 p
->next
= ct_table
[i
];
4350 return FRAME_FOREGROUND_PIXEL (f
);
4355 color
= PALETTERGB (r
, g
, b
);
4357 color
= RGB_TO_ULONG (r
, g
, b
);
4358 #endif /* HAVE_NTGUI */
4359 ++ct_colors_allocated
;
4360 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4365 p
->next
= ct_table
[i
];
4367 #endif /* HAVE_X_WINDOWS */
4375 /* Look up pixel color PIXEL which is used on frame F in the color
4376 table. If not already present, allocate it. Value is PIXEL. */
4378 static unsigned long
4379 lookup_pixel_color (f
, pixel
)
4381 unsigned long pixel
;
4383 int i
= pixel
% CT_SIZE
;
4386 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4387 if (p
->pixel
== pixel
)
4396 #ifdef HAVE_X_WINDOWS
4397 cmap
= FRAME_X_COLORMAP (f
);
4398 color
.pixel
= pixel
;
4399 x_query_color (f
, &color
);
4400 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4403 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
4404 color
.pixel
= pixel
;
4405 XQueryColor (NULL
, cmap
, &color
);
4406 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4408 #endif /* HAVE_X_WINDOWS */
4412 ++ct_colors_allocated
;
4414 p
= (struct ct_color
*) xmalloc (sizeof *p
);
4419 p
->next
= ct_table
[i
];
4423 return FRAME_FOREGROUND_PIXEL (f
);
4429 /* Value is a vector of all pixel colors contained in the color table,
4430 allocated via xmalloc. Set *N to the number of colors. */
4432 static unsigned long *
4433 colors_in_color_table (n
)
4438 unsigned long *colors
;
4440 if (ct_colors_allocated
== 0)
4447 colors
= (unsigned long *) xmalloc (ct_colors_allocated
4449 *n
= ct_colors_allocated
;
4451 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
4452 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4453 colors
[j
++] = p
->pixel
;
4459 #else /* COLOR_TABLE_SUPPORT */
4461 static unsigned long
4462 lookup_rgb_color (f
, r
, g
, b
)
4466 unsigned long pixel
;
4469 pixel
= PALETTERGB (r
>> 8, g
>> 8, b
>> 8);
4470 #endif /* HAVE_NTGUI */
4473 pixel
= RGB_TO_ULONG (r
>> 8, g
>> 8, b
>> 8);
4474 #endif /* HAVE_NS */
4482 #endif /* COLOR_TABLE_SUPPORT */
4485 /***********************************************************************
4487 ***********************************************************************/
4489 static XColor
*x_to_xcolors
P_ ((struct frame
*, struct image
*, int));
4490 static void x_from_xcolors
P_ ((struct frame
*, struct image
*, XColor
*));
4491 static void x_detect_edges
P_ ((struct frame
*, struct image
*, int[9], int));
4494 static void XPutPixel (XImagePtr
, int, int, COLORREF
);
4495 #endif /* HAVE_NTGUI */
4497 /* Non-zero means draw a cross on images having `:conversion
4500 int cross_disabled_images
;
4502 /* Edge detection matrices for different edge-detection
4505 static int emboss_matrix
[9] = {
4507 2, -1, 0, /* y - 1 */
4509 0, 1, -2 /* y + 1 */
4512 static int laplace_matrix
[9] = {
4514 1, 0, 0, /* y - 1 */
4516 0, 0, -1 /* y + 1 */
4519 /* Value is the intensity of the color whose red/green/blue values
4522 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4525 /* On frame F, return an array of XColor structures describing image
4526 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4527 non-zero means also fill the red/green/blue members of the XColor
4528 structures. Value is a pointer to the array of XColors structures,
4529 allocated with xmalloc; it must be freed by the caller. */
4532 x_to_xcolors (f
, img
, rgb_p
)
4539 XImagePtr_or_DC ximg
;
4543 #endif /* HAVE_NTGUI */
4545 colors
= (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *colors
);
4548 /* Get the X image IMG->pixmap. */
4549 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
4550 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
4552 /* Load the image into a memory device context. */
4553 hdc
= get_frame_dc (f
);
4554 ximg
= CreateCompatibleDC (hdc
);
4555 release_frame_dc (f
, hdc
);
4556 prev
= SelectObject (ximg
, img
->pixmap
);
4557 #endif /* HAVE_NTGUI */
4559 /* Fill the `pixel' members of the XColor array. I wished there
4560 were an easy and portable way to circumvent XGetPixel. */
4562 for (y
= 0; y
< img
->height
; ++y
)
4566 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4567 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4568 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4570 x_query_colors (f
, row
, img
->width
);
4574 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4576 /* W32_TODO: palette support needed here? */
4577 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4580 p
->red
= RED16_FROM_ULONG (p
->pixel
);
4581 p
->green
= GREEN16_FROM_ULONG (p
->pixel
);
4582 p
->blue
= BLUE16_FROM_ULONG (p
->pixel
);
4585 #endif /* HAVE_X_WINDOWS */
4588 Destroy_Image (ximg
, prev
);
4595 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4596 created with CreateDIBSection, with the pointer to the bit values
4597 stored in ximg->data. */
4600 XPutPixel (ximg
, x
, y
, color
)
4605 int width
= ximg
->info
.bmiHeader
.biWidth
;
4606 int height
= ximg
->info
.bmiHeader
.biHeight
;
4607 unsigned char * pixel
;
4609 /* True color images. */
4610 if (ximg
->info
.bmiHeader
.biBitCount
== 24)
4612 int rowbytes
= width
* 3;
4613 /* Ensure scanlines are aligned on 4 byte boundaries. */
4615 rowbytes
+= 4 - (rowbytes
% 4);
4617 pixel
= ximg
->data
+ y
* rowbytes
+ x
* 3;
4618 /* Windows bitmaps are in BGR order. */
4619 *pixel
= GetBValue (color
);
4620 *(pixel
+ 1) = GetGValue (color
);
4621 *(pixel
+ 2) = GetRValue (color
);
4623 /* Monochrome images. */
4624 else if (ximg
->info
.bmiHeader
.biBitCount
== 1)
4626 int rowbytes
= width
/ 8;
4627 /* Ensure scanlines are aligned on 4 byte boundaries. */
4629 rowbytes
+= 4 - (rowbytes
% 4);
4630 pixel
= ximg
->data
+ y
* rowbytes
+ x
/ 8;
4631 /* Filter out palette info. */
4632 if (color
& 0x00ffffff)
4633 *pixel
= *pixel
| (1 << x
% 8);
4635 *pixel
= *pixel
& ~(1 << x
% 8);
4638 image_error ("XPutPixel: palette image not supported", Qnil
, Qnil
);
4641 #endif /* HAVE_NTGUI */
4643 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4644 RGB members are set. F is the frame on which this all happens.
4645 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4648 x_from_xcolors (f
, img
, colors
)
4654 XImagePtr oimg
= NULL
;
4658 init_color_table ();
4660 x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 0,
4663 for (y
= 0; y
< img
->height
; ++y
)
4664 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4666 unsigned long pixel
;
4667 pixel
= lookup_rgb_color (f
, p
->red
, p
->green
, p
->blue
);
4668 XPutPixel (oimg
, x
, y
, pixel
);
4672 x_clear_image_1 (f
, img
, 1, 0, 1);
4674 x_put_x_image (f
, oimg
, pixmap
, img
->width
, img
->height
);
4675 x_destroy_x_image (oimg
);
4676 img
->pixmap
= pixmap
;
4677 #ifdef COLOR_TABLE_SUPPORT
4678 img
->colors
= colors_in_color_table (&img
->ncolors
);
4679 free_color_table ();
4680 #endif /* COLOR_TABLE_SUPPORT */
4684 /* On frame F, perform edge-detection on image IMG.
4686 MATRIX is a nine-element array specifying the transformation
4687 matrix. See emboss_matrix for an example.
4689 COLOR_ADJUST is a color adjustment added to each pixel of the
4693 x_detect_edges (f
, img
, matrix
, color_adjust
)
4696 int matrix
[9], color_adjust
;
4698 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4702 for (i
= sum
= 0; i
< 9; ++i
)
4703 sum
+= eabs (matrix
[i
]);
4705 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4707 new = (XColor
*) xmalloc (img
->width
* img
->height
* sizeof *new);
4709 for (y
= 0; y
< img
->height
; ++y
)
4711 p
= COLOR (new, 0, y
);
4712 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4713 p
= COLOR (new, img
->width
- 1, y
);
4714 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4717 for (x
= 1; x
< img
->width
- 1; ++x
)
4719 p
= COLOR (new, x
, 0);
4720 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4721 p
= COLOR (new, x
, img
->height
- 1);
4722 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4725 for (y
= 1; y
< img
->height
- 1; ++y
)
4727 p
= COLOR (new, 1, y
);
4729 for (x
= 1; x
< img
->width
- 1; ++x
, ++p
)
4731 int r
, g
, b
, y1
, x1
;
4734 for (y1
= y
- 1; y1
< y
+ 2; ++y1
)
4735 for (x1
= x
- 1; x1
< x
+ 2; ++x1
, ++i
)
4738 XColor
*t
= COLOR (colors
, x1
, y1
);
4739 r
+= matrix
[i
] * t
->red
;
4740 g
+= matrix
[i
] * t
->green
;
4741 b
+= matrix
[i
] * t
->blue
;
4744 r
= (r
/ sum
+ color_adjust
) & 0xffff;
4745 g
= (g
/ sum
+ color_adjust
) & 0xffff;
4746 b
= (b
/ sum
+ color_adjust
) & 0xffff;
4747 p
->red
= p
->green
= p
->blue
= COLOR_INTENSITY (r
, g
, b
);
4752 x_from_xcolors (f
, img
, new);
4758 /* Perform the pre-defined `emboss' edge-detection on image IMG
4766 x_detect_edges (f
, img
, emboss_matrix
, 0xffff / 2);
4770 /* Transform image IMG which is used on frame F with a Laplace
4771 edge-detection algorithm. The result is an image that can be used
4772 to draw disabled buttons, for example. */
4779 x_detect_edges (f
, img
, laplace_matrix
, 45000);
4783 /* Perform edge-detection on image IMG on frame F, with specified
4784 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4786 MATRIX must be either
4788 - a list of at least 9 numbers in row-major form
4789 - a vector of at least 9 numbers
4791 COLOR_ADJUST nil means use a default; otherwise it must be a
4795 x_edge_detection (f
, img
, matrix
, color_adjust
)
4798 Lisp_Object matrix
, color_adjust
;
4806 i
< 9 && CONSP (matrix
) && NUMBERP (XCAR (matrix
));
4807 ++i
, matrix
= XCDR (matrix
))
4808 trans
[i
] = XFLOATINT (XCAR (matrix
));
4810 else if (VECTORP (matrix
) && ASIZE (matrix
) >= 9)
4812 for (i
= 0; i
< 9 && NUMBERP (AREF (matrix
, i
)); ++i
)
4813 trans
[i
] = XFLOATINT (AREF (matrix
, i
));
4816 if (NILP (color_adjust
))
4817 color_adjust
= make_number (0xffff / 2);
4819 if (i
== 9 && NUMBERP (color_adjust
))
4820 x_detect_edges (f
, img
, trans
, (int) XFLOATINT (color_adjust
));
4824 /* Transform image IMG on frame F so that it looks disabled. */
4827 x_disable_image (f
, img
)
4831 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4833 int n_planes
= dpyinfo
->n_planes
* dpyinfo
->n_cbits
;
4835 int n_planes
= dpyinfo
->n_planes
;
4836 #endif /* HAVE_NTGUI */
4840 /* Color (or grayscale). Convert to gray, and equalize. Just
4841 drawing such images with a stipple can look very odd, so
4842 we're using this method instead. */
4843 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4845 const int h
= 15000;
4846 const int l
= 30000;
4848 for (p
= colors
, end
= colors
+ img
->width
* img
->height
;
4852 int i
= COLOR_INTENSITY (p
->red
, p
->green
, p
->blue
);
4853 int i2
= (0xffff - h
- l
) * i
/ 0xffff + l
;
4854 p
->red
= p
->green
= p
->blue
= i2
;
4857 x_from_xcolors (f
, img
, colors
);
4860 /* Draw a cross over the disabled image, if we must or if we
4862 if (n_planes
< 2 || cross_disabled_images
)
4865 Display
*dpy
= FRAME_X_DISPLAY (f
);
4868 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4870 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4872 gc
= XCreateGC (dpy
, img
->pixmap
, 0, NULL
);
4873 XSetForeground (dpy
, gc
, BLACK_PIX_DEFAULT (f
));
4874 XDrawLine (dpy
, img
->pixmap
, gc
, 0, 0,
4875 img
->width
- 1, img
->height
- 1);
4876 XDrawLine (dpy
, img
->pixmap
, gc
, 0, img
->height
- 1,
4882 gc
= XCreateGC (dpy
, img
->mask
, 0, NULL
);
4883 XSetForeground (dpy
, gc
, MaskForeground (f
));
4884 XDrawLine (dpy
, img
->mask
, gc
, 0, 0,
4885 img
->width
- 1, img
->height
- 1);
4886 XDrawLine (dpy
, img
->mask
, gc
, 0, img
->height
- 1,
4890 #endif /* !HAVE_NS */
4895 hdc
= get_frame_dc (f
);
4896 bmpdc
= CreateCompatibleDC (hdc
);
4897 release_frame_dc (f
, hdc
);
4899 prev
= SelectObject (bmpdc
, img
->pixmap
);
4901 SetTextColor (bmpdc
, BLACK_PIX_DEFAULT (f
));
4902 MoveToEx (bmpdc
, 0, 0, NULL
);
4903 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4904 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4905 LineTo (bmpdc
, img
->width
- 1, 0);
4909 SelectObject (bmpdc
, img
->mask
);
4910 SetTextColor (bmpdc
, WHITE_PIX_DEFAULT (f
));
4911 MoveToEx (bmpdc
, 0, 0, NULL
);
4912 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4913 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4914 LineTo (bmpdc
, img
->width
- 1, 0);
4916 SelectObject (bmpdc
, prev
);
4918 #endif /* HAVE_NTGUI */
4923 /* Build a mask for image IMG which is used on frame F. FILE is the
4924 name of an image file, for error messages. HOW determines how to
4925 determine the background color of IMG. If it is a list '(R G B)',
4926 with R, G, and B being integers >= 0, take that as the color of the
4927 background. Otherwise, determine the background color of IMG
4928 heuristically. Value is non-zero if successful. */
4931 x_build_heuristic_mask (f
, img
, how
)
4936 XImagePtr_or_DC ximg
;
4944 #endif /* HAVE_NTGUI */
4945 int x
, y
, rc
, use_img_background
;
4946 unsigned long bg
= 0;
4950 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4951 img
->mask
= NO_PIXMAP
;
4952 img
->background_transparent_valid
= 0;
4957 /* Create an image and pixmap serving as mask. */
4958 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 1,
4959 &mask_img
, &img
->mask
);
4962 #endif /* !HAVE_NS */
4964 /* Get the X image of IMG->pixmap. */
4965 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
, 0, 0,
4966 img
->width
, img
->height
,
4969 /* Create the bit array serving as mask. */
4970 row_width
= (img
->width
+ 7) / 8;
4971 mask_img
= xmalloc (row_width
* img
->height
);
4972 bzero (mask_img
, row_width
* img
->height
);
4974 /* Create a memory device context for IMG->pixmap. */
4975 frame_dc
= get_frame_dc (f
);
4976 ximg
= CreateCompatibleDC (frame_dc
);
4977 release_frame_dc (f
, frame_dc
);
4978 prev
= SelectObject (ximg
, img
->pixmap
);
4979 #endif /* HAVE_NTGUI */
4981 /* Determine the background color of ximg. If HOW is `(R G B)'
4982 take that as color. Otherwise, use the image's background color. */
4983 use_img_background
= 1;
4989 for (i
= 0; i
< 3 && CONSP (how
) && NATNUMP (XCAR (how
)); ++i
)
4991 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
4995 if (i
== 3 && NILP (how
))
4997 char color_name
[30];
4998 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
5001 0x00ffffff & /* Filter out palette info. */
5002 #endif /* HAVE_NTGUI */
5003 x_alloc_image_color (f
, img
, build_string (color_name
), 0));
5004 use_img_background
= 0;
5008 if (use_img_background
)
5009 bg
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
5011 /* Set all bits in mask_img to 1 whose color in ximg is different
5012 from the background color bg. */
5014 for (y
= 0; y
< img
->height
; ++y
)
5015 for (x
= 0; x
< img
->width
; ++x
)
5017 XPutPixel (mask_img
, x
, y
, (XGetPixel (ximg
, x
, y
) != bg
5018 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
));
5020 if (XGetPixel (ximg
, x
, y
) == bg
)
5021 ns_set_alpha(ximg
, x
, y
, 0);
5022 #endif /* HAVE_NS */
5024 /* Fill in the background_transparent field while we have the mask handy. */
5025 image_background_transparent (img
, f
, mask_img
);
5027 /* Put mask_img into img->mask. */
5028 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
5029 x_destroy_x_image (mask_img
);
5030 #endif /* !HAVE_NS */
5032 for (y
= 0; y
< img
->height
; ++y
)
5033 for (x
= 0; x
< img
->width
; ++x
)
5035 COLORREF p
= GetPixel (ximg
, x
, y
);
5037 mask_img
[y
* row_width
+ x
/ 8] |= 1 << (x
% 8);
5040 /* Create the mask image. */
5041 img
->mask
= w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
,
5043 /* Fill in the background_transparent field while we have the mask handy. */
5044 SelectObject (ximg
, img
->mask
);
5045 image_background_transparent (img
, f
, ximg
);
5047 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
5049 #endif /* HAVE_NTGUI */
5051 Destroy_Image (ximg
, prev
);
5057 /***********************************************************************
5058 PBM (mono, gray, color)
5059 ***********************************************************************/
5061 static int pbm_image_p
P_ ((Lisp_Object object
));
5062 static int pbm_load
P_ ((struct frame
*f
, struct image
*img
));
5063 static int pbm_scan_number
P_ ((unsigned char **, unsigned char *));
5065 /* The symbol `pbm' identifying images of this type. */
5069 /* Indices of image specification fields in gs_format, below. */
5071 enum pbm_keyword_index
5087 /* Vector of image_keyword structures describing the format
5088 of valid user-defined image specifications. */
5090 static const struct image_keyword pbm_format
[PBM_LAST
] =
5092 {":type", IMAGE_SYMBOL_VALUE
, 1},
5093 {":file", IMAGE_STRING_VALUE
, 0},
5094 {":data", IMAGE_STRING_VALUE
, 0},
5095 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5096 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
5097 {":relief", IMAGE_INTEGER_VALUE
, 0},
5098 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5099 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5100 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5101 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
5102 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5105 /* Structure describing the image type `pbm'. */
5107 static struct image_type pbm_type
=
5117 /* Return non-zero if OBJECT is a valid PBM image specification. */
5120 pbm_image_p (object
)
5123 struct image_keyword fmt
[PBM_LAST
];
5125 bcopy (pbm_format
, fmt
, sizeof fmt
);
5127 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
))
5130 /* Must specify either :data or :file. */
5131 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
5135 /* Scan a decimal number from *S and return it. Advance *S while
5136 reading the number. END is the end of the string. Value is -1 at
5140 pbm_scan_number (s
, end
)
5141 unsigned char **s
, *end
;
5143 int c
= 0, val
= -1;
5147 /* Skip white-space. */
5148 while (*s
< end
&& (c
= *(*s
)++, isspace (c
)))
5153 /* Skip comment to end of line. */
5154 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n'))
5157 else if (isdigit (c
))
5159 /* Read decimal number. */
5161 while (*s
< end
&& (c
= *(*s
)++, isdigit (c
)))
5162 val
= 10 * val
+ c
- '0';
5174 #if 0 /* Unused. ++kfs */
5176 /* Read FILE into memory. Value is a pointer to a buffer allocated
5177 with xmalloc holding FILE's contents. Value is null if an error
5178 occurred. *SIZE is set to the size of the file. */
5181 pbm_read_file (file
, size
)
5189 if (stat (SDATA (file
), &st
) == 0
5190 && (fp
= fopen (SDATA (file
), "rb")) != NULL
5191 && (buf
= (char *) xmalloc (st
.st_size
),
5192 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
5211 #endif /* HAVE_NTGUI */
5213 /* Load PBM image IMG for use on frame F. */
5221 int width
, height
, max_color_idx
= 0;
5223 Lisp_Object file
, specified_file
;
5224 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
5225 struct gcpro gcpro1
;
5226 unsigned char *contents
= NULL
;
5227 unsigned char *end
, *p
;
5230 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5234 if (STRINGP (specified_file
))
5236 file
= x_find_image_file (specified_file
);
5237 if (!STRINGP (file
))
5239 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5244 contents
= slurp_file (SDATA (file
), &size
);
5245 if (contents
== NULL
)
5247 image_error ("Error reading `%s'", file
, Qnil
);
5253 end
= contents
+ size
;
5258 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5260 end
= p
+ SBYTES (data
);
5263 /* Check magic number. */
5264 if (end
- p
< 2 || *p
++ != 'P')
5266 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5276 raw_p
= 0, type
= PBM_MONO
;
5280 raw_p
= 0, type
= PBM_GRAY
;
5284 raw_p
= 0, type
= PBM_COLOR
;
5288 raw_p
= 1, type
= PBM_MONO
;
5292 raw_p
= 1, type
= PBM_GRAY
;
5296 raw_p
= 1, type
= PBM_COLOR
;
5300 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5304 /* Read width, height, maximum color-component. Characters
5305 starting with `#' up to the end of a line are ignored. */
5306 width
= pbm_scan_number (&p
, end
);
5307 height
= pbm_scan_number (&p
, end
);
5309 if (type
!= PBM_MONO
)
5311 max_color_idx
= pbm_scan_number (&p
, end
);
5312 if (max_color_idx
> 65535 || max_color_idx
< 0)
5314 image_error ("Unsupported maximum PBM color value", Qnil
, Qnil
);
5319 if (!check_image_size (f
, width
, height
))
5321 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5325 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
5326 &ximg
, &img
->pixmap
))
5329 /* Initialize the color hash table. */
5330 init_color_table ();
5332 if (type
== PBM_MONO
)
5335 struct image_keyword fmt
[PBM_LAST
];
5336 unsigned long fg
= FRAME_FOREGROUND_PIXEL (f
);
5337 unsigned long bg
= FRAME_BACKGROUND_PIXEL (f
);
5339 /* Parse the image specification. */
5340 bcopy (pbm_format
, fmt
, sizeof fmt
);
5341 parse_image_spec (img
->spec
, fmt
, PBM_LAST
, Qpbm
);
5343 /* Get foreground and background colors, maybe allocate colors. */
5344 if (fmt
[PBM_FOREGROUND
].count
5345 && STRINGP (fmt
[PBM_FOREGROUND
].value
))
5346 fg
= x_alloc_image_color (f
, img
, fmt
[PBM_FOREGROUND
].value
, fg
);
5347 if (fmt
[PBM_BACKGROUND
].count
5348 && STRINGP (fmt
[PBM_BACKGROUND
].value
))
5350 bg
= x_alloc_image_color (f
, img
, fmt
[PBM_BACKGROUND
].value
, bg
);
5351 img
->background
= bg
;
5352 img
->background_valid
= 1;
5355 for (y
= 0; y
< height
; ++y
)
5356 for (x
= 0; x
< width
; ++x
)
5364 x_destroy_x_image (ximg
);
5365 x_clear_image (f
, img
);
5366 image_error ("Invalid image size in image `%s'",
5376 g
= pbm_scan_number (&p
, end
);
5378 XPutPixel (ximg
, x
, y
, g
? fg
: bg
);
5383 int expected_size
= height
* width
;
5384 if (max_color_idx
> 255)
5386 if (type
== PBM_COLOR
)
5389 if (raw_p
&& p
+ expected_size
> end
)
5391 x_destroy_x_image (ximg
);
5392 x_clear_image (f
, img
);
5393 image_error ("Invalid image size in image `%s'",
5398 for (y
= 0; y
< height
; ++y
)
5399 for (x
= 0; x
< width
; ++x
)
5403 if (type
== PBM_GRAY
&& raw_p
)
5406 if (max_color_idx
> 255)
5407 r
= g
= b
= r
* 256 + *p
++;
5409 else if (type
== PBM_GRAY
)
5410 r
= g
= b
= pbm_scan_number (&p
, end
);
5414 if (max_color_idx
> 255)
5417 if (max_color_idx
> 255)
5420 if (max_color_idx
> 255)
5425 r
= pbm_scan_number (&p
, end
);
5426 g
= pbm_scan_number (&p
, end
);
5427 b
= pbm_scan_number (&p
, end
);
5430 if (r
< 0 || g
< 0 || b
< 0)
5432 x_destroy_x_image (ximg
);
5433 image_error ("Invalid pixel value in image `%s'",
5438 /* RGB values are now in the range 0..max_color_idx.
5439 Scale this to the range 0..0xffff supported by X. */
5440 r
= (double) r
* 65535 / max_color_idx
;
5441 g
= (double) g
* 65535 / max_color_idx
;
5442 b
= (double) b
* 65535 / max_color_idx
;
5443 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5447 #ifdef COLOR_TABLE_SUPPORT
5448 /* Store in IMG->colors the colors allocated for the image, and
5449 free the color table. */
5450 img
->colors
= colors_in_color_table (&img
->ncolors
);
5451 free_color_table ();
5452 #endif /* COLOR_TABLE_SUPPORT */
5455 img
->height
= height
;
5457 /* Maybe fill in the background field while we have ximg handy. */
5459 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5460 /* Casting avoids a GCC warning. */
5461 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5463 /* Put the image into a pixmap. */
5464 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
5465 x_destroy_x_image (ximg
);
5467 /* X and W32 versions did it here, MAC version above. ++kfs
5469 img->height = height; */
5477 /***********************************************************************
5479 ***********************************************************************/
5481 #if defined (HAVE_PNG) || defined (HAVE_NS)
5483 /* Function prototypes. */
5485 static int png_image_p
P_ ((Lisp_Object object
));
5486 static int png_load
P_ ((struct frame
*f
, struct image
*img
));
5488 /* The symbol `png' identifying images of this type. */
5492 /* Indices of image specification fields in png_format, below. */
5494 enum png_keyword_index
5509 /* Vector of image_keyword structures describing the format
5510 of valid user-defined image specifications. */
5512 static const struct image_keyword png_format
[PNG_LAST
] =
5514 {":type", IMAGE_SYMBOL_VALUE
, 1},
5515 {":data", IMAGE_STRING_VALUE
, 0},
5516 {":file", IMAGE_STRING_VALUE
, 0},
5517 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5518 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
5519 {":relief", IMAGE_INTEGER_VALUE
, 0},
5520 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5521 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5522 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5523 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5526 /* Structure describing the image type `png'. */
5528 static struct image_type png_type
=
5537 /* Return non-zero if OBJECT is a valid PNG image specification. */
5540 png_image_p (object
)
5543 struct image_keyword fmt
[PNG_LAST
];
5544 bcopy (png_format
, fmt
, sizeof fmt
);
5546 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
))
5549 /* Must specify either the :data or :file keyword. */
5550 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
5553 #endif /* HAVE_PNG || HAVE_NS */
5559 /* PNG library details. */
5561 DEF_IMGLIB_FN (png_get_io_ptr
);
5562 DEF_IMGLIB_FN (png_sig_cmp
);
5563 DEF_IMGLIB_FN (png_create_read_struct
);
5564 DEF_IMGLIB_FN (png_create_info_struct
);
5565 DEF_IMGLIB_FN (png_destroy_read_struct
);
5566 DEF_IMGLIB_FN (png_set_read_fn
);
5567 DEF_IMGLIB_FN (png_set_sig_bytes
);
5568 DEF_IMGLIB_FN (png_read_info
);
5569 DEF_IMGLIB_FN (png_get_IHDR
);
5570 DEF_IMGLIB_FN (png_get_valid
);
5571 DEF_IMGLIB_FN (png_set_strip_16
);
5572 DEF_IMGLIB_FN (png_set_expand
);
5573 DEF_IMGLIB_FN (png_set_gray_to_rgb
);
5574 DEF_IMGLIB_FN (png_set_background
);
5575 DEF_IMGLIB_FN (png_get_bKGD
);
5576 DEF_IMGLIB_FN (png_read_update_info
);
5577 DEF_IMGLIB_FN (png_get_channels
);
5578 DEF_IMGLIB_FN (png_get_rowbytes
);
5579 DEF_IMGLIB_FN (png_read_image
);
5580 DEF_IMGLIB_FN (png_read_end
);
5581 DEF_IMGLIB_FN (png_error
);
5584 init_png_functions (Lisp_Object libraries
)
5588 /* Try loading libpng under probable names. */
5589 if (!(library
= w32_delayed_load (libraries
, Qpng
)))
5592 LOAD_IMGLIB_FN (library
, png_get_io_ptr
);
5593 LOAD_IMGLIB_FN (library
, png_sig_cmp
);
5594 LOAD_IMGLIB_FN (library
, png_create_read_struct
);
5595 LOAD_IMGLIB_FN (library
, png_create_info_struct
);
5596 LOAD_IMGLIB_FN (library
, png_destroy_read_struct
);
5597 LOAD_IMGLIB_FN (library
, png_set_read_fn
);
5598 LOAD_IMGLIB_FN (library
, png_set_sig_bytes
);
5599 LOAD_IMGLIB_FN (library
, png_read_info
);
5600 LOAD_IMGLIB_FN (library
, png_get_IHDR
);
5601 LOAD_IMGLIB_FN (library
, png_get_valid
);
5602 LOAD_IMGLIB_FN (library
, png_set_strip_16
);
5603 LOAD_IMGLIB_FN (library
, png_set_expand
);
5604 LOAD_IMGLIB_FN (library
, png_set_gray_to_rgb
);
5605 LOAD_IMGLIB_FN (library
, png_set_background
);
5606 LOAD_IMGLIB_FN (library
, png_get_bKGD
);
5607 LOAD_IMGLIB_FN (library
, png_read_update_info
);
5608 LOAD_IMGLIB_FN (library
, png_get_channels
);
5609 LOAD_IMGLIB_FN (library
, png_get_rowbytes
);
5610 LOAD_IMGLIB_FN (library
, png_read_image
);
5611 LOAD_IMGLIB_FN (library
, png_read_end
);
5612 LOAD_IMGLIB_FN (library
, png_error
);
5617 #define fn_png_get_io_ptr png_get_io_ptr
5618 #define fn_png_sig_cmp png_sig_cmp
5619 #define fn_png_create_read_struct png_create_read_struct
5620 #define fn_png_create_info_struct png_create_info_struct
5621 #define fn_png_destroy_read_struct png_destroy_read_struct
5622 #define fn_png_set_read_fn png_set_read_fn
5623 #define fn_png_set_sig_bytes png_set_sig_bytes
5624 #define fn_png_read_info png_read_info
5625 #define fn_png_get_IHDR png_get_IHDR
5626 #define fn_png_get_valid png_get_valid
5627 #define fn_png_set_strip_16 png_set_strip_16
5628 #define fn_png_set_expand png_set_expand
5629 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5630 #define fn_png_set_background png_set_background
5631 #define fn_png_get_bKGD png_get_bKGD
5632 #define fn_png_read_update_info png_read_update_info
5633 #define fn_png_get_channels png_get_channels
5634 #define fn_png_get_rowbytes png_get_rowbytes
5635 #define fn_png_read_image png_read_image
5636 #define fn_png_read_end png_read_end
5637 #define fn_png_error png_error
5639 #endif /* HAVE_NTGUI */
5641 /* Error and warning handlers installed when the PNG library
5645 my_png_error (png_ptr
, msg
)
5646 png_struct
*png_ptr
;
5649 xassert (png_ptr
!= NULL
);
5650 image_error ("PNG error: %s", build_string (msg
), Qnil
);
5651 longjmp (png_ptr
->jmpbuf
, 1);
5656 my_png_warning (png_ptr
, msg
)
5657 png_struct
*png_ptr
;
5660 xassert (png_ptr
!= NULL
);
5661 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
5664 /* Memory source for PNG decoding. */
5666 struct png_memory_storage
5668 unsigned char *bytes
; /* The data */
5669 size_t len
; /* How big is it? */
5670 int index
; /* Where are we? */
5674 /* Function set as reader function when reading PNG image from memory.
5675 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5676 bytes from the input to DATA. */
5679 png_read_from_memory (png_ptr
, data
, length
)
5680 png_structp png_ptr
;
5684 struct png_memory_storage
*tbr
5685 = (struct png_memory_storage
*) fn_png_get_io_ptr (png_ptr
);
5687 if (length
> tbr
->len
- tbr
->index
)
5688 fn_png_error (png_ptr
, "Read error");
5690 bcopy (tbr
->bytes
+ tbr
->index
, data
, length
);
5691 tbr
->index
= tbr
->index
+ length
;
5695 /* Function set as reader function when reading PNG image from a file.
5696 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5697 bytes from the input to DATA. */
5700 png_read_from_file (png_ptr
, data
, length
)
5701 png_structp png_ptr
;
5705 FILE *fp
= (FILE *) fn_png_get_io_ptr (png_ptr
);
5707 if (fread (data
, 1, length
, fp
) < length
)
5708 fn_png_error (png_ptr
, "Read error");
5712 /* Load PNG image IMG for use on frame F. Value is non-zero if
5720 Lisp_Object file
, specified_file
;
5721 Lisp_Object specified_data
;
5723 XImagePtr ximg
, mask_img
= NULL
;
5724 struct gcpro gcpro1
;
5725 png_struct
*png_ptr
= NULL
;
5726 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
5727 FILE *volatile fp
= NULL
;
5729 png_byte
* volatile pixels
= NULL
;
5730 png_byte
** volatile rows
= NULL
;
5731 png_uint_32 width
, height
;
5732 int bit_depth
, color_type
, interlace_type
;
5734 png_uint_32 row_bytes
;
5736 struct png_memory_storage tbr
; /* Data to be read */
5738 /* Find out what file to load. */
5739 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5740 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5744 if (NILP (specified_data
))
5746 file
= x_find_image_file (specified_file
);
5747 if (!STRINGP (file
))
5749 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5754 /* Open the image file. */
5755 fp
= fopen (SDATA (file
), "rb");
5758 image_error ("Cannot open image file `%s'", file
, Qnil
);
5763 /* Check PNG signature. */
5764 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
5765 || fn_png_sig_cmp (sig
, 0, sizeof sig
))
5767 image_error ("Not a PNG file: `%s'", file
, Qnil
);
5775 /* Read from memory. */
5776 tbr
.bytes
= SDATA (specified_data
);
5777 tbr
.len
= SBYTES (specified_data
);
5780 /* Check PNG signature. */
5781 if (tbr
.len
< sizeof sig
5782 || fn_png_sig_cmp (tbr
.bytes
, 0, sizeof sig
))
5784 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
5789 /* Need to skip past the signature. */
5790 tbr
.bytes
+= sizeof (sig
);
5793 /* Initialize read and info structs for PNG lib. Casting return
5794 value avoids a GCC warning on W32. */
5795 png_ptr
= (png_structp
)fn_png_create_read_struct (PNG_LIBPNG_VER_STRING
,
5800 if (fp
) fclose (fp
);
5805 /* Casting return value avoids a GCC warning on W32. */
5806 info_ptr
= (png_infop
)fn_png_create_info_struct (png_ptr
);
5809 fn_png_destroy_read_struct (&png_ptr
, NULL
, NULL
);
5810 if (fp
) fclose (fp
);
5815 /* Casting return value avoids a GCC warning on W32. */
5816 end_info
= (png_infop
)fn_png_create_info_struct (png_ptr
);
5819 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, NULL
);
5820 if (fp
) fclose (fp
);
5825 /* Set error jump-back. We come back here when the PNG library
5826 detects an error. */
5827 if (setjmp (png_ptr
->jmpbuf
))
5831 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
5834 if (fp
) fclose (fp
);
5839 /* Read image info. */
5840 if (!NILP (specified_data
))
5841 fn_png_set_read_fn (png_ptr
, (void *) &tbr
, png_read_from_memory
);
5843 fn_png_set_read_fn (png_ptr
, (void *) fp
, png_read_from_file
);
5845 fn_png_set_sig_bytes (png_ptr
, sizeof sig
);
5846 fn_png_read_info (png_ptr
, info_ptr
);
5847 fn_png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
5848 &interlace_type
, NULL
, NULL
);
5850 if (!check_image_size (f
, width
, height
))
5852 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5855 /* If image contains simply transparency data, we prefer to
5856 construct a clipping mask. */
5857 if (fn_png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
5862 /* This function is easier to write if we only have to handle
5863 one data format: RGB or RGBA with 8 bits per channel. Let's
5864 transform other formats into that format. */
5866 /* Strip more than 8 bits per channel. */
5867 if (bit_depth
== 16)
5868 fn_png_set_strip_16 (png_ptr
);
5870 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5872 fn_png_set_expand (png_ptr
);
5874 /* Convert grayscale images to RGB. */
5875 if (color_type
== PNG_COLOR_TYPE_GRAY
5876 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
5877 fn_png_set_gray_to_rgb (png_ptr
);
5879 /* Handle alpha channel by combining the image with a background
5880 color. Do this only if a real alpha channel is supplied. For
5881 simple transparency, we prefer a clipping mask. */
5884 /* png_color_16 *image_bg; */
5885 Lisp_Object specified_bg
5886 = image_spec_value (img
->spec
, QCbackground
, NULL
);
5887 int shift
= (bit_depth
== 16) ? 0 : 8;
5889 if (STRINGP (specified_bg
))
5890 /* The user specified `:background', use that. */
5893 if (x_defined_color (f
, SDATA (specified_bg
), &color
, 0))
5895 png_color_16 user_bg
;
5897 bzero (&user_bg
, sizeof user_bg
);
5898 user_bg
.red
= color
.red
>> shift
;
5899 user_bg
.green
= color
.green
>> shift
;
5900 user_bg
.blue
= color
.blue
>> shift
;
5902 fn_png_set_background (png_ptr
, &user_bg
,
5903 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5908 /* We use the current frame background, ignoring any default
5909 background color set by the image. */
5910 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5912 png_color_16 frame_background
;
5914 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
5915 x_query_color (f
, &color
);
5917 bzero (&frame_background
, sizeof frame_background
);
5918 frame_background
.red
= color
.red
>> shift
;
5919 frame_background
.green
= color
.green
>> shift
;
5920 frame_background
.blue
= color
.blue
>> shift
;
5921 #endif /* HAVE_X_WINDOWS */
5923 fn_png_set_background (png_ptr
, &frame_background
,
5924 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5928 /* Update info structure. */
5929 fn_png_read_update_info (png_ptr
, info_ptr
);
5931 /* Get number of channels. Valid values are 1 for grayscale images
5932 and images with a palette, 2 for grayscale images with transparency
5933 information (alpha channel), 3 for RGB images, and 4 for RGB
5934 images with alpha channel, i.e. RGBA. If conversions above were
5935 sufficient we should only have 3 or 4 channels here. */
5936 channels
= fn_png_get_channels (png_ptr
, info_ptr
);
5937 xassert (channels
== 3 || channels
== 4);
5939 /* Number of bytes needed for one row of the image. */
5940 row_bytes
= fn_png_get_rowbytes (png_ptr
, info_ptr
);
5942 /* Allocate memory for the image. */
5943 pixels
= (png_byte
*) xmalloc (row_bytes
* height
* sizeof *pixels
);
5944 rows
= (png_byte
**) xmalloc (height
* sizeof *rows
);
5945 for (i
= 0; i
< height
; ++i
)
5946 rows
[i
] = pixels
+ i
* row_bytes
;
5948 /* Read the entire image. */
5949 fn_png_read_image (png_ptr
, rows
);
5950 fn_png_read_end (png_ptr
, info_ptr
);
5957 /* Create the X image and pixmap. */
5958 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
5962 /* Create an image and pixmap serving as mask if the PNG image
5963 contains an alpha channel. */
5966 && !x_create_x_image_and_pixmap (f
, width
, height
, 1,
5967 &mask_img
, &img
->mask
))
5969 x_destroy_x_image (ximg
);
5970 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
5971 img
->pixmap
= NO_PIXMAP
;
5975 /* Fill the X image and mask from PNG data. */
5976 init_color_table ();
5978 for (y
= 0; y
< height
; ++y
)
5980 png_byte
*p
= rows
[y
];
5982 for (x
= 0; x
< width
; ++x
)
5989 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5990 /* An alpha channel, aka mask channel, associates variable
5991 transparency with an image. Where other image formats
5992 support binary transparency---fully transparent or fully
5993 opaque---PNG allows up to 254 levels of partial transparency.
5994 The PNG library implements partial transparency by combining
5995 the image with a specified background color.
5997 I'm not sure how to handle this here nicely: because the
5998 background on which the image is displayed may change, for
5999 real alpha channel support, it would be necessary to create
6000 a new image for each possible background.
6002 What I'm doing now is that a mask is created if we have
6003 boolean transparency information. Otherwise I'm using
6004 the frame's background color to combine the image with. */
6009 XPutPixel (mask_img
, x
, y
, *p
> 0 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
);
6015 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6016 /* Set IMG's background color from the PNG image, unless the user
6020 if (fn_png_get_bKGD (png_ptr
, info_ptr
, &bg
))
6022 img
->background
= lookup_rgb_color (f
, bg
->red
, bg
->green
, bg
->blue
);
6023 img
->background_valid
= 1;
6027 #ifdef COLOR_TABLE_SUPPORT
6028 /* Remember colors allocated for this image. */
6029 img
->colors
= colors_in_color_table (&img
->ncolors
);
6030 free_color_table ();
6031 #endif /* COLOR_TABLE_SUPPORT */
6034 fn_png_destroy_read_struct (&png_ptr
, &info_ptr
, &end_info
);
6039 img
->height
= height
;
6041 /* Maybe fill in the background field while we have ximg handy.
6042 Casting avoids a GCC warning. */
6043 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6045 /* Put the image into the pixmap, then free the X image and its buffer. */
6046 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6047 x_destroy_x_image (ximg
);
6049 /* Same for the mask. */
6052 /* Fill in the background_transparent field while we have the
6053 mask handy. Casting avoids a GCC warning. */
6054 image_background_transparent (img
, f
, (XImagePtr_or_DC
)mask_img
);
6056 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
6057 x_destroy_x_image (mask_img
);
6064 #else /* HAVE_PNG */
6068 png_load (struct frame
*f
, struct image
*img
)
6070 return ns_load_image(f
, img
,
6071 image_spec_value (img
->spec
, QCfile
, NULL
),
6072 image_spec_value (img
->spec
, QCdata
, NULL
));
6074 #endif /* HAVE_NS */
6077 #endif /* !HAVE_PNG */
6081 /***********************************************************************
6083 ***********************************************************************/
6085 #if defined (HAVE_JPEG) || defined (HAVE_NS)
6087 static int jpeg_image_p
P_ ((Lisp_Object object
));
6088 static int jpeg_load
P_ ((struct frame
*f
, struct image
*img
));
6090 /* The symbol `jpeg' identifying images of this type. */
6094 /* Indices of image specification fields in gs_format, below. */
6096 enum jpeg_keyword_index
6105 JPEG_HEURISTIC_MASK
,
6111 /* Vector of image_keyword structures describing the format
6112 of valid user-defined image specifications. */
6114 static const struct image_keyword jpeg_format
[JPEG_LAST
] =
6116 {":type", IMAGE_SYMBOL_VALUE
, 1},
6117 {":data", IMAGE_STRING_VALUE
, 0},
6118 {":file", IMAGE_STRING_VALUE
, 0},
6119 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6120 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6121 {":relief", IMAGE_INTEGER_VALUE
, 0},
6122 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6123 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6124 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6125 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
6128 /* Structure describing the image type `jpeg'. */
6130 static struct image_type jpeg_type
=
6139 /* Return non-zero if OBJECT is a valid JPEG image specification. */
6142 jpeg_image_p (object
)
6145 struct image_keyword fmt
[JPEG_LAST
];
6147 bcopy (jpeg_format
, fmt
, sizeof fmt
);
6149 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
))
6152 /* Must specify either the :data or :file keyword. */
6153 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
6156 #endif /* HAVE_JPEG || HAVE_NS */
6160 /* Work around a warning about HAVE_STDLIB_H being redefined in
6162 #ifdef HAVE_STDLIB_H
6163 #define HAVE_STDLIB_H_1
6164 #undef HAVE_STDLIB_H
6165 #endif /* HAVE_STLIB_H */
6167 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6168 /* In older releases of the jpeg library, jpeglib.h will define boolean
6169 differently depending on __WIN32__, so make sure it is defined. */
6173 #include <jpeglib.h>
6176 #ifdef HAVE_STLIB_H_1
6177 #define HAVE_STDLIB_H 1
6182 /* JPEG library details. */
6183 DEF_IMGLIB_FN (jpeg_CreateDecompress
);
6184 DEF_IMGLIB_FN (jpeg_start_decompress
);
6185 DEF_IMGLIB_FN (jpeg_finish_decompress
);
6186 DEF_IMGLIB_FN (jpeg_destroy_decompress
);
6187 DEF_IMGLIB_FN (jpeg_read_header
);
6188 DEF_IMGLIB_FN (jpeg_read_scanlines
);
6189 DEF_IMGLIB_FN (jpeg_std_error
);
6190 DEF_IMGLIB_FN (jpeg_resync_to_restart
);
6193 init_jpeg_functions (Lisp_Object libraries
)
6197 if (!(library
= w32_delayed_load (libraries
, Qjpeg
)))
6200 LOAD_IMGLIB_FN (library
, jpeg_finish_decompress
);
6201 LOAD_IMGLIB_FN (library
, jpeg_read_scanlines
);
6202 LOAD_IMGLIB_FN (library
, jpeg_start_decompress
);
6203 LOAD_IMGLIB_FN (library
, jpeg_read_header
);
6204 LOAD_IMGLIB_FN (library
, jpeg_CreateDecompress
);
6205 LOAD_IMGLIB_FN (library
, jpeg_destroy_decompress
);
6206 LOAD_IMGLIB_FN (library
, jpeg_std_error
);
6207 LOAD_IMGLIB_FN (library
, jpeg_resync_to_restart
);
6211 /* Wrapper since we can't directly assign the function pointer
6212 to another function pointer that was declared more completely easily. */
6214 jpeg_resync_to_restart_wrapper (cinfo
, desired
)
6215 j_decompress_ptr cinfo
;
6218 return fn_jpeg_resync_to_restart (cinfo
, desired
);
6223 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress(a)
6224 #define fn_jpeg_start_decompress jpeg_start_decompress
6225 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6226 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6227 #define fn_jpeg_read_header jpeg_read_header
6228 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6229 #define fn_jpeg_std_error jpeg_std_error
6230 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6232 #endif /* HAVE_NTGUI */
6234 struct my_jpeg_error_mgr
6236 struct jpeg_error_mgr pub
;
6237 jmp_buf setjmp_buffer
;
6242 my_error_exit (cinfo
)
6245 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
6246 longjmp (mgr
->setjmp_buffer
, 1);
6250 /* Init source method for JPEG data source manager. Called by
6251 jpeg_read_header() before any data is actually read. See
6252 libjpeg.doc from the JPEG lib distribution. */
6255 our_common_init_source (cinfo
)
6256 j_decompress_ptr cinfo
;
6261 /* Method to terminate data source. Called by
6262 jpeg_finish_decompress() after all data has been processed. */
6265 our_common_term_source (cinfo
)
6266 j_decompress_ptr cinfo
;
6271 /* Fill input buffer method for JPEG data source manager. Called
6272 whenever more data is needed. We read the whole image in one step,
6273 so this only adds a fake end of input marker at the end. */
6275 static JOCTET our_memory_buffer
[2];
6278 our_memory_fill_input_buffer (cinfo
)
6279 j_decompress_ptr cinfo
;
6281 /* Insert a fake EOI marker. */
6282 struct jpeg_source_mgr
*src
= cinfo
->src
;
6284 our_memory_buffer
[0] = (JOCTET
) 0xFF;
6285 our_memory_buffer
[1] = (JOCTET
) JPEG_EOI
;
6287 src
->next_input_byte
= our_memory_buffer
;
6288 src
->bytes_in_buffer
= 2;
6293 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6294 is the JPEG data source manager. */
6297 our_memory_skip_input_data (cinfo
, num_bytes
)
6298 j_decompress_ptr cinfo
;
6301 struct jpeg_source_mgr
*src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6305 if (num_bytes
> src
->bytes_in_buffer
)
6306 ERREXIT (cinfo
, JERR_INPUT_EOF
);
6308 src
->bytes_in_buffer
-= num_bytes
;
6309 src
->next_input_byte
+= num_bytes
;
6314 /* Set up the JPEG lib for reading an image from DATA which contains
6315 LEN bytes. CINFO is the decompression info structure created for
6316 reading the image. */
6319 jpeg_memory_src (cinfo
, data
, len
)
6320 j_decompress_ptr cinfo
;
6324 struct jpeg_source_mgr
*src
;
6326 if (cinfo
->src
== NULL
)
6328 /* First time for this JPEG object? */
6329 cinfo
->src
= (struct jpeg_source_mgr
*)
6330 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6331 sizeof (struct jpeg_source_mgr
));
6332 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6333 src
->next_input_byte
= data
;
6336 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6337 src
->init_source
= our_common_init_source
;
6338 src
->fill_input_buffer
= our_memory_fill_input_buffer
;
6339 src
->skip_input_data
= our_memory_skip_input_data
;
6340 src
->resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6341 src
->term_source
= our_common_term_source
;
6342 src
->bytes_in_buffer
= len
;
6343 src
->next_input_byte
= data
;
6347 struct jpeg_stdio_mgr
6349 struct jpeg_source_mgr mgr
;
6356 /* Size of buffer to read JPEG from file.
6357 Not too big, as we want to use alloc_small. */
6358 #define JPEG_STDIO_BUFFER_SIZE 8192
6361 /* Fill input buffer method for JPEG data source manager. Called
6362 whenever more data is needed. The data is read from a FILE *. */
6365 our_stdio_fill_input_buffer (cinfo
)
6366 j_decompress_ptr cinfo
;
6368 struct jpeg_stdio_mgr
*src
;
6370 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6375 bytes
= fread (src
->buffer
, 1, JPEG_STDIO_BUFFER_SIZE
, src
->file
);
6377 src
->mgr
.bytes_in_buffer
= bytes
;
6380 WARNMS (cinfo
, JWRN_JPEG_EOF
);
6382 src
->buffer
[0] = (JOCTET
) 0xFF;
6383 src
->buffer
[1] = (JOCTET
) JPEG_EOI
;
6384 src
->mgr
.bytes_in_buffer
= 2;
6386 src
->mgr
.next_input_byte
= src
->buffer
;
6393 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6394 is the JPEG data source manager. */
6397 our_stdio_skip_input_data (cinfo
, num_bytes
)
6398 j_decompress_ptr cinfo
;
6401 struct jpeg_stdio_mgr
*src
;
6402 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6404 while (num_bytes
> 0 && !src
->finished
)
6406 if (num_bytes
<= src
->mgr
.bytes_in_buffer
)
6408 src
->mgr
.bytes_in_buffer
-= num_bytes
;
6409 src
->mgr
.next_input_byte
+= num_bytes
;
6414 num_bytes
-= src
->mgr
.bytes_in_buffer
;
6415 src
->mgr
.bytes_in_buffer
= 0;
6416 src
->mgr
.next_input_byte
= NULL
;
6418 our_stdio_fill_input_buffer (cinfo
);
6424 /* Set up the JPEG lib for reading an image from a FILE *.
6425 CINFO is the decompression info structure created for
6426 reading the image. */
6429 jpeg_file_src (cinfo
, fp
)
6430 j_decompress_ptr cinfo
;
6433 struct jpeg_stdio_mgr
*src
;
6435 if (cinfo
->src
!= NULL
)
6436 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6439 /* First time for this JPEG object? */
6440 cinfo
->src
= (struct jpeg_source_mgr
*)
6441 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6442 sizeof (struct jpeg_stdio_mgr
));
6443 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6444 src
->buffer
= (JOCTET
*)
6445 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6446 JPEG_STDIO_BUFFER_SIZE
);
6451 src
->mgr
.init_source
= our_common_init_source
;
6452 src
->mgr
.fill_input_buffer
= our_stdio_fill_input_buffer
;
6453 src
->mgr
.skip_input_data
= our_stdio_skip_input_data
;
6454 src
->mgr
.resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6455 src
->mgr
.term_source
= our_common_term_source
;
6456 src
->mgr
.bytes_in_buffer
= 0;
6457 src
->mgr
.next_input_byte
= NULL
;
6461 /* Load image IMG for use on frame F. Patterned after example.c
6462 from the JPEG lib. */
6469 struct jpeg_decompress_struct cinfo
;
6470 struct my_jpeg_error_mgr mgr
;
6471 Lisp_Object file
, specified_file
;
6472 Lisp_Object specified_data
;
6473 FILE * volatile fp
= NULL
;
6475 int row_stride
, x
, y
;
6476 XImagePtr ximg
= NULL
;
6478 unsigned long *colors
;
6480 struct gcpro gcpro1
;
6482 /* Open the JPEG file. */
6483 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6484 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6488 if (NILP (specified_data
))
6490 file
= x_find_image_file (specified_file
);
6491 if (!STRINGP (file
))
6493 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6498 fp
= fopen (SDATA (file
), "rb");
6501 image_error ("Cannot open `%s'", file
, Qnil
);
6507 /* Customize libjpeg's error handling to call my_error_exit when an
6508 error is detected. This function will perform a longjmp.
6509 Casting return value avoids a GCC warning on W32. */
6510 cinfo
.err
= (struct jpeg_error_mgr
*)fn_jpeg_std_error (&mgr
.pub
);
6511 mgr
.pub
.error_exit
= my_error_exit
;
6513 if ((rc
= setjmp (mgr
.setjmp_buffer
)) != 0)
6517 /* Called from my_error_exit. Display a JPEG error. */
6518 char buffer
[JMSG_LENGTH_MAX
];
6519 cinfo
.err
->format_message ((j_common_ptr
) &cinfo
, buffer
);
6520 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
6521 build_string (buffer
));
6524 /* Close the input file and destroy the JPEG object. */
6526 fclose ((FILE *) fp
);
6527 fn_jpeg_destroy_decompress (&cinfo
);
6529 /* If we already have an XImage, free that. */
6530 x_destroy_x_image (ximg
);
6532 /* Free pixmap and colors. */
6533 x_clear_image (f
, img
);
6539 /* Create the JPEG decompression object. Let it read from fp.
6540 Read the JPEG image header. */
6541 fn_jpeg_CreateDecompress (&cinfo
, JPEG_LIB_VERSION
, sizeof (cinfo
));
6543 if (NILP (specified_data
))
6544 jpeg_file_src (&cinfo
, (FILE *) fp
);
6546 jpeg_memory_src (&cinfo
, SDATA (specified_data
),
6547 SBYTES (specified_data
));
6549 fn_jpeg_read_header (&cinfo
, 1);
6551 /* Customize decompression so that color quantization will be used.
6552 Start decompression. */
6553 cinfo
.quantize_colors
= 1;
6554 fn_jpeg_start_decompress (&cinfo
);
6555 width
= img
->width
= cinfo
.output_width
;
6556 height
= img
->height
= cinfo
.output_height
;
6558 if (!check_image_size (f
, width
, height
))
6560 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6561 longjmp (mgr
.setjmp_buffer
, 2);
6564 /* Create X image and pixmap. */
6565 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
6566 longjmp (mgr
.setjmp_buffer
, 2);
6568 /* Allocate colors. When color quantization is used,
6569 cinfo.actual_number_of_colors has been set with the number of
6570 colors generated, and cinfo.colormap is a two-dimensional array
6571 of color indices in the range 0..cinfo.actual_number_of_colors.
6572 No more than 255 colors will be generated. */
6576 if (cinfo
.out_color_components
> 2)
6577 ir
= 0, ig
= 1, ib
= 2;
6578 else if (cinfo
.out_color_components
> 1)
6579 ir
= 0, ig
= 1, ib
= 0;
6581 ir
= 0, ig
= 0, ib
= 0;
6583 /* Use the color table mechanism because it handles colors that
6584 cannot be allocated nicely. Such colors will be replaced with
6585 a default color, and we don't have to care about which colors
6586 can be freed safely, and which can't. */
6587 init_color_table ();
6588 colors
= (unsigned long *) alloca (cinfo
.actual_number_of_colors
6591 for (i
= 0; i
< cinfo
.actual_number_of_colors
; ++i
)
6593 /* Multiply RGB values with 255 because X expects RGB values
6594 in the range 0..0xffff. */
6595 int r
= cinfo
.colormap
[ir
][i
] << 8;
6596 int g
= cinfo
.colormap
[ig
][i
] << 8;
6597 int b
= cinfo
.colormap
[ib
][i
] << 8;
6598 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
6601 #ifdef COLOR_TABLE_SUPPORT
6602 /* Remember those colors actually allocated. */
6603 img
->colors
= colors_in_color_table (&img
->ncolors
);
6604 free_color_table ();
6605 #endif /* COLOR_TABLE_SUPPORT */
6609 row_stride
= width
* cinfo
.output_components
;
6610 buffer
= cinfo
.mem
->alloc_sarray ((j_common_ptr
) &cinfo
, JPOOL_IMAGE
,
6612 for (y
= 0; y
< height
; ++y
)
6614 fn_jpeg_read_scanlines (&cinfo
, buffer
, 1);
6615 for (x
= 0; x
< cinfo
.output_width
; ++x
)
6616 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
6620 fn_jpeg_finish_decompress (&cinfo
);
6621 fn_jpeg_destroy_decompress (&cinfo
);
6623 fclose ((FILE *) fp
);
6625 /* Maybe fill in the background field while we have ximg handy. */
6626 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6627 /* Casting avoids a GCC warning. */
6628 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6630 /* Put the image into the pixmap. */
6631 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6632 x_destroy_x_image (ximg
);
6637 #else /* HAVE_JPEG */
6641 jpeg_load (struct frame
*f
, struct image
*img
)
6643 return ns_load_image(f
, img
,
6644 image_spec_value (img
->spec
, QCfile
, NULL
),
6645 image_spec_value (img
->spec
, QCdata
, NULL
));
6647 #endif /* HAVE_NS */
6649 #endif /* !HAVE_JPEG */
6653 /***********************************************************************
6655 ***********************************************************************/
6657 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6659 static int tiff_image_p
P_ ((Lisp_Object object
));
6660 static int tiff_load
P_ ((struct frame
*f
, struct image
*img
));
6662 /* The symbol `tiff' identifying images of this type. */
6666 /* Indices of image specification fields in tiff_format, below. */
6668 enum tiff_keyword_index
6677 TIFF_HEURISTIC_MASK
,
6684 /* Vector of image_keyword structures describing the format
6685 of valid user-defined image specifications. */
6687 static const struct image_keyword tiff_format
[TIFF_LAST
] =
6689 {":type", IMAGE_SYMBOL_VALUE
, 1},
6690 {":data", IMAGE_STRING_VALUE
, 0},
6691 {":file", IMAGE_STRING_VALUE
, 0},
6692 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6693 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
6694 {":relief", IMAGE_INTEGER_VALUE
, 0},
6695 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6696 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6697 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6698 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
6699 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
6702 /* Structure describing the image type `tiff'. */
6704 static struct image_type tiff_type
=
6713 /* Return non-zero if OBJECT is a valid TIFF image specification. */
6716 tiff_image_p (object
)
6719 struct image_keyword fmt
[TIFF_LAST
];
6720 bcopy (tiff_format
, fmt
, sizeof fmt
);
6722 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
))
6725 /* Must specify either the :data or :file keyword. */
6726 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
6729 #endif /* HAVE_TIFF || HAVE_NS */
6737 /* TIFF library details. */
6738 DEF_IMGLIB_FN (TIFFSetErrorHandler
);
6739 DEF_IMGLIB_FN (TIFFSetWarningHandler
);
6740 DEF_IMGLIB_FN (TIFFOpen
);
6741 DEF_IMGLIB_FN (TIFFClientOpen
);
6742 DEF_IMGLIB_FN (TIFFGetField
);
6743 DEF_IMGLIB_FN (TIFFReadRGBAImage
);
6744 DEF_IMGLIB_FN (TIFFClose
);
6745 DEF_IMGLIB_FN (TIFFSetDirectory
);
6748 init_tiff_functions (Lisp_Object libraries
)
6752 if (!(library
= w32_delayed_load (libraries
, Qtiff
)))
6755 LOAD_IMGLIB_FN (library
, TIFFSetErrorHandler
);
6756 LOAD_IMGLIB_FN (library
, TIFFSetWarningHandler
);
6757 LOAD_IMGLIB_FN (library
, TIFFOpen
);
6758 LOAD_IMGLIB_FN (library
, TIFFClientOpen
);
6759 LOAD_IMGLIB_FN (library
, TIFFGetField
);
6760 LOAD_IMGLIB_FN (library
, TIFFReadRGBAImage
);
6761 LOAD_IMGLIB_FN (library
, TIFFClose
);
6762 LOAD_IMGLIB_FN (library
, TIFFSetDirectory
);
6768 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6769 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6770 #define fn_TIFFOpen TIFFOpen
6771 #define fn_TIFFClientOpen TIFFClientOpen
6772 #define fn_TIFFGetField TIFFGetField
6773 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6774 #define fn_TIFFClose TIFFClose
6775 #define fn_TIFFSetDirectory TIFFSetDirectory
6776 #endif /* HAVE_NTGUI */
6779 /* Reading from a memory buffer for TIFF images Based on the PNG
6780 memory source, but we have to provide a lot of extra functions.
6783 We really only need to implement read and seek, but I am not
6784 convinced that the TIFF library is smart enough not to destroy
6785 itself if we only hand it the function pointers we need to
6790 unsigned char *bytes
;
6797 tiff_read_from_memory (data
, buf
, size
)
6802 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6804 if (size
> src
->len
- src
->index
)
6806 bcopy (src
->bytes
+ src
->index
, buf
, size
);
6812 tiff_write_from_memory (data
, buf
, size
)
6821 tiff_seek_in_memory (data
, off
, whence
)
6826 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6831 case SEEK_SET
: /* Go from beginning of source. */
6835 case SEEK_END
: /* Go from end of source. */
6836 idx
= src
->len
+ off
;
6839 case SEEK_CUR
: /* Go from current position. */
6840 idx
= src
->index
+ off
;
6843 default: /* Invalid `whence'. */
6847 if (idx
> src
->len
|| idx
< 0)
6855 tiff_close_memory (data
)
6863 tiff_mmap_memory (data
, pbase
, psize
)
6868 /* It is already _IN_ memory. */
6873 tiff_unmap_memory (data
, base
, size
)
6878 /* We don't need to do this. */
6882 tiff_size_of_memory (data
)
6885 return ((tiff_memory_source
*) data
)->len
;
6890 tiff_error_handler (title
, format
, ap
)
6891 const char *title
, *format
;
6897 len
= sprintf (buf
, "TIFF error: %s ", title
);
6898 vsprintf (buf
+ len
, format
, ap
);
6899 add_to_log (buf
, Qnil
, Qnil
);
6904 tiff_warning_handler (title
, format
, ap
)
6905 const char *title
, *format
;
6911 len
= sprintf (buf
, "TIFF warning: %s ", title
);
6912 vsprintf (buf
+ len
, format
, ap
);
6913 add_to_log (buf
, Qnil
, Qnil
);
6917 /* Load TIFF image IMG for use on frame F. Value is non-zero if
6925 Lisp_Object file
, specified_file
;
6926 Lisp_Object specified_data
;
6928 int width
, height
, x
, y
, count
;
6932 struct gcpro gcpro1
;
6933 tiff_memory_source memsrc
;
6936 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6937 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6941 fn_TIFFSetErrorHandler (tiff_error_handler
);
6942 fn_TIFFSetWarningHandler (tiff_warning_handler
);
6944 if (NILP (specified_data
))
6946 /* Read from a file */
6947 file
= x_find_image_file (specified_file
);
6948 if (!STRINGP (file
))
6950 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6955 /* Try to open the image file. Casting return value avoids a
6956 GCC warning on W32. */
6957 tiff
= (TIFF
*)fn_TIFFOpen (SDATA (file
), "r");
6960 image_error ("Cannot open `%s'", file
, Qnil
);
6967 /* Memory source! */
6968 memsrc
.bytes
= SDATA (specified_data
);
6969 memsrc
.len
= SBYTES (specified_data
);
6972 /* Casting return value avoids a GCC warning on W32. */
6973 tiff
= (TIFF
*)fn_TIFFClientOpen ("memory_source", "r", &memsrc
,
6974 (TIFFReadWriteProc
) tiff_read_from_memory
,
6975 (TIFFReadWriteProc
) tiff_write_from_memory
,
6976 tiff_seek_in_memory
,
6978 tiff_size_of_memory
,
6984 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
6990 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
6991 if (INTEGERP (image
))
6993 int ino
= XFASTINT (image
);
6994 if (!fn_TIFFSetDirectory (tiff
, ino
))
6996 image_error ("Invalid image number `%s' in image `%s'",
6998 fn_TIFFClose (tiff
);
7004 /* Get width and height of the image, and allocate a raster buffer
7005 of width x height 32-bit values. */
7006 fn_TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
7007 fn_TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
7009 if (!check_image_size (f
, width
, height
))
7011 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7012 fn_TIFFClose (tiff
);
7017 buf
= (uint32
*) xmalloc (width
* height
* sizeof *buf
);
7019 rc
= fn_TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
7021 /* Count the number of images in the file. */
7022 for (count
= 1, rc2
= 1; rc2
; count
++)
7023 rc2
= fn_TIFFSetDirectory (tiff
, count
);
7026 img
->data
.lisp_val
= Fcons (Qcount
,
7027 Fcons (make_number (count
),
7028 img
->data
.lisp_val
));
7030 fn_TIFFClose (tiff
);
7033 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
7039 /* Create the X image and pixmap. */
7040 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
7047 /* Initialize the color table. */
7048 init_color_table ();
7050 /* Process the pixel raster. Origin is in the lower-left corner. */
7051 for (y
= 0; y
< height
; ++y
)
7053 uint32
*row
= buf
+ y
* width
;
7055 for (x
= 0; x
< width
; ++x
)
7057 uint32 abgr
= row
[x
];
7058 int r
= TIFFGetR (abgr
) << 8;
7059 int g
= TIFFGetG (abgr
) << 8;
7060 int b
= TIFFGetB (abgr
) << 8;
7061 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
7065 #ifdef COLOR_TABLE_SUPPORT
7066 /* Remember the colors allocated for the image. Free the color table. */
7067 img
->colors
= colors_in_color_table (&img
->ncolors
);
7068 free_color_table ();
7069 #endif /* COLOR_TABLE_SUPPORT */
7072 img
->height
= height
;
7074 /* Maybe fill in the background field while we have ximg handy. */
7075 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7076 /* Casting avoids a GCC warning on W32. */
7077 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7079 /* Put the image into the pixmap, then free the X image and its buffer. */
7080 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7081 x_destroy_x_image (ximg
);
7088 #else /* HAVE_TIFF */
7092 tiff_load (struct frame
*f
, struct image
*img
)
7094 return ns_load_image(f
, img
,
7095 image_spec_value (img
->spec
, QCfile
, NULL
),
7096 image_spec_value (img
->spec
, QCdata
, NULL
));
7098 #endif /* HAVE_NS */
7100 #endif /* !HAVE_TIFF */
7104 /***********************************************************************
7106 ***********************************************************************/
7108 #if defined (HAVE_GIF) || defined (HAVE_NS)
7110 static int gif_image_p
P_ ((Lisp_Object object
));
7111 static int gif_load
P_ ((struct frame
*f
, struct image
*img
));
7112 static void gif_clear_image
P_ ((struct frame
*f
, struct image
*img
));
7114 /* The symbol `gif' identifying images of this type. */
7118 /* Indices of image specification fields in gif_format, below. */
7120 enum gif_keyword_index
7136 /* Vector of image_keyword structures describing the format
7137 of valid user-defined image specifications. */
7139 static const struct image_keyword gif_format
[GIF_LAST
] =
7141 {":type", IMAGE_SYMBOL_VALUE
, 1},
7142 {":data", IMAGE_STRING_VALUE
, 0},
7143 {":file", IMAGE_STRING_VALUE
, 0},
7144 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7145 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
7146 {":relief", IMAGE_INTEGER_VALUE
, 0},
7147 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7148 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7149 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7150 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
7151 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
7154 /* Structure describing the image type `gif'. */
7156 static struct image_type gif_type
=
7165 /* Free X resources of GIF image IMG which is used on frame F. */
7168 gif_clear_image (f
, img
)
7172 /* IMG->data.ptr_val may contain metadata with extension data. */
7173 img
->data
.lisp_val
= Qnil
;
7174 x_clear_image (f
, img
);
7177 /* Return non-zero if OBJECT is a valid GIF image specification. */
7180 gif_image_p (object
)
7183 struct image_keyword fmt
[GIF_LAST
];
7184 bcopy (gif_format
, fmt
, sizeof fmt
);
7186 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
))
7189 /* Must specify either the :data or :file keyword. */
7190 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
7193 #endif /* HAVE_GIF */
7197 #if defined (HAVE_NTGUI)
7198 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7199 Undefine before redefining to avoid a preprocessor warning. */
7203 /* avoid conflict with QuickdrawText.h */
7204 #define DrawText gif_DrawText
7205 #include <gif_lib.h>
7208 #else /* HAVE_NTGUI */
7210 #include <gif_lib.h>
7212 #endif /* HAVE_NTGUI */
7217 /* GIF library details. */
7218 DEF_IMGLIB_FN (DGifCloseFile
);
7219 DEF_IMGLIB_FN (DGifSlurp
);
7220 DEF_IMGLIB_FN (DGifOpen
);
7221 DEF_IMGLIB_FN (DGifOpenFileName
);
7224 init_gif_functions (Lisp_Object libraries
)
7228 if (!(library
= w32_delayed_load (libraries
, Qgif
)))
7231 LOAD_IMGLIB_FN (library
, DGifCloseFile
);
7232 LOAD_IMGLIB_FN (library
, DGifSlurp
);
7233 LOAD_IMGLIB_FN (library
, DGifOpen
);
7234 LOAD_IMGLIB_FN (library
, DGifOpenFileName
);
7240 #define fn_DGifCloseFile DGifCloseFile
7241 #define fn_DGifSlurp DGifSlurp
7242 #define fn_DGifOpen DGifOpen
7243 #define fn_DGifOpenFileName DGifOpenFileName
7245 #endif /* HAVE_NTGUI */
7247 /* Reading a GIF image from memory
7248 Based on the PNG memory stuff to a certain extent. */
7252 unsigned char *bytes
;
7258 /* Make the current memory source available to gif_read_from_memory.
7259 It's done this way because not all versions of libungif support
7260 a UserData field in the GifFileType structure. */
7261 static gif_memory_source
*current_gif_memory_src
;
7264 gif_read_from_memory (file
, buf
, len
)
7269 gif_memory_source
*src
= current_gif_memory_src
;
7271 if (len
> src
->len
- src
->index
)
7274 bcopy (src
->bytes
+ src
->index
, buf
, len
);
7280 /* Load GIF image IMG for use on frame F. Value is non-zero if
7283 static const int interlace_start
[] = {0, 4, 2, 1};
7284 static const int interlace_increment
[] = {8, 8, 4, 2};
7291 Lisp_Object file
, specified_file
;
7292 Lisp_Object specified_data
;
7293 int rc
, width
, height
, x
, y
, i
;
7295 ColorMapObject
*gif_color_map
;
7296 unsigned long pixel_colors
[256];
7298 struct gcpro gcpro1
;
7300 int ino
, image_height
, image_width
;
7301 gif_memory_source memsrc
;
7302 unsigned char *raster
;
7304 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
7305 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7309 if (NILP (specified_data
))
7311 file
= x_find_image_file (specified_file
);
7312 if (!STRINGP (file
))
7314 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
7319 /* Open the GIF file. Casting return value avoids a GCC warning
7321 gif
= (GifFileType
*)fn_DGifOpenFileName (SDATA (file
));
7324 image_error ("Cannot open `%s'", file
, Qnil
);
7331 /* Read from memory! */
7332 current_gif_memory_src
= &memsrc
;
7333 memsrc
.bytes
= SDATA (specified_data
);
7334 memsrc
.len
= SBYTES (specified_data
);
7337 /* Casting return value avoids a GCC warning on W32. */
7338 gif
= (GifFileType
*) fn_DGifOpen (&memsrc
, gif_read_from_memory
);
7341 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
7347 /* Before reading entire contents, check the declared image size. */
7348 if (!check_image_size (f
, gif
->SWidth
, gif
->SHeight
))
7350 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7351 fn_DGifCloseFile (gif
);
7356 /* Read entire contents. */
7357 rc
= fn_DGifSlurp (gif
);
7358 if (rc
== GIF_ERROR
)
7360 image_error ("Error reading `%s'", img
->spec
, Qnil
);
7361 fn_DGifCloseFile (gif
);
7366 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
7367 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
7368 if (ino
>= gif
->ImageCount
)
7370 image_error ("Invalid image number `%s' in image `%s'",
7372 fn_DGifCloseFile (gif
);
7377 img
->corners
[TOP_CORNER
] = gif
->SavedImages
[ino
].ImageDesc
.Top
;
7378 img
->corners
[LEFT_CORNER
] = gif
->SavedImages
[ino
].ImageDesc
.Left
;
7379 image_height
= gif
->SavedImages
[ino
].ImageDesc
.Height
;
7380 img
->corners
[BOT_CORNER
] = img
->corners
[TOP_CORNER
] + image_height
;
7381 image_width
= gif
->SavedImages
[ino
].ImageDesc
.Width
;
7382 img
->corners
[RIGHT_CORNER
] = img
->corners
[LEFT_CORNER
] + image_width
;
7384 width
= img
->width
= max (gif
->SWidth
,
7385 max (gif
->Image
.Left
+ gif
->Image
.Width
,
7386 img
->corners
[RIGHT_CORNER
]));
7387 height
= img
->height
= max (gif
->SHeight
,
7388 max (gif
->Image
.Top
+ gif
->Image
.Height
,
7389 img
->corners
[BOT_CORNER
]));
7391 if (!check_image_size (f
, width
, height
))
7393 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7394 fn_DGifCloseFile (gif
);
7399 /* Create the X image and pixmap. */
7400 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
7402 fn_DGifCloseFile (gif
);
7407 /* Allocate colors. */
7408 gif_color_map
= gif
->SavedImages
[ino
].ImageDesc
.ColorMap
;
7410 gif_color_map
= gif
->SColorMap
;
7411 init_color_table ();
7412 bzero (pixel_colors
, sizeof pixel_colors
);
7415 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
7417 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
7418 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
7419 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
7420 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
7423 #ifdef COLOR_TABLE_SUPPORT
7424 img
->colors
= colors_in_color_table (&img
->ncolors
);
7425 free_color_table ();
7426 #endif /* COLOR_TABLE_SUPPORT */
7428 /* Clear the part of the screen image that are not covered by
7429 the image from the GIF file. Full animated GIF support
7430 requires more than can be done here (see the gif89 spec,
7431 disposal methods). Let's simply assume that the part
7432 not covered by a sub-image is in the frame's background color. */
7433 for (y
= 0; y
< img
->corners
[TOP_CORNER
]; ++y
)
7434 for (x
= 0; x
< width
; ++x
)
7435 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7437 for (y
= img
->corners
[BOT_CORNER
]; y
< height
; ++y
)
7438 for (x
= 0; x
< width
; ++x
)
7439 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7441 for (y
= img
->corners
[TOP_CORNER
]; y
< img
->corners
[BOT_CORNER
]; ++y
)
7443 for (x
= 0; x
< img
->corners
[LEFT_CORNER
]; ++x
)
7444 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7445 for (x
= img
->corners
[RIGHT_CORNER
]; x
< width
; ++x
)
7446 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7449 /* Read the GIF image into the X image. We use a local variable
7450 `raster' here because RasterBits below is a char *, and invites
7451 problems with bytes >= 0x80. */
7452 raster
= (unsigned char *) gif
->SavedImages
[ino
].RasterBits
;
7454 if (gif
->SavedImages
[ino
].ImageDesc
.Interlace
)
7457 int row
= interlace_start
[0];
7461 for (y
= 0; y
< image_height
; y
++)
7463 if (row
>= image_height
)
7465 row
= interlace_start
[++pass
];
7466 while (row
>= image_height
)
7467 row
= interlace_start
[++pass
];
7470 for (x
= 0; x
< image_width
; x
++)
7472 int i
= raster
[(y
* image_width
) + x
];
7473 XPutPixel (ximg
, x
+ img
->corners
[LEFT_CORNER
],
7474 row
+ img
->corners
[TOP_CORNER
], pixel_colors
[i
]);
7477 row
+= interlace_increment
[pass
];
7482 for (y
= 0; y
< image_height
; ++y
)
7483 for (x
= 0; x
< image_width
; ++x
)
7485 int i
= raster
[y
* image_width
+ x
];
7486 XPutPixel (ximg
, x
+ img
->corners
[LEFT_CORNER
],
7487 y
+ img
->corners
[TOP_CORNER
], pixel_colors
[i
]);
7491 /* Save GIF image extension data for `image-metadata'.
7492 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7493 img
->data
.lisp_val
= Qnil
;
7494 if (gif
->SavedImages
[ino
].ExtensionBlockCount
> 0)
7496 ExtensionBlock
*ext
= gif
->SavedImages
[ino
].ExtensionBlocks
;
7497 for (i
= 0; i
< gif
->SavedImages
[ino
].ExtensionBlockCount
; i
++, ext
++)
7498 /* Append (... FUNCTION "BYTES") */
7499 img
->data
.lisp_val
= Fcons (make_unibyte_string (ext
->Bytes
, ext
->ByteCount
),
7500 Fcons (make_number (ext
->Function
),
7501 img
->data
.lisp_val
));
7502 img
->data
.lisp_val
= Fcons (Qextension_data
,
7503 Fcons (Fnreverse (img
->data
.lisp_val
),
7506 if (gif
->ImageCount
> 1)
7507 img
->data
.lisp_val
= Fcons (Qcount
,
7508 Fcons (make_number (gif
->ImageCount
),
7509 img
->data
.lisp_val
));
7511 fn_DGifCloseFile (gif
);
7513 /* Maybe fill in the background field while we have ximg handy. */
7514 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7515 /* Casting avoids a GCC warning. */
7516 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7518 /* Put the image into the pixmap, then free the X image and its buffer. */
7519 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7520 x_destroy_x_image (ximg
);
7526 #else /* !HAVE_GIF */
7530 gif_load (struct frame
*f
, struct image
*img
)
7532 return ns_load_image(f
, img
,
7533 image_spec_value (img
->spec
, QCfile
, NULL
),
7534 image_spec_value (img
->spec
, QCdata
, NULL
));
7536 #endif /* HAVE_NS */
7538 #endif /* HAVE_GIF */
7542 /***********************************************************************
7544 ***********************************************************************/
7546 #if defined (HAVE_RSVG)
7548 /* Function prototypes. */
7550 static int svg_image_p
P_ ((Lisp_Object object
));
7551 static int svg_load
P_ ((struct frame
*f
, struct image
*img
));
7553 static int svg_load_image
P_ ((struct frame
*, struct image
*,
7554 unsigned char *, unsigned int));
7556 /* The symbol `svg' identifying images of this type. */
7560 /* Indices of image specification fields in svg_format, below. */
7562 enum svg_keyword_index
7577 /* Vector of image_keyword structures describing the format
7578 of valid user-defined image specifications. */
7580 static const struct image_keyword svg_format
[SVG_LAST
] =
7582 {":type", IMAGE_SYMBOL_VALUE
, 1},
7583 {":data", IMAGE_STRING_VALUE
, 0},
7584 {":file", IMAGE_STRING_VALUE
, 0},
7585 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7586 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
7587 {":relief", IMAGE_INTEGER_VALUE
, 0},
7588 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7589 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7590 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7591 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
7594 /* Structure describing the image type `svg'. Its the same type of
7595 structure defined for all image formats, handled by emacs image
7596 functions. See struct image_type in dispextern.h. */
7598 static struct image_type svg_type
=
7600 /* An identifier showing that this is an image structure for the SVG format. */
7602 /* Handle to a function that can be used to identify a SVG file. */
7604 /* Handle to function used to load a SVG file. */
7606 /* Handle to function to free sresources for SVG. */
7608 /* An internal field to link to the next image type in a list of
7609 image types, will be filled in when registering the format. */
7614 /* Return non-zero if OBJECT is a valid SVG image specification. Do
7615 this by calling parse_image_spec and supplying the keywords that
7616 identify the SVG format. */
7619 svg_image_p (object
)
7622 struct image_keyword fmt
[SVG_LAST
];
7623 bcopy (svg_format
, fmt
, sizeof fmt
);
7625 if (!parse_image_spec (object
, fmt
, SVG_LAST
, Qsvg
))
7628 /* Must specify either the :data or :file keyword. */
7629 return fmt
[SVG_FILE
].count
+ fmt
[SVG_DATA
].count
== 1;
7632 #include <librsvg/rsvg.h>
7636 /* SVG library functions. */
7637 DEF_IMGLIB_FN (rsvg_handle_new
);
7638 DEF_IMGLIB_FN (rsvg_handle_get_dimensions
);
7639 DEF_IMGLIB_FN (rsvg_handle_write
);
7640 DEF_IMGLIB_FN (rsvg_handle_close
);
7641 DEF_IMGLIB_FN (rsvg_handle_get_pixbuf
);
7642 DEF_IMGLIB_FN (rsvg_handle_free
);
7644 DEF_IMGLIB_FN (gdk_pixbuf_get_width
);
7645 DEF_IMGLIB_FN (gdk_pixbuf_get_height
);
7646 DEF_IMGLIB_FN (gdk_pixbuf_get_pixels
);
7647 DEF_IMGLIB_FN (gdk_pixbuf_get_rowstride
);
7648 DEF_IMGLIB_FN (gdk_pixbuf_get_colorspace
);
7649 DEF_IMGLIB_FN (gdk_pixbuf_get_n_channels
);
7650 DEF_IMGLIB_FN (gdk_pixbuf_get_has_alpha
);
7651 DEF_IMGLIB_FN (gdk_pixbuf_get_bits_per_sample
);
7653 DEF_IMGLIB_FN (g_type_init
);
7654 DEF_IMGLIB_FN (g_object_unref
);
7655 DEF_IMGLIB_FN (g_error_free
);
7657 Lisp_Object Qgdk_pixbuf
, Qglib
, Qgobject
;
7660 init_svg_functions (Lisp_Object libraries
)
7662 HMODULE library
, gdklib
, glib
, gobject
;
7664 if (!(glib
= w32_delayed_load (libraries
, Qglib
))
7665 || !(gobject
= w32_delayed_load (libraries
, Qgobject
))
7666 || !(gdklib
= w32_delayed_load (libraries
, Qgdk_pixbuf
))
7667 || !(library
= w32_delayed_load (libraries
, Qsvg
)))
7670 LOAD_IMGLIB_FN (library
, rsvg_handle_new
);
7671 LOAD_IMGLIB_FN (library
, rsvg_handle_get_dimensions
);
7672 LOAD_IMGLIB_FN (library
, rsvg_handle_write
);
7673 LOAD_IMGLIB_FN (library
, rsvg_handle_close
);
7674 LOAD_IMGLIB_FN (library
, rsvg_handle_get_pixbuf
);
7675 LOAD_IMGLIB_FN (library
, rsvg_handle_free
);
7677 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_width
);
7678 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_height
);
7679 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_pixels
);
7680 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_rowstride
);
7681 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_colorspace
);
7682 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_n_channels
);
7683 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_has_alpha
);
7684 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_bits_per_sample
);
7686 LOAD_IMGLIB_FN (gobject
, g_type_init
);
7687 LOAD_IMGLIB_FN (gobject
, g_object_unref
);
7688 LOAD_IMGLIB_FN (glib
, g_error_free
);
7694 /* The following aliases for library functions allow dynamic loading
7695 to be used on some platforms. */
7696 #define fn_rsvg_handle_new rsvg_handle_new
7697 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
7698 #define fn_rsvg_handle_write rsvg_handle_write
7699 #define fn_rsvg_handle_close rsvg_handle_close
7700 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
7701 #define fn_rsvg_handle_free rsvg_handle_free
7703 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
7704 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
7705 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
7706 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
7707 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
7708 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
7709 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
7710 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
7712 #define fn_g_type_init g_type_init
7713 #define fn_g_object_unref g_object_unref
7714 #define fn_g_error_free g_error_free
7715 #endif /* !HAVE_NTGUI */
7717 /* Load SVG image IMG for use on frame F. Value is non-zero if
7718 successful. this function will go into the svg_type structure, and
7719 the prototype thus needs to be compatible with that structure. */
7727 Lisp_Object file_name
;
7729 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7730 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
7731 if (STRINGP (file_name
))
7734 unsigned char *contents
;
7736 struct gcpro gcpro1
;
7738 file
= x_find_image_file (file_name
);
7740 if (!STRINGP (file
))
7742 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
7747 /* Read the entire file into memory. */
7748 contents
= slurp_file (SDATA (file
), &size
);
7749 if (contents
== NULL
)
7751 image_error ("Error loading SVG image `%s'", img
->spec
, Qnil
);
7755 /* If the file was slurped into memory properly, parse it. */
7756 success_p
= svg_load_image (f
, img
, contents
, size
);
7760 /* Else its not a file, its a lisp object. Load the image from a
7761 lisp object rather than a file. */
7766 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7767 success_p
= svg_load_image (f
, img
, SDATA (data
), SBYTES (data
));
7773 /* svg_load_image is a helper function for svg_load, which does the
7774 actual loading given contents and size, apart from frame and image
7775 structures, passed from svg_load.
7777 Uses librsvg to do most of the image processing.
7779 Returns non-zero when successful. */
7781 svg_load_image (f
, img
, contents
, size
)
7782 /* Pointer to emacs frame structure. */
7784 /* Pointer to emacs image structure. */
7786 /* String containing the SVG XML data to be parsed. */
7787 unsigned char *contents
;
7788 /* Size of data in bytes. */
7791 RsvgHandle
*rsvg_handle
;
7792 RsvgDimensionData dimension_data
;
7793 GError
*error
= NULL
;
7797 const guint8
*pixels
;
7800 Lisp_Object specified_bg
;
7805 /* g_type_init is a glib function that must be called prior to using
7806 gnome type library functions. */
7808 /* Make a handle to a new rsvg object. */
7809 rsvg_handle
= (RsvgHandle
*) fn_rsvg_handle_new ();
7811 /* Parse the contents argument and fill in the rsvg_handle. */
7812 fn_rsvg_handle_write (rsvg_handle
, contents
, size
, &error
);
7813 if (error
) goto rsvg_error
;
7815 /* The parsing is complete, rsvg_handle is ready to used, close it
7816 for further writes. */
7817 fn_rsvg_handle_close (rsvg_handle
, &error
);
7818 if (error
) goto rsvg_error
;
7820 fn_rsvg_handle_get_dimensions (rsvg_handle
, &dimension_data
);
7821 if (! check_image_size (f
, dimension_data
.width
, dimension_data
.height
))
7823 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7827 /* We can now get a valid pixel buffer from the svg file, if all
7829 pixbuf
= (GdkPixbuf
*) fn_rsvg_handle_get_pixbuf (rsvg_handle
);
7830 if (!pixbuf
) goto rsvg_error
;
7831 fn_g_object_unref (rsvg_handle
);
7833 /* Extract some meta data from the svg handle. */
7834 width
= fn_gdk_pixbuf_get_width (pixbuf
);
7835 height
= fn_gdk_pixbuf_get_height (pixbuf
);
7836 pixels
= (const guint8
*) fn_gdk_pixbuf_get_pixels (pixbuf
);
7837 rowstride
= fn_gdk_pixbuf_get_rowstride (pixbuf
);
7839 /* Validate the svg meta data. */
7840 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf
) == GDK_COLORSPACE_RGB
);
7841 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf
) == 4);
7842 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf
));
7843 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf
) == 8);
7845 /* Try to create a x pixmap to hold the svg pixmap. */
7846 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
7848 fn_g_object_unref (pixbuf
);
7852 init_color_table ();
7854 /* Handle alpha channel by combining the image with a background
7856 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
7857 if (!STRINGP (specified_bg
)
7858 || !x_defined_color (f
, SDATA (specified_bg
), &background
, 0))
7861 background
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
7862 x_query_color (f
, &background
);
7864 ns_query_color(FRAME_BACKGROUND_COLOR (f
), &background
, 1);
7868 /* SVG pixmaps specify transparency in the last byte, so right
7869 shift 8 bits to get rid of it, since emacs doesn't support
7871 background
.red
>>= 8;
7872 background
.green
>>= 8;
7873 background
.blue
>>= 8;
7875 /* This loop handles opacity values, since Emacs assumes
7876 non-transparent images. Each pixel must be "flattened" by
7877 calculating the resulting color, given the transparency of the
7878 pixel, and the image background color. */
7879 for (y
= 0; y
< height
; ++y
)
7881 for (x
= 0; x
< width
; ++x
)
7891 opacity
= *pixels
++;
7893 red
= ((red
* opacity
)
7894 + (background
.red
* ((1 << 8) - opacity
)));
7895 green
= ((green
* opacity
)
7896 + (background
.green
* ((1 << 8) - opacity
)));
7897 blue
= ((blue
* opacity
)
7898 + (background
.blue
* ((1 << 8) - opacity
)));
7900 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, red
, green
, blue
));
7903 pixels
+= rowstride
- 4 * width
;
7906 #ifdef COLOR_TABLE_SUPPORT
7907 /* Remember colors allocated for this image. */
7908 img
->colors
= colors_in_color_table (&img
->ncolors
);
7909 free_color_table ();
7910 #endif /* COLOR_TABLE_SUPPORT */
7912 fn_g_object_unref (pixbuf
);
7915 img
->height
= height
;
7917 /* Maybe fill in the background field while we have ximg handy.
7918 Casting avoids a GCC warning. */
7919 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7921 /* Put the image into the pixmap, then free the X image and its
7923 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7924 x_destroy_x_image (ximg
);
7929 fn_g_object_unref (rsvg_handle
);
7930 /* FIXME: Use error->message so the user knows what is the actual
7931 problem with the image. */
7932 image_error ("Error parsing SVG image `%s'", img
->spec
, Qnil
);
7933 fn_g_error_free (error
);
7937 #endif /* defined (HAVE_RSVG) */
7942 /***********************************************************************
7944 ***********************************************************************/
7946 #ifdef HAVE_X_WINDOWS
7947 #define HAVE_GHOSTSCRIPT 1
7948 #endif /* HAVE_X_WINDOWS */
7950 /* The symbol `postscript' identifying images of this type. */
7952 Lisp_Object Qpostscript
;
7954 #ifdef HAVE_GHOSTSCRIPT
7956 static int gs_image_p
P_ ((Lisp_Object object
));
7957 static int gs_load
P_ ((struct frame
*f
, struct image
*img
));
7958 static void gs_clear_image
P_ ((struct frame
*f
, struct image
*img
));
7960 /* Keyword symbols. */
7962 Lisp_Object QCloader
, QCbounding_box
, QCpt_width
, QCpt_height
;
7964 /* Indices of image specification fields in gs_format, below. */
7966 enum gs_keyword_index
7984 /* Vector of image_keyword structures describing the format
7985 of valid user-defined image specifications. */
7987 static const struct image_keyword gs_format
[GS_LAST
] =
7989 {":type", IMAGE_SYMBOL_VALUE
, 1},
7990 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
7991 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
7992 {":file", IMAGE_STRING_VALUE
, 1},
7993 {":loader", IMAGE_FUNCTION_VALUE
, 0},
7994 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
7995 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7996 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR
, 0},
7997 {":relief", IMAGE_INTEGER_VALUE
, 0},
7998 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7999 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8000 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8001 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
8004 /* Structure describing the image type `ghostscript'. */
8006 static struct image_type gs_type
=
8016 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8019 gs_clear_image (f
, img
)
8023 /* IMG->data.ptr_val may contain a recorded colormap. */
8024 xfree (img
->data
.ptr_val
);
8025 x_clear_image (f
, img
);
8029 /* Return non-zero if OBJECT is a valid Ghostscript image
8036 struct image_keyword fmt
[GS_LAST
];
8040 bcopy (gs_format
, fmt
, sizeof fmt
);
8042 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
))
8045 /* Bounding box must be a list or vector containing 4 integers. */
8046 tem
= fmt
[GS_BOUNDING_BOX
].value
;
8049 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
8050 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
8055 else if (VECTORP (tem
))
8057 if (XVECTOR (tem
)->size
!= 4)
8059 for (i
= 0; i
< 4; ++i
)
8060 if (!INTEGERP (XVECTOR (tem
)->contents
[i
]))
8070 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
8079 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
8080 struct gcpro gcpro1
, gcpro2
;
8082 double in_width
, in_height
;
8083 Lisp_Object pixel_colors
= Qnil
;
8085 /* Compute pixel size of pixmap needed from the given size in the
8086 image specification. Sizes in the specification are in pt. 1 pt
8087 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8089 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
8090 in_width
= XFASTINT (pt_width
) / 72.0;
8091 img
->width
= in_width
* FRAME_X_DISPLAY_INFO (f
)->resx
;
8092 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
8093 in_height
= XFASTINT (pt_height
) / 72.0;
8094 img
->height
= in_height
* FRAME_X_DISPLAY_INFO (f
)->resy
;
8096 if (!check_image_size (f
, img
->width
, img
->height
))
8098 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8102 /* Create the pixmap. */
8103 xassert (img
->pixmap
== NO_PIXMAP
);
8105 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8107 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
8108 img
->width
, img
->height
,
8109 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
8114 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
8118 /* Call the loader to fill the pixmap. It returns a process object
8119 if successful. We do not record_unwind_protect here because
8120 other places in redisplay like calling window scroll functions
8121 don't either. Let the Lisp loader use `unwind-protect' instead. */
8122 GCPRO2 (window_and_pixmap_id
, pixel_colors
);
8124 sprintf (buffer
, "%lu %lu",
8125 (unsigned long) FRAME_X_WINDOW (f
),
8126 (unsigned long) img
->pixmap
);
8127 window_and_pixmap_id
= build_string (buffer
);
8129 sprintf (buffer
, "%lu %lu",
8130 FRAME_FOREGROUND_PIXEL (f
),
8131 FRAME_BACKGROUND_PIXEL (f
));
8132 pixel_colors
= build_string (buffer
);
8134 XSETFRAME (frame
, f
);
8135 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
8137 loader
= intern ("gs-load-image");
8139 img
->data
.lisp_val
= call6 (loader
, frame
, img
->spec
,
8140 make_number (img
->width
),
8141 make_number (img
->height
),
8142 window_and_pixmap_id
,
8145 return PROCESSP (img
->data
.lisp_val
);
8149 /* Kill the Ghostscript process that was started to fill PIXMAP on
8150 frame F. Called from XTread_socket when receiving an event
8151 telling Emacs that Ghostscript has finished drawing. */
8154 x_kill_gs_process (pixmap
, f
)
8158 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
8162 /* Find the image containing PIXMAP. */
8163 for (i
= 0; i
< c
->used
; ++i
)
8164 if (c
->images
[i
]->pixmap
== pixmap
)
8167 /* Should someone in between have cleared the image cache, for
8168 instance, give up. */
8172 /* Kill the GS process. We should have found PIXMAP in the image
8173 cache and its image should contain a process object. */
8175 xassert (PROCESSP (img
->data
.lisp_val
));
8176 Fkill_process (img
->data
.lisp_val
, Qnil
);
8177 img
->data
.lisp_val
= Qnil
;
8179 #if defined (HAVE_X_WINDOWS)
8181 /* On displays with a mutable colormap, figure out the colors
8182 allocated for the image by looking at the pixels of an XImage for
8184 class = FRAME_X_VISUAL (f
)->class;
8185 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
8191 /* Try to get an XImage for img->pixmep. */
8192 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
8193 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
8198 /* Initialize the color table. */
8199 init_color_table ();
8201 /* For each pixel of the image, look its color up in the
8202 color table. After having done so, the color table will
8203 contain an entry for each color used by the image. */
8204 for (y
= 0; y
< img
->height
; ++y
)
8205 for (x
= 0; x
< img
->width
; ++x
)
8207 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
8208 lookup_pixel_color (f
, pixel
);
8211 /* Record colors in the image. Free color table and XImage. */
8212 #ifdef COLOR_TABLE_SUPPORT
8213 img
->colors
= colors_in_color_table (&img
->ncolors
);
8214 free_color_table ();
8216 XDestroyImage (ximg
);
8218 #if 0 /* This doesn't seem to be the case. If we free the colors
8219 here, we get a BadAccess later in x_clear_image when
8220 freeing the colors. */
8221 /* We have allocated colors once, but Ghostscript has also
8222 allocated colors on behalf of us. So, to get the
8223 reference counts right, free them once. */
8225 x_free_colors (f
, img
->colors
, img
->ncolors
);
8229 image_error ("Cannot get X image of `%s'; colors will not be freed",
8234 #endif /* HAVE_X_WINDOWS */
8236 /* Now that we have the pixmap, compute mask and transform the
8237 image if requested. */
8239 postprocess_image (f
, img
);
8243 #endif /* HAVE_GHOSTSCRIPT */
8246 /***********************************************************************
8248 ***********************************************************************/
8252 DEFUN ("imagep", Fimagep
, Simagep
, 1, 1, 0,
8253 doc
: /* Value is non-nil if SPEC is a valid image specification. */)
8257 return valid_image_p (spec
) ? Qt
: Qnil
;
8261 DEFUN ("lookup-image", Flookup_image
, Slookup_image
, 1, 1, 0, "")
8267 if (valid_image_p (spec
))
8268 id
= lookup_image (SELECTED_FRAME (), spec
);
8271 return make_number (id
);
8274 #endif /* GLYPH_DEBUG != 0 */
8277 /***********************************************************************
8279 ***********************************************************************/
8282 /* Image types that rely on external libraries are loaded dynamically
8283 if the library is available. */
8284 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8285 define_image_type (image_type, init_lib_fn (libraries))
8287 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8288 define_image_type (image_type, 1)
8289 #endif /* HAVE_NTGUI */
8291 DEFUN ("init-image-library", Finit_image_library
, Sinit_image_library
, 2, 2, 0,
8292 doc
: /* Initialize image library implementing image type TYPE.
8293 Return non-nil if TYPE is a supported image type.
8295 Image types pbm and xbm are prebuilt; other types are loaded here.
8296 Libraries to load are specified in alist LIBRARIES (usually, the value
8297 of `image-library-alist', which see). */)
8299 Lisp_Object type
, libraries
;
8303 /* Don't try to reload the library. */
8304 tested
= Fassq (type
, Vimage_type_cache
);
8306 return XCDR (tested
);
8308 #if defined (HAVE_XPM) || defined (HAVE_NS)
8309 if (EQ (type
, Qxpm
))
8310 return CHECK_LIB_AVAILABLE (&xpm_type
, init_xpm_functions
, libraries
);
8313 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8314 if (EQ (type
, Qjpeg
))
8315 return CHECK_LIB_AVAILABLE (&jpeg_type
, init_jpeg_functions
, libraries
);
8318 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8319 if (EQ (type
, Qtiff
))
8320 return CHECK_LIB_AVAILABLE (&tiff_type
, init_tiff_functions
, libraries
);
8323 #if defined (HAVE_GIF) || defined (HAVE_NS)
8324 if (EQ (type
, Qgif
))
8325 return CHECK_LIB_AVAILABLE (&gif_type
, init_gif_functions
, libraries
);
8328 #if defined (HAVE_PNG) || defined (HAVE_NS)
8329 if (EQ (type
, Qpng
))
8330 return CHECK_LIB_AVAILABLE (&png_type
, init_png_functions
, libraries
);
8333 #if defined (HAVE_RSVG)
8334 if (EQ (type
, Qsvg
))
8335 return CHECK_LIB_AVAILABLE (&svg_type
, init_svg_functions
, libraries
);
8338 #ifdef HAVE_GHOSTSCRIPT
8339 if (EQ (type
, Qpostscript
))
8340 return CHECK_LIB_AVAILABLE (&gs_type
, init_gs_functions
, libraries
);
8343 /* If the type is not recognized, avoid testing it ever again. */
8344 CACHE_IMAGE_TYPE (type
, Qnil
);
8351 extern Lisp_Object Qrisky_local_variable
; /* Syms_of_xdisp has already run. */
8353 /* Initialize this only once, since that's what we do with Vimage_types
8354 and they are supposed to be in sync. Initializing here gives correct
8355 operation on GNU/Linux of calling dump-emacs after loading some images. */
8358 /* Must be defined now becase we're going to update it below, while
8359 defining the supported image types. */
8360 DEFVAR_LISP ("image-types", &Vimage_types
,
8361 doc
: /* List of potentially supported image types.
8362 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8363 To check whether it is really supported, use `image-type-available-p'. */);
8364 Vimage_types
= Qnil
;
8366 DEFVAR_LISP ("image-library-alist", &Vimage_library_alist
,
8367 doc
: /* Alist of image types vs external libraries needed to display them.
8369 Each element is a list (IMAGE-TYPE LIBRARY...), where the car is a symbol
8370 representing a supported image type, and the rest are strings giving
8371 alternate filenames for the corresponding external libraries.
8373 Emacs tries to load the libraries in the order they appear on the
8374 list; if none is loaded, the running session of Emacs won't
8375 support the image type. Types 'pbm and 'xbm don't need to be
8376 listed; they are always supported. */);
8377 Vimage_library_alist
= Qnil
;
8378 Fput (intern_c_string ("image-library-alist"), Qrisky_local_variable
, Qt
);
8380 DEFVAR_LISP ("max-image-size", &Vmax_image_size
,
8381 doc
: /* Maximum size of images.
8382 Emacs will not load an image into memory if its pixel width or
8383 pixel height exceeds this limit.
8385 If the value is an integer, it directly specifies the maximum
8386 image height and width, measured in pixels. If it is a floating
8387 point number, it specifies the maximum image height and width
8388 as a ratio to the frame height and width. If the value is
8389 non-numeric, there is no explicit limit on the size of images. */);
8390 Vmax_image_size
= make_float (MAX_IMAGE_SIZE
);
8392 Vimage_type_cache
= Qnil
;
8393 staticpro (&Vimage_type_cache
);
8395 Qpbm
= intern_c_string ("pbm");
8397 ADD_IMAGE_TYPE (Qpbm
);
8399 Qxbm
= intern_c_string ("xbm");
8401 ADD_IMAGE_TYPE (Qxbm
);
8403 define_image_type (&xbm_type
, 1);
8404 define_image_type (&pbm_type
, 1);
8406 Qcount
= intern_c_string ("count");
8407 staticpro (&Qcount
);
8408 Qextension_data
= intern_c_string ("extension-data");
8409 staticpro (&Qextension_data
);
8411 QCascent
= intern_c_string (":ascent");
8412 staticpro (&QCascent
);
8413 QCmargin
= intern_c_string (":margin");
8414 staticpro (&QCmargin
);
8415 QCrelief
= intern_c_string (":relief");
8416 staticpro (&QCrelief
);
8417 QCconversion
= intern_c_string (":conversion");
8418 staticpro (&QCconversion
);
8419 QCcolor_symbols
= intern_c_string (":color-symbols");
8420 staticpro (&QCcolor_symbols
);
8421 QCheuristic_mask
= intern_c_string (":heuristic-mask");
8422 staticpro (&QCheuristic_mask
);
8423 QCindex
= intern_c_string (":index");
8424 staticpro (&QCindex
);
8425 QCmatrix
= intern_c_string (":matrix");
8426 staticpro (&QCmatrix
);
8427 QCcolor_adjustment
= intern_c_string (":color-adjustment");
8428 staticpro (&QCcolor_adjustment
);
8429 QCmask
= intern_c_string (":mask");
8430 staticpro (&QCmask
);
8432 Qlaplace
= intern_c_string ("laplace");
8433 staticpro (&Qlaplace
);
8434 Qemboss
= intern_c_string ("emboss");
8435 staticpro (&Qemboss
);
8436 Qedge_detection
= intern_c_string ("edge-detection");
8437 staticpro (&Qedge_detection
);
8438 Qheuristic
= intern_c_string ("heuristic");
8439 staticpro (&Qheuristic
);
8441 Qpostscript
= intern_c_string ("postscript");
8442 staticpro (&Qpostscript
);
8443 #ifdef HAVE_GHOSTSCRIPT
8444 ADD_IMAGE_TYPE (Qpostscript
);
8445 QCloader
= intern_c_string (":loader");
8446 staticpro (&QCloader
);
8447 QCbounding_box
= intern_c_string (":bounding-box");
8448 staticpro (&QCbounding_box
);
8449 QCpt_width
= intern_c_string (":pt-width");
8450 staticpro (&QCpt_width
);
8451 QCpt_height
= intern_c_string (":pt-height");
8452 staticpro (&QCpt_height
);
8453 #endif /* HAVE_GHOSTSCRIPT */
8455 #if defined (HAVE_XPM) || defined (HAVE_NS)
8456 Qxpm
= intern_c_string ("xpm");
8458 ADD_IMAGE_TYPE (Qxpm
);
8461 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8462 Qjpeg
= intern_c_string ("jpeg");
8464 ADD_IMAGE_TYPE (Qjpeg
);
8467 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8468 Qtiff
= intern_c_string ("tiff");
8470 ADD_IMAGE_TYPE (Qtiff
);
8473 #if defined (HAVE_GIF) || defined (HAVE_NS)
8474 Qgif
= intern_c_string ("gif");
8476 ADD_IMAGE_TYPE (Qgif
);
8479 #if defined (HAVE_PNG) || defined (HAVE_NS)
8480 Qpng
= intern_c_string ("png");
8482 ADD_IMAGE_TYPE (Qpng
);
8485 #if defined (HAVE_RSVG)
8486 Qsvg
= intern_c_string ("svg");
8488 ADD_IMAGE_TYPE (Qsvg
);
8490 /* Other libraries used directly by svg code. */
8491 Qgdk_pixbuf
= intern_c_string ("gdk-pixbuf");
8492 staticpro (&Qgdk_pixbuf
);
8493 Qglib
= intern_c_string ("glib");
8495 Qgobject
= intern_c_string ("gobject");
8496 staticpro (&Qgobject
);
8497 #endif /* HAVE_NTGUI */
8498 #endif /* HAVE_RSVG */
8500 defsubr (&Sinit_image_library
);
8501 defsubr (&Sclear_image_cache
);
8502 defsubr (&Simage_refresh
);
8503 defsubr (&Simage_size
);
8504 defsubr (&Simage_mask_p
);
8505 defsubr (&Simage_metadata
);
8509 defsubr (&Slookup_image
);
8512 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images
,
8513 doc
: /* Non-nil means always draw a cross over disabled images.
8514 Disabled images are those having a `:conversion disabled' property.
8515 A cross is always drawn on black & white displays. */);
8516 cross_disabled_images
= 0;
8518 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path
,
8519 doc
: /* List of directories to search for window system bitmap files. */);
8520 Vx_bitmap_file_path
= decode_env_path ((char *) 0, PATH_BITMAPS
);
8522 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay
,
8523 doc
: /* Time after which cached images are removed from the cache.
8524 When an image has not been displayed this many seconds, remove it
8525 from the image cache. Value must be an integer or nil with nil
8526 meaning don't clear the cache. */);
8527 Vimage_cache_eviction_delay
= make_number (30 * 60);
8535 /* arch-tag: 123c2a5e-14a8-4c53-ab95-af47d7db49b9
8536 (do not change this comment) */