1 /* Functions for image support on window system.
3 Copyright (C) 1989, 1992-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25 #if defined HAVE_LIBPNG_PNG_H
26 # include <libpng/png.h>
36 /* This makes the fields of a Display accessible, in Xlib header files. */
38 #define XLIB_ILLEGAL_ACCESS
43 #include "dispextern.h"
44 #include "blockinput.h"
47 #include "character.h"
49 #include "termhooks.h"
52 #ifdef HAVE_SYS_STAT_H
54 #endif /* HAVE_SYS_STAT_H */
56 #ifdef HAVE_SYS_TYPES_H
57 #include <sys/types.h>
58 #endif /* HAVE_SYS_TYPES_H */
60 #ifdef HAVE_WINDOW_SYSTEM
62 #endif /* HAVE_WINDOW_SYSTEM */
65 #define COLOR_TABLE_SUPPORT 1
67 typedef struct x_bitmap_record Bitmap_Record
;
68 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
69 #define NO_PIXMAP None
71 #define RGB_PIXEL_COLOR unsigned long
73 #define PIX_MASK_RETAIN 0
74 #define PIX_MASK_DRAW 1
75 #endif /* HAVE_X_WINDOWS */
79 /* We need (or want) w32.h only when we're _not_ compiling for Cygwin. */
84 /* W32_TODO : Color tables on W32. */
85 #undef COLOR_TABLE_SUPPORT
87 typedef struct w32_bitmap_record Bitmap_Record
;
88 #define GET_PIXEL(ximg, x, y) GetPixel (ximg, x, y)
91 #define RGB_PIXEL_COLOR COLORREF
93 #define PIX_MASK_RETAIN 0
94 #define PIX_MASK_DRAW 1
96 #define x_defined_color w32_defined_color
97 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
99 /* Version of libpng that we were compiled with, or -1 if no PNG
100 support was compiled in. This is tested by w32-win.el to correctly
101 set up the alist used to search for PNG libraries. */
102 Lisp_Object Qlibpng_version
;
103 #endif /* HAVE_NTGUI */
106 #undef COLOR_TABLE_SUPPORT
108 typedef struct ns_bitmap_record Bitmap_Record
;
110 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
113 #define RGB_PIXEL_COLOR unsigned long
116 #define PIX_MASK_RETAIN 0
117 #define PIX_MASK_DRAW 1
119 #define x_defined_color(f, name, color_def, alloc) \
120 ns_defined_color (f, name, color_def, alloc, 0)
121 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
125 /* The symbol `postscript' identifying images of this type. */
127 static Lisp_Object Qpostscript
;
129 static void x_disable_image (struct frame
*, struct image
*);
130 static void x_edge_detection (struct frame
*, struct image
*, Lisp_Object
,
133 static void init_color_table (void);
134 static unsigned long lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
);
135 #ifdef COLOR_TABLE_SUPPORT
136 static void free_color_table (void);
137 static unsigned long *colors_in_color_table (int *n
);
140 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
141 id, which is just an int that this section returns. Bitmaps are
142 reference counted so they can be shared among frames.
144 Bitmap indices are guaranteed to be > 0, so a negative number can
145 be used to indicate no bitmap.
147 If you use x_create_bitmap_from_data, then you must keep track of
148 the bitmaps yourself. That is, creating a bitmap from the same
149 data more than once will not be caught. */
153 XGetImage (Display
*display
, Pixmap pixmap
, int x
, int y
,
154 unsigned int width
, unsigned int height
,
155 unsigned long plane_mask
, int format
)
157 /* TODO: not sure what this function is supposed to do.. */
158 ns_retain_object (pixmap
);
162 /* use with imgs created by ns_image_for_XPM */
164 XGetPixel (XImagePtr ximage
, int x
, int y
)
166 return ns_get_pixel (ximage
, x
, y
);
169 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
170 pixel is assumed to be in form RGB */
172 XPutPixel (XImagePtr ximage
, int x
, int y
, unsigned long pixel
)
174 ns_put_pixel (ximage
, x
, y
, pixel
);
179 /* Functions to access the contents of a bitmap, given an id. */
182 x_bitmap_height (FRAME_PTR f
, ptrdiff_t id
)
184 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
188 x_bitmap_width (FRAME_PTR f
, ptrdiff_t id
)
190 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
193 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
195 x_bitmap_pixmap (FRAME_PTR f
, ptrdiff_t id
)
197 /* HAVE_NTGUI needs the explicit cast here. */
198 return (ptrdiff_t) FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
202 #ifdef HAVE_X_WINDOWS
204 x_bitmap_mask (FRAME_PTR f
, ptrdiff_t id
)
206 return FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].mask
;
210 /* Allocate a new bitmap record. Returns index of new record. */
213 x_allocate_bitmap_record (FRAME_PTR f
)
215 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
218 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
219 return ++dpyinfo
->bitmaps_last
;
221 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
222 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
226 xpalloc (dpyinfo
->bitmaps
, &dpyinfo
->bitmaps_size
,
227 10, -1, sizeof *dpyinfo
->bitmaps
);
228 return ++dpyinfo
->bitmaps_last
;
231 /* Add one reference to the reference count of the bitmap with id ID. */
234 x_reference_bitmap (FRAME_PTR f
, ptrdiff_t id
)
236 ++FRAME_X_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
239 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
242 x_create_bitmap_from_data (struct frame
*f
, char *bits
, unsigned int width
, unsigned int height
)
244 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
247 #ifdef HAVE_X_WINDOWS
249 bitmap
= XCreateBitmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
250 bits
, width
, height
);
253 #endif /* HAVE_X_WINDOWS */
257 bitmap
= CreateBitmap (width
, height
,
258 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_planes
,
259 FRAME_X_DISPLAY_INFO (XFRAME (frame
))->n_cbits
,
263 #endif /* HAVE_NTGUI */
266 void *bitmap
= ns_image_from_XBM (bits
, width
, height
);
271 id
= x_allocate_bitmap_record (f
);
274 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
275 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
278 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
279 dpyinfo
->bitmaps
[id
- 1].height
= height
;
280 dpyinfo
->bitmaps
[id
- 1].width
= width
;
281 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
283 #ifdef HAVE_X_WINDOWS
284 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
285 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
286 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
287 #endif /* HAVE_X_WINDOWS */
290 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
291 dpyinfo
->bitmaps
[id
- 1].hinst
= NULL
;
292 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
293 #endif /* HAVE_NTGUI */
298 /* Create bitmap from file FILE for frame F. */
301 x_create_bitmap_from_file (struct frame
*f
, Lisp_Object file
)
303 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
306 return -1; /* W32_TODO : bitmap support */
307 #endif /* HAVE_NTGUI */
311 void *bitmap
= ns_image_from_file (file
);
317 id
= x_allocate_bitmap_record (f
);
318 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
319 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
320 dpyinfo
->bitmaps
[id
- 1].file
= xmalloc (SBYTES (file
) + 1);
321 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
322 dpyinfo
->bitmaps
[id
- 1].height
= ns_image_width (bitmap
);
323 dpyinfo
->bitmaps
[id
- 1].width
= ns_image_height (bitmap
);
324 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SSDATA (file
));
328 #ifdef HAVE_X_WINDOWS
329 unsigned int width
, height
;
331 int xhot
, yhot
, result
;
337 /* Look for an existing bitmap with the same name. */
338 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
340 if (dpyinfo
->bitmaps
[id
].refcount
341 && dpyinfo
->bitmaps
[id
].file
342 && !strcmp (dpyinfo
->bitmaps
[id
].file
, SSDATA (file
)))
344 ++dpyinfo
->bitmaps
[id
].refcount
;
349 /* Search bitmap-file-path for the file, if appropriate. */
350 fd
= openp (Vx_bitmap_file_path
, file
, Qnil
, &found
, Qnil
);
355 filename
= SSDATA (found
);
357 result
= XReadBitmapFile (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
358 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
359 if (result
!= BitmapSuccess
)
362 id
= x_allocate_bitmap_record (f
);
363 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
364 dpyinfo
->bitmaps
[id
- 1].have_mask
= 0;
365 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
366 dpyinfo
->bitmaps
[id
- 1].file
= xmalloc (SBYTES (file
) + 1);
367 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
368 dpyinfo
->bitmaps
[id
- 1].height
= height
;
369 dpyinfo
->bitmaps
[id
- 1].width
= width
;
370 strcpy (dpyinfo
->bitmaps
[id
- 1].file
, SSDATA (file
));
373 #endif /* HAVE_X_WINDOWS */
379 free_bitmap_record (Display_Info
*dpyinfo
, Bitmap_Record
*bm
)
381 #ifdef HAVE_X_WINDOWS
382 XFreePixmap (dpyinfo
->display
, bm
->pixmap
);
384 XFreePixmap (dpyinfo
->display
, bm
->mask
);
385 #endif /* HAVE_X_WINDOWS */
388 DeleteObject (bm
->pixmap
);
389 #endif /* HAVE_NTGUI */
392 ns_release_object (bm
->img
);
402 /* Remove reference to bitmap with id number ID. */
405 x_destroy_bitmap (FRAME_PTR f
, ptrdiff_t id
)
407 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
411 Bitmap_Record
*bm
= &dpyinfo
->bitmaps
[id
- 1];
413 if (--bm
->refcount
== 0)
416 free_bitmap_record (dpyinfo
, bm
);
422 /* Free all the bitmaps for the display specified by DPYINFO. */
425 x_destroy_all_bitmaps (Display_Info
*dpyinfo
)
428 Bitmap_Record
*bm
= dpyinfo
->bitmaps
;
430 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++, bm
++)
431 if (bm
->refcount
> 0)
432 free_bitmap_record (dpyinfo
, bm
);
434 dpyinfo
->bitmaps_last
= 0;
437 static bool x_create_x_image_and_pixmap (struct frame
*, int, int, int,
438 XImagePtr
*, Pixmap
*);
439 static void x_destroy_x_image (XImagePtr ximg
);
441 #ifdef HAVE_X_WINDOWS
443 /* Useful functions defined in the section
444 `Image type independent image structures' below. */
446 static unsigned long four_corners_best (XImagePtr ximg
,
449 unsigned long height
);
452 /* Create a mask of a bitmap. Note is this not a perfect mask.
453 It's nicer with some borders in this context */
456 x_create_bitmap_mask (struct frame
*f
, ptrdiff_t id
)
459 XImagePtr ximg
, mask_img
;
460 unsigned long width
, height
;
463 unsigned long x
, y
, xp
, xm
, yp
, ym
;
466 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
471 pixmap
= x_bitmap_pixmap (f
, id
);
472 width
= x_bitmap_width (f
, id
);
473 height
= x_bitmap_height (f
, id
);
476 ximg
= XGetImage (FRAME_X_DISPLAY (f
), pixmap
, 0, 0, width
, height
,
485 result
= x_create_x_image_and_pixmap (f
, width
, height
, 1, &mask_img
, &mask
);
490 XDestroyImage (ximg
);
494 bg
= four_corners_best (ximg
, NULL
, width
, height
);
496 for (y
= 0; y
< ximg
->height
; ++y
)
498 for (x
= 0; x
< ximg
->width
; ++x
)
500 xp
= x
!= ximg
->width
- 1 ? x
+ 1 : 0;
501 xm
= x
!= 0 ? x
- 1 : ximg
->width
- 1;
502 yp
= y
!= ximg
->height
- 1 ? y
+ 1 : 0;
503 ym
= y
!= 0 ? y
- 1 : ximg
->height
- 1;
504 if (XGetPixel (ximg
, x
, y
) == bg
505 && XGetPixel (ximg
, x
, yp
) == bg
506 && XGetPixel (ximg
, x
, ym
) == bg
507 && XGetPixel (ximg
, xp
, y
) == bg
508 && XGetPixel (ximg
, xp
, yp
) == bg
509 && XGetPixel (ximg
, xp
, ym
) == bg
510 && XGetPixel (ximg
, xm
, y
) == bg
511 && XGetPixel (ximg
, xm
, yp
) == bg
512 && XGetPixel (ximg
, xm
, ym
) == bg
)
513 XPutPixel (mask_img
, x
, y
, 0);
515 XPutPixel (mask_img
, x
, y
, 1);
519 eassert (input_blocked_p ());
520 gc
= XCreateGC (FRAME_X_DISPLAY (f
), mask
, 0, NULL
);
521 XPutImage (FRAME_X_DISPLAY (f
), mask
, gc
, mask_img
, 0, 0, 0, 0,
523 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
525 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
526 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
528 XDestroyImage (ximg
);
529 x_destroy_x_image (mask_img
);
532 #endif /* HAVE_X_WINDOWS */
535 /***********************************************************************
537 ***********************************************************************/
539 /* List of supported image types. Use define_image_type to add new
540 types. Use lookup_image_type to find a type for a given symbol. */
542 static struct image_type
*image_types
;
544 /* The symbol `xbm' which is used as the type symbol for XBM images. */
546 static Lisp_Object Qxbm
;
550 Lisp_Object QCascent
, QCmargin
, QCrelief
;
551 Lisp_Object QCconversion
;
552 static Lisp_Object QCheuristic_mask
;
553 static Lisp_Object QCcolor_symbols
;
554 static Lisp_Object QCindex
, QCmatrix
, QCcolor_adjustment
, QCmask
, QCgeometry
;
555 static Lisp_Object QCcrop
, QCrotation
;
559 static Lisp_Object Qcount
, Qextension_data
, Qdelay
;
560 static Lisp_Object Qlaplace
, Qemboss
, Qedge_detection
, Qheuristic
;
562 /* Forward function prototypes. */
564 static struct image_type
*lookup_image_type (Lisp_Object
);
565 static void x_laplace (struct frame
*, struct image
*);
566 static void x_emboss (struct frame
*, struct image
*);
567 static void x_build_heuristic_mask (struct frame
*, struct image
*,
570 extern Lisp_Object Vlibrary_cache
;
571 #define CACHE_IMAGE_TYPE(type, status) \
572 do { Vlibrary_cache = Fcons (Fcons (type, status), Vlibrary_cache); } while (0)
574 #define CACHE_IMAGE_TYPE(type, status)
577 #define ADD_IMAGE_TYPE(type) \
578 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
580 /* Define a new image type from TYPE. This adds a copy of TYPE to
581 image_types and caches the loading status of TYPE. */
583 static struct image_type
*
584 define_image_type (struct image_type
*type
)
586 struct image_type
*p
= NULL
;
587 Lisp_Object target_type
= *type
->type
;
592 for (p
= image_types
; p
; p
= p
->next
)
593 if (EQ (*p
->type
, target_type
))
598 #if defined HAVE_NTGUI && defined WINDOWSNT
599 /* If we failed to load the library before, don't try again. */
600 Lisp_Object tested
= Fassq (target_type
, Vlibrary_cache
);
601 if (CONSP (tested
) && NILP (XCDR (tested
)))
606 type_valid
= type
->init ();
607 CACHE_IMAGE_TYPE (target_type
, type_valid
? Qt
: Qnil
);
613 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
614 The initialized data segment is read-only. */
615 p
= xmalloc (sizeof *p
);
617 p
->next
= image_types
;
627 /* Value is true if OBJECT is a valid Lisp image specification. A
628 valid image specification is a list whose car is the symbol
629 `image', and whose rest is a property list. The property list must
630 contain a value for key `:type'. That value must be the name of a
631 supported image type. The rest of the property list depends on the
635 valid_image_p (Lisp_Object object
)
643 for (tem
= XCDR (object
); CONSP (tem
); tem
= XCDR (tem
))
644 if (EQ (XCAR (tem
), QCtype
))
647 if (CONSP (tem
) && SYMBOLP (XCAR (tem
)))
649 struct image_type
*type
;
650 type
= lookup_image_type (XCAR (tem
));
652 valid_p
= type
->valid_p (object
);
663 /* Log error message with format string FORMAT and argument ARG.
664 Signaling an error, e.g. when an image cannot be loaded, is not a
665 good idea because this would interrupt redisplay, and the error
666 message display would lead to another redisplay. This function
667 therefore simply displays a message. */
670 image_error (const char *format
, Lisp_Object arg1
, Lisp_Object arg2
)
672 add_to_log (format
, arg1
, arg2
);
677 /***********************************************************************
679 ***********************************************************************/
681 enum image_value_type
683 IMAGE_DONT_CHECK_VALUE_TYPE
,
685 IMAGE_STRING_OR_NIL_VALUE
,
687 IMAGE_POSITIVE_INTEGER_VALUE
,
688 IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
,
689 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
692 IMAGE_FUNCTION_VALUE
,
697 /* Structure used when parsing image specifications. */
701 /* Name of keyword. */
704 /* The type of value allowed. */
705 enum image_value_type type
;
707 /* True means key must be present. */
710 /* Used to recognize duplicate keywords in a property list. */
713 /* The value that was found. */
718 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
719 has the format (image KEYWORD VALUE ...). One of the keyword/
720 value pairs must be `:type TYPE'. KEYWORDS is a vector of
721 image_keywords structures of size NKEYWORDS describing other
722 allowed keyword/value pairs. Value is true if SPEC is valid. */
725 parse_image_spec (Lisp_Object spec
, struct image_keyword
*keywords
,
726 int nkeywords
, Lisp_Object type
)
735 while (CONSP (plist
))
737 Lisp_Object key
, value
;
739 /* First element of a pair must be a symbol. */
741 plist
= XCDR (plist
);
745 /* There must follow a value. */
748 value
= XCAR (plist
);
749 plist
= XCDR (plist
);
751 /* Find key in KEYWORDS. Error if not found. */
752 for (i
= 0; i
< nkeywords
; ++i
)
753 if (strcmp (keywords
[i
].name
, SSDATA (SYMBOL_NAME (key
))) == 0)
759 /* Record that we recognized the keyword. If a keywords
760 was found more than once, it's an error. */
761 keywords
[i
].value
= value
;
762 if (keywords
[i
].count
> 1)
766 /* Check type of value against allowed type. */
767 switch (keywords
[i
].type
)
769 case IMAGE_STRING_VALUE
:
770 if (!STRINGP (value
))
774 case IMAGE_STRING_OR_NIL_VALUE
:
775 if (!STRINGP (value
) && !NILP (value
))
779 case IMAGE_SYMBOL_VALUE
:
780 if (!SYMBOLP (value
))
784 case IMAGE_POSITIVE_INTEGER_VALUE
:
785 if (! RANGED_INTEGERP (1, value
, INT_MAX
))
789 case IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
:
790 if (RANGED_INTEGERP (0, value
, INT_MAX
))
793 && RANGED_INTEGERP (0, XCAR (value
), INT_MAX
)
794 && RANGED_INTEGERP (0, XCDR (value
), INT_MAX
))
798 case IMAGE_ASCENT_VALUE
:
799 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
801 else if (RANGED_INTEGERP (0, value
, 100))
805 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
806 /* Unlike the other integer-related cases, this one does not
807 verify that VALUE fits in 'int'. This is because callers
809 if (!INTEGERP (value
) || XINT (value
) < 0)
813 case IMAGE_DONT_CHECK_VALUE_TYPE
:
816 case IMAGE_FUNCTION_VALUE
:
817 value
= indirect_function (value
);
818 if (!NILP (Ffunctionp (value
)))
822 case IMAGE_NUMBER_VALUE
:
823 if (!INTEGERP (value
) && !FLOATP (value
))
827 case IMAGE_INTEGER_VALUE
:
828 if (! TYPE_RANGED_INTEGERP (int, value
))
832 case IMAGE_BOOL_VALUE
:
833 if (!NILP (value
) && !EQ (value
, Qt
))
842 if (EQ (key
, QCtype
) && !EQ (type
, value
))
846 /* Check that all mandatory fields are present. */
847 for (i
= 0; i
< nkeywords
; ++i
)
848 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
855 /* Return the value of KEY in image specification SPEC. Value is nil
856 if KEY is not present in SPEC. Set *FOUND depending on whether KEY
857 was found in SPEC. */
860 image_spec_value (Lisp_Object spec
, Lisp_Object key
, bool *found
)
864 eassert (valid_image_p (spec
));
866 for (tail
= XCDR (spec
);
867 CONSP (tail
) && CONSP (XCDR (tail
));
868 tail
= XCDR (XCDR (tail
)))
870 if (EQ (XCAR (tail
), key
))
874 return XCAR (XCDR (tail
));
884 DEFUN ("image-size", Fimage_size
, Simage_size
, 1, 3, 0,
885 doc
: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
886 PIXELS non-nil means return the size in pixels, otherwise return the
887 size in canonical character units.
888 FRAME is the frame on which the image will be displayed. FRAME nil
889 or omitted means use the selected frame. */)
890 (Lisp_Object spec
, Lisp_Object pixels
, Lisp_Object frame
)
895 if (valid_image_p (spec
))
897 struct frame
*f
= check_x_frame (frame
);
898 ptrdiff_t id
= lookup_image (f
, spec
);
899 struct image
*img
= IMAGE_FROM_ID (f
, id
);
900 int width
= img
->width
+ 2 * img
->hmargin
;
901 int height
= img
->height
+ 2 * img
->vmargin
;
904 size
= Fcons (make_float ((double) width
/ FRAME_COLUMN_WIDTH (f
)),
905 make_float ((double) height
/ FRAME_LINE_HEIGHT (f
)));
907 size
= Fcons (make_number (width
), make_number (height
));
910 error ("Invalid image specification");
916 DEFUN ("image-mask-p", Fimage_mask_p
, Simage_mask_p
, 1, 2, 0,
917 doc
: /* Return t if image SPEC has a mask bitmap.
918 FRAME is the frame on which the image will be displayed. FRAME nil
919 or omitted means use the selected frame. */)
920 (Lisp_Object spec
, Lisp_Object frame
)
925 if (valid_image_p (spec
))
927 struct frame
*f
= check_x_frame (frame
);
928 ptrdiff_t id
= lookup_image (f
, spec
);
929 struct image
*img
= IMAGE_FROM_ID (f
, id
);
934 error ("Invalid image specification");
939 DEFUN ("image-metadata", Fimage_metadata
, Simage_metadata
, 1, 2, 0,
940 doc
: /* Return metadata for image SPEC.
941 FRAME is the frame on which the image will be displayed. FRAME nil
942 or omitted means use the selected frame. */)
943 (Lisp_Object spec
, Lisp_Object frame
)
948 if (valid_image_p (spec
))
950 struct frame
*f
= check_x_frame (frame
);
951 ptrdiff_t id
= lookup_image (f
, spec
);
952 struct image
*img
= IMAGE_FROM_ID (f
, id
);
953 ext
= img
->lisp_data
;
960 /***********************************************************************
961 Image type independent image structures
962 ***********************************************************************/
964 #define MAX_IMAGE_SIZE 10.0
965 /* Allocate and return a new image structure for image specification
966 SPEC. SPEC has a hash value of HASH. */
968 static struct image
*
969 make_image (Lisp_Object spec
, EMACS_UINT hash
)
971 struct image
*img
= xzalloc (sizeof *img
);
972 Lisp_Object file
= image_spec_value (spec
, QCfile
, NULL
);
974 eassert (valid_image_p (spec
));
975 img
->dependencies
= NILP (file
) ? Qnil
: list1 (file
);
976 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
977 eassert (img
->type
!= NULL
);
979 img
->lisp_data
= Qnil
;
980 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
982 img
->corners
[BOT_CORNER
] = -1; /* Full image */
987 /* Free image IMG which was used on frame F, including its resources. */
990 free_image (struct frame
*f
, struct image
*img
)
994 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
996 /* Remove IMG from the hash table of its cache. */
998 img
->prev
->next
= img
->next
;
1000 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
1003 img
->next
->prev
= img
->prev
;
1005 c
->images
[img
->id
] = NULL
;
1007 /* Free resources, then free IMG. */
1008 img
->type
->free (f
, img
);
1013 /* Return true if the given widths and heights are valid for display. */
1016 check_image_size (struct frame
*f
, int width
, int height
)
1020 if (width
<= 0 || height
<= 0)
1023 if (INTEGERP (Vmax_image_size
))
1024 return (width
<= XINT (Vmax_image_size
)
1025 && height
<= XINT (Vmax_image_size
));
1026 else if (FLOATP (Vmax_image_size
))
1030 w
= FRAME_PIXEL_WIDTH (f
);
1031 h
= FRAME_PIXEL_HEIGHT (f
);
1034 w
= h
= 1024; /* Arbitrary size for unknown frame. */
1035 return (width
<= XFLOAT_DATA (Vmax_image_size
) * w
1036 && height
<= XFLOAT_DATA (Vmax_image_size
) * h
);
1042 /* Prepare image IMG for display on frame F. Must be called before
1043 drawing an image. */
1046 prepare_image_for_display (struct frame
*f
, struct image
*img
)
1048 /* We're about to display IMG, so set its timestamp to `now'. */
1049 img
->timestamp
= current_emacs_time ();
1051 /* If IMG doesn't have a pixmap yet, load it now, using the image
1052 type dependent loader function. */
1053 if (img
->pixmap
== NO_PIXMAP
&& !img
->load_failed_p
)
1054 img
->load_failed_p
= ! img
->type
->load (f
, img
);
1059 /* Value is the number of pixels for the ascent of image IMG when
1060 drawn in face FACE. */
1063 image_ascent (struct image
*img
, struct face
*face
, struct glyph_slice
*slice
)
1068 if (slice
->height
== img
->height
)
1069 height
= img
->height
+ img
->vmargin
;
1070 else if (slice
->y
== 0)
1071 height
= slice
->height
+ img
->vmargin
;
1073 height
= slice
->height
;
1075 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
1080 /* W32 specific version. Why?. ++kfs */
1081 ascent
= height
/ 2 - (FONT_DESCENT (face
->font
)
1082 - FONT_BASE (face
->font
)) / 2;
1084 /* This expression is arranged so that if the image can't be
1085 exactly centered, it will be moved slightly up. This is
1086 because a typical font is `top-heavy' (due to the presence
1087 uppercase letters), so the image placement should err towards
1088 being top-heavy too. It also just generally looks better. */
1089 ascent
= (height
+ FONT_BASE (face
->font
)
1090 - FONT_DESCENT (face
->font
) + 1) / 2;
1091 #endif /* HAVE_NTGUI */
1094 ascent
= height
/ 2;
1097 ascent
= height
* (img
->ascent
/ 100.0);
1103 /* Image background colors. */
1105 /* Find the "best" corner color of a bitmap.
1106 On W32, XIMG is assumed to a device context with the bitmap selected. */
1108 static RGB_PIXEL_COLOR
1109 four_corners_best (XImagePtr_or_DC ximg
, int *corners
,
1110 unsigned long width
, unsigned long height
)
1112 RGB_PIXEL_COLOR corner_pixels
[4], best
IF_LINT (= 0);
1115 if (corners
&& corners
[BOT_CORNER
] >= 0)
1117 /* Get the colors at the corner_pixels of ximg. */
1118 corner_pixels
[0] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[TOP_CORNER
]);
1119 corner_pixels
[1] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[TOP_CORNER
]);
1120 corner_pixels
[2] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[BOT_CORNER
] - 1);
1121 corner_pixels
[3] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[BOT_CORNER
] - 1);
1125 /* Get the colors at the corner_pixels of ximg. */
1126 corner_pixels
[0] = GET_PIXEL (ximg
, 0, 0);
1127 corner_pixels
[1] = GET_PIXEL (ximg
, width
- 1, 0);
1128 corner_pixels
[2] = GET_PIXEL (ximg
, width
- 1, height
- 1);
1129 corner_pixels
[3] = GET_PIXEL (ximg
, 0, height
- 1);
1131 /* Choose the most frequently found color as background. */
1132 for (i
= best_count
= 0; i
< 4; ++i
)
1136 for (j
= n
= 0; j
< 4; ++j
)
1137 if (corner_pixels
[i
] == corner_pixels
[j
])
1141 best
= corner_pixels
[i
], best_count
= n
;
1147 /* Portability macros */
1151 #define Destroy_Image(img_dc, prev) \
1152 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1154 #define Free_Pixmap(display, pixmap) \
1155 DeleteObject (pixmap)
1157 #elif defined (HAVE_NS)
1159 #define Destroy_Image(ximg, dummy) \
1160 ns_release_object (ximg)
1162 #define Free_Pixmap(display, pixmap) \
1163 ns_release_object (pixmap)
1167 #define Destroy_Image(ximg, dummy) \
1168 XDestroyImage (ximg)
1170 #define Free_Pixmap(display, pixmap) \
1171 XFreePixmap (display, pixmap)
1173 #endif /* !HAVE_NTGUI && !HAVE_NS */
1176 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1177 it is guessed heuristically. If non-zero, XIMG is an existing
1178 XImage object (or device context with the image selected on W32) to
1179 use for the heuristic. */
1182 image_background (struct image
*img
, struct frame
*f
, XImagePtr_or_DC ximg
)
1184 if (! img
->background_valid
)
1185 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1187 bool free_ximg
= !ximg
;
1190 #endif /* HAVE_NTGUI */
1195 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
1196 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1198 HDC frame_dc
= get_frame_dc (f
);
1199 ximg
= CreateCompatibleDC (frame_dc
);
1200 release_frame_dc (f
, frame_dc
);
1201 prev
= SelectObject (ximg
, img
->pixmap
);
1202 #endif /* !HAVE_NTGUI */
1205 img
->background
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
1208 Destroy_Image (ximg
, prev
);
1210 img
->background_valid
= 1;
1213 return img
->background
;
1216 /* Return the `background_transparent' field of IMG. If IMG doesn't
1217 have one yet, it is guessed heuristically. If non-zero, MASK is an
1218 existing XImage object to use for the heuristic. */
1221 image_background_transparent (struct image
*img
, struct frame
*f
, XImagePtr_or_DC mask
)
1223 if (! img
->background_transparent_valid
)
1224 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1228 bool free_mask
= !mask
;
1231 #endif /* HAVE_NTGUI */
1236 mask
= XGetImage (FRAME_X_DISPLAY (f
), img
->mask
,
1237 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
1239 HDC frame_dc
= get_frame_dc (f
);
1240 mask
= CreateCompatibleDC (frame_dc
);
1241 release_frame_dc (f
, frame_dc
);
1242 prev
= SelectObject (mask
, img
->mask
);
1243 #endif /* HAVE_NTGUI */
1246 img
->background_transparent
1247 = (four_corners_best (mask
, img
->corners
, img
->width
, img
->height
) == PIX_MASK_RETAIN
);
1250 Destroy_Image (mask
, prev
);
1253 img
->background_transparent
= 0;
1255 img
->background_transparent_valid
= 1;
1258 return img
->background_transparent
;
1262 /***********************************************************************
1263 Helper functions for X image types
1264 ***********************************************************************/
1266 /* Clear X resources of image IMG on frame F. PIXMAP_P means free the
1267 pixmap if any. MASK_P means clear the mask pixmap if any.
1268 COLORS_P means free colors allocated for the image, if any. */
1271 x_clear_image_1 (struct frame
*f
, struct image
*img
, bool pixmap_p
,
1272 bool mask_p
, bool colors_p
)
1274 if (pixmap_p
&& img
->pixmap
)
1276 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
1277 img
->pixmap
= NO_PIXMAP
;
1278 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1279 img
->background_valid
= 0;
1282 if (mask_p
&& img
->mask
)
1284 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1285 img
->mask
= NO_PIXMAP
;
1286 img
->background_transparent_valid
= 0;
1289 if (colors_p
&& img
->ncolors
)
1291 /* W32_TODO: color table support. */
1292 #ifdef HAVE_X_WINDOWS
1293 x_free_colors (f
, img
->colors
, img
->ncolors
);
1294 #endif /* HAVE_X_WINDOWS */
1295 xfree (img
->colors
);
1302 /* Free X resources of image IMG which is used on frame F. */
1305 x_clear_image (struct frame
*f
, struct image
*img
)
1308 x_clear_image_1 (f
, img
, 1, 1, 1);
1313 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1314 cannot be allocated, use DFLT. Add a newly allocated color to
1315 IMG->colors, so that it can be freed again. Value is the pixel
1318 static unsigned long
1319 x_alloc_image_color (struct frame
*f
, struct image
*img
, Lisp_Object color_name
,
1323 unsigned long result
;
1325 eassert (STRINGP (color_name
));
1327 if (x_defined_color (f
, SSDATA (color_name
), &color
, 1)
1328 && img
->ncolors
< min (min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *img
->colors
,
1331 /* This isn't called frequently so we get away with simply
1332 reallocating the color vector to the needed size, here. */
1333 ptrdiff_t ncolors
= img
->ncolors
+ 1;
1334 img
->colors
= xrealloc (img
->colors
, ncolors
* sizeof *img
->colors
);
1335 img
->colors
[ncolors
- 1] = color
.pixel
;
1336 img
->ncolors
= ncolors
;
1337 result
= color
.pixel
;
1347 /***********************************************************************
1349 ***********************************************************************/
1351 static void cache_image (struct frame
*f
, struct image
*img
);
1353 /* Return a new, initialized image cache that is allocated from the
1354 heap. Call free_image_cache to free an image cache. */
1356 struct image_cache
*
1357 make_image_cache (void)
1359 struct image_cache
*c
= xzalloc (sizeof *c
);
1363 c
->images
= xmalloc (size
* sizeof *c
->images
);
1365 size
= IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
;
1366 c
->buckets
= xzalloc (size
);
1371 /* Find an image matching SPEC in the cache, and return it. If no
1372 image is found, return NULL. */
1373 static struct image
*
1374 search_image_cache (struct frame
*f
, Lisp_Object spec
, EMACS_UINT hash
)
1377 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1378 int i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1380 if (!c
) return NULL
;
1382 /* If the image spec does not specify a background color, the cached
1383 image must have the same background color as the current frame.
1384 The foreground color must also match, for the sake of monochrome
1387 In fact, we could ignore the foreground color matching condition
1388 for color images, or if the image spec specifies :foreground;
1389 similarly we could ignore the background color matching condition
1390 for formats that don't use transparency (such as jpeg), or if the
1391 image spec specifies :background. However, the extra memory
1392 usage is probably negligible in practice, so we don't bother. */
1394 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
1395 if (img
->hash
== hash
1396 && !NILP (Fequal (img
->spec
, spec
))
1397 && img
->frame_foreground
== FRAME_FOREGROUND_PIXEL (f
)
1398 && img
->frame_background
== FRAME_BACKGROUND_PIXEL (f
))
1404 /* Search frame F for an image with spec SPEC, and free it. */
1407 uncache_image (struct frame
*f
, Lisp_Object spec
)
1409 struct image
*img
= search_image_cache (f
, spec
, sxhash (spec
, 0));
1412 free_image (f
, img
);
1413 /* As display glyphs may still be referring to the image ID, we
1414 must garbage the frame (Bug#6426). */
1415 SET_FRAME_GARBAGED (f
);
1420 /* Free image cache of frame F. Be aware that X frames share images
1424 free_image_cache (struct frame
*f
)
1426 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1431 /* Cache should not be referenced by any frame when freed. */
1432 eassert (c
->refcount
== 0);
1434 for (i
= 0; i
< c
->used
; ++i
)
1435 free_image (f
, c
->images
[i
]);
1439 FRAME_IMAGE_CACHE (f
) = NULL
;
1444 /* Clear image cache of frame F. FILTER=t means free all images.
1445 FILTER=nil means clear only images that haven't been
1446 displayed for some time.
1447 Else, only free the images which have FILTER in their `dependencies'.
1448 Should be called from time to time to reduce the number of loaded images.
1449 If image-cache-eviction-delay is non-nil, this frees images in the cache
1450 which weren't displayed for at least that many seconds. */
1453 clear_image_cache (struct frame
*f
, Lisp_Object filter
)
1455 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1459 ptrdiff_t i
, nfreed
= 0;
1461 /* Block input so that we won't be interrupted by a SIGIO
1462 while being in an inconsistent state. */
1467 /* Filter image cache. */
1468 for (i
= 0; i
< c
->used
; ++i
)
1470 struct image
*img
= c
->images
[i
];
1471 if (img
&& (EQ (Qt
, filter
)
1472 || !NILP (Fmember (filter
, img
->dependencies
))))
1474 free_image (f
, img
);
1479 else if (INTEGERP (Vimage_cache_eviction_delay
))
1481 /* Free cache based on timestamp. */
1484 ptrdiff_t nimages
= 0;
1486 for (i
= 0; i
< c
->used
; ++i
)
1490 /* If the number of cached images has grown unusually large,
1491 decrease the cache eviction delay (Bug#6230). */
1492 delay
= XINT (Vimage_cache_eviction_delay
);
1494 delay
= 1600 * delay
/ nimages
/ nimages
;
1495 delay
= max (delay
, 1);
1497 t
= current_emacs_time ();
1498 old
= sub_emacs_time (t
, EMACS_TIME_FROM_DOUBLE (delay
));
1500 for (i
= 0; i
< c
->used
; ++i
)
1502 struct image
*img
= c
->images
[i
];
1503 if (img
&& EMACS_TIME_LT (img
->timestamp
, old
))
1505 free_image (f
, img
);
1511 /* We may be clearing the image cache because, for example,
1512 Emacs was iconified for a longer period of time. In that
1513 case, current matrices may still contain references to
1514 images freed above. So, clear these matrices. */
1517 Lisp_Object tail
, frame
;
1519 FOR_EACH_FRAME (tail
, frame
)
1521 struct frame
*fr
= XFRAME (frame
);
1522 if (FRAME_IMAGE_CACHE (fr
) == c
)
1523 clear_current_matrices (fr
);
1526 ++windows_or_buffers_changed
;
1534 clear_image_caches (Lisp_Object filter
)
1536 /* FIXME: We want to do
1537 * struct terminal *t;
1538 * for (t = terminal_list; t; t = t->next_terminal)
1539 * clear_image_cache (t, filter); */
1540 Lisp_Object tail
, frame
;
1541 FOR_EACH_FRAME (tail
, frame
)
1542 if (FRAME_WINDOW_P (XFRAME (frame
)))
1543 clear_image_cache (XFRAME (frame
), filter
);
1546 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
1548 doc
: /* Clear the image cache.
1549 FILTER nil or a frame means clear all images in the selected frame.
1550 FILTER t means clear the image caches of all frames.
1551 Anything else, means only clear those images which refer to FILTER,
1552 which is then usually a filename. */)
1553 (Lisp_Object filter
)
1555 if (!(EQ (filter
, Qnil
) || FRAMEP (filter
)))
1556 clear_image_caches (filter
);
1558 clear_image_cache (check_x_frame (filter
), Qt
);
1564 DEFUN ("image-flush", Fimage_flush
, Simage_flush
,
1566 doc
: /* Fush the image with specification SPEC on frame FRAME.
1567 This removes the image from the Emacs image cache. If SPEC specifies
1568 an image file, the next redisplay of this image will read from the
1569 current contents of that file.
1571 FRAME nil or omitted means use the selected frame.
1572 FRAME t means refresh the image on all frames. */)
1573 (Lisp_Object spec
, Lisp_Object frame
)
1575 if (!valid_image_p (spec
))
1576 error ("Invalid image specification");
1581 FOR_EACH_FRAME (tail
, frame
)
1583 struct frame
*f
= XFRAME (frame
);
1584 if (FRAME_WINDOW_P (f
))
1585 uncache_image (f
, spec
);
1589 uncache_image (check_x_frame (frame
), spec
);
1595 /* Compute masks and transform image IMG on frame F, as specified
1596 by the image's specification, */
1599 postprocess_image (struct frame
*f
, struct image
*img
)
1601 /* Manipulation of the image's mask. */
1604 Lisp_Object conversion
, spec
;
1609 /* `:heuristic-mask t'
1611 means build a mask heuristically.
1612 `:heuristic-mask (R G B)'
1613 `:mask (heuristic (R G B))'
1614 means build a mask from color (R G B) in the
1617 means remove a mask, if any. */
1619 mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
1621 x_build_heuristic_mask (f
, img
, mask
);
1626 mask
= image_spec_value (spec
, QCmask
, &found_p
);
1628 if (EQ (mask
, Qheuristic
))
1629 x_build_heuristic_mask (f
, img
, Qt
);
1630 else if (CONSP (mask
)
1631 && EQ (XCAR (mask
), Qheuristic
))
1633 if (CONSP (XCDR (mask
)))
1634 x_build_heuristic_mask (f
, img
, XCAR (XCDR (mask
)));
1636 x_build_heuristic_mask (f
, img
, XCDR (mask
));
1638 else if (NILP (mask
) && found_p
&& img
->mask
)
1640 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1641 img
->mask
= NO_PIXMAP
;
1646 /* Should we apply an image transformation algorithm? */
1647 conversion
= image_spec_value (spec
, QCconversion
, NULL
);
1648 if (EQ (conversion
, Qdisabled
))
1649 x_disable_image (f
, img
);
1650 else if (EQ (conversion
, Qlaplace
))
1652 else if (EQ (conversion
, Qemboss
))
1654 else if (CONSP (conversion
)
1655 && EQ (XCAR (conversion
), Qedge_detection
))
1658 tem
= XCDR (conversion
);
1660 x_edge_detection (f
, img
,
1661 Fplist_get (tem
, QCmatrix
),
1662 Fplist_get (tem
, QCcolor_adjustment
));
1668 /* Return the id of image with Lisp specification SPEC on frame F.
1669 SPEC must be a valid Lisp image specification (see valid_image_p). */
1672 lookup_image (struct frame
*f
, Lisp_Object spec
)
1677 /* F must be a window-system frame, and SPEC must be a valid image
1679 eassert (FRAME_WINDOW_P (f
));
1680 eassert (valid_image_p (spec
));
1682 /* Look up SPEC in the hash table of the image cache. */
1683 hash
= sxhash (spec
, 0);
1684 img
= search_image_cache (f
, spec
, hash
);
1685 if (img
&& img
->load_failed_p
)
1687 free_image (f
, img
);
1691 /* If not found, create a new image and cache it. */
1695 img
= make_image (spec
, hash
);
1696 cache_image (f
, img
);
1697 img
->load_failed_p
= ! img
->type
->load (f
, img
);
1698 img
->frame_foreground
= FRAME_FOREGROUND_PIXEL (f
);
1699 img
->frame_background
= FRAME_BACKGROUND_PIXEL (f
);
1701 /* If we can't load the image, and we don't have a width and
1702 height, use some arbitrary width and height so that we can
1703 draw a rectangle for it. */
1704 if (img
->load_failed_p
)
1708 value
= image_spec_value (spec
, QCwidth
, NULL
);
1709 img
->width
= (INTEGERP (value
)
1710 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
1711 value
= image_spec_value (spec
, QCheight
, NULL
);
1712 img
->height
= (INTEGERP (value
)
1713 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
1717 /* Handle image type independent image attributes
1718 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1719 `:background COLOR'. */
1720 Lisp_Object ascent
, margin
, relief
, bg
;
1723 ascent
= image_spec_value (spec
, QCascent
, NULL
);
1724 if (INTEGERP (ascent
))
1725 img
->ascent
= XFASTINT (ascent
);
1726 else if (EQ (ascent
, Qcenter
))
1727 img
->ascent
= CENTERED_IMAGE_ASCENT
;
1729 margin
= image_spec_value (spec
, QCmargin
, NULL
);
1730 if (INTEGERP (margin
))
1731 img
->vmargin
= img
->hmargin
= XFASTINT (margin
);
1732 else if (CONSP (margin
))
1734 img
->hmargin
= XFASTINT (XCAR (margin
));
1735 img
->vmargin
= XFASTINT (XCDR (margin
));
1738 relief
= image_spec_value (spec
, QCrelief
, NULL
);
1739 relief_bound
= INT_MAX
- max (img
->hmargin
, img
->vmargin
);
1740 if (RANGED_INTEGERP (- relief_bound
, relief
, relief_bound
))
1742 img
->relief
= XINT (relief
);
1743 img
->hmargin
+= eabs (img
->relief
);
1744 img
->vmargin
+= eabs (img
->relief
);
1747 if (! img
->background_valid
)
1749 bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
1753 = x_alloc_image_color (f
, img
, bg
,
1754 FRAME_BACKGROUND_PIXEL (f
));
1755 img
->background_valid
= 1;
1759 /* Do image transformations and compute masks, unless we
1760 don't have the image yet. */
1761 if (!EQ (*img
->type
->type
, Qpostscript
))
1762 postprocess_image (f
, img
);
1768 /* We're using IMG, so set its timestamp to `now'. */
1769 img
->timestamp
= current_emacs_time ();
1771 /* Value is the image id. */
1776 /* Cache image IMG in the image cache of frame F. */
1779 cache_image (struct frame
*f
, struct image
*img
)
1781 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1784 /* Find a free slot in c->images. */
1785 for (i
= 0; i
< c
->used
; ++i
)
1786 if (c
->images
[i
] == NULL
)
1789 /* If no free slot found, maybe enlarge c->images. */
1790 if (i
== c
->used
&& c
->used
== c
->size
)
1791 c
->images
= xpalloc (c
->images
, &c
->size
, 1, -1, sizeof *c
->images
);
1793 /* Add IMG to c->images, and assign IMG an id. */
1799 /* Add IMG to the cache's hash table. */
1800 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1801 img
->next
= c
->buckets
[i
];
1803 img
->next
->prev
= img
;
1805 c
->buckets
[i
] = img
;
1809 /* Call FN on every image in the image cache of frame F. Used to mark
1810 Lisp Objects in the image cache. */
1812 /* Mark Lisp objects in image IMG. */
1815 mark_image (struct image
*img
)
1817 mark_object (img
->spec
);
1818 mark_object (img
->dependencies
);
1820 if (!NILP (img
->lisp_data
))
1821 mark_object (img
->lisp_data
);
1826 mark_image_cache (struct image_cache
*c
)
1831 for (i
= 0; i
< c
->used
; ++i
)
1833 mark_image (c
->images
[i
]);
1839 /***********************************************************************
1840 X / NS / W32 support code
1841 ***********************************************************************/
1845 /* Macro for defining functions that will be loaded from image DLLs. */
1846 #define DEF_IMGLIB_FN(rettype,func,args) static rettype (FAR CDECL *fn_##func)args
1848 /* Macro for loading those image functions from the library. */
1849 #define LOAD_IMGLIB_FN(lib,func) { \
1850 fn_##func = (void *) GetProcAddress (lib, #func); \
1851 if (!fn_##func) return 0; \
1854 #endif /* WINDOWSNT */
1856 /* Return true if XIMG's size WIDTH x HEIGHT doesn't break the
1858 WIDTH and HEIGHT must both be positive.
1859 If XIMG is null, assume it is a bitmap. */
1861 x_check_image_size (XImagePtr ximg
, int width
, int height
)
1863 #ifdef HAVE_X_WINDOWS
1864 /* Respect Xlib's limits: it cannot deal with images that have more
1865 than INT_MAX (and/or UINT_MAX) bytes. And respect Emacs's limits
1866 of PTRDIFF_MAX (and/or SIZE_MAX) bytes for any object. */
1869 XLIB_BYTES_MAX
= min (INT_MAX
, UINT_MAX
),
1870 X_IMAGE_BYTES_MAX
= min (XLIB_BYTES_MAX
, min (PTRDIFF_MAX
, SIZE_MAX
))
1873 int bitmap_pad
, depth
, bytes_per_line
;
1876 bitmap_pad
= ximg
->bitmap_pad
;
1877 depth
= ximg
->depth
;
1878 bytes_per_line
= ximg
->bytes_per_line
;
1884 bytes_per_line
= (width
>> 3) + ((width
& 7) != 0);
1886 return (width
<= (INT_MAX
- (bitmap_pad
- 1)) / depth
1887 && height
<= X_IMAGE_BYTES_MAX
/ bytes_per_line
);
1889 /* FIXME: Implement this check for the HAVE_NS and HAVE_NTGUI cases.
1890 For now, assume that every image size is allowed on these systems. */
1895 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1896 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1897 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1898 via xmalloc. Print error messages via image_error if an error
1899 occurs. Value is true if successful.
1901 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1902 should indicate the bit depth of the image. */
1905 x_create_x_image_and_pixmap (struct frame
*f
, int width
, int height
, int depth
,
1906 XImagePtr
*ximg
, Pixmap
*pixmap
)
1908 #ifdef HAVE_X_WINDOWS
1909 Display
*display
= FRAME_X_DISPLAY (f
);
1910 Window window
= FRAME_X_WINDOW (f
);
1911 Screen
*screen
= FRAME_X_SCREEN (f
);
1913 eassert (input_blocked_p ());
1916 depth
= DefaultDepthOfScreen (screen
);
1917 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
1918 depth
, ZPixmap
, 0, NULL
, width
, height
,
1919 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
1922 image_error ("Unable to allocate X image", Qnil
, Qnil
);
1926 if (! x_check_image_size (*ximg
, width
, height
))
1928 x_destroy_x_image (*ximg
);
1930 image_error ("Image too large (%dx%d)",
1931 make_number (width
), make_number (height
));
1935 /* Allocate image raster. */
1936 (*ximg
)->data
= xmalloc ((*ximg
)->bytes_per_line
* height
);
1938 /* Allocate a pixmap of the same size. */
1939 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
1940 if (*pixmap
== NO_PIXMAP
)
1942 x_destroy_x_image (*ximg
);
1944 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
1949 #endif /* HAVE_X_WINDOWS */
1953 BITMAPINFOHEADER
*header
;
1955 int scanline_width_bits
;
1957 int palette_colors
= 0;
1962 if (depth
!= 1 && depth
!= 4 && depth
!= 8
1963 && depth
!= 16 && depth
!= 24 && depth
!= 32)
1965 image_error ("Invalid image bit depth specified", Qnil
, Qnil
);
1969 scanline_width_bits
= width
* depth
;
1970 remainder
= scanline_width_bits
% 32;
1973 scanline_width_bits
+= 32 - remainder
;
1975 /* Bitmaps with a depth less than 16 need a palette. */
1976 /* BITMAPINFO structure already contains the first RGBQUAD. */
1978 palette_colors
= 1 << (depth
- 1);
1980 *ximg
= xmalloc (sizeof (XImage
) + palette_colors
* sizeof (RGBQUAD
));
1982 header
= &(*ximg
)->info
.bmiHeader
;
1983 memset (&(*ximg
)->info
, 0, sizeof (BITMAPINFO
));
1984 header
->biSize
= sizeof (*header
);
1985 header
->biWidth
= width
;
1986 header
->biHeight
= -height
; /* negative indicates a top-down bitmap. */
1987 header
->biPlanes
= 1;
1988 header
->biBitCount
= depth
;
1989 header
->biCompression
= BI_RGB
;
1990 header
->biClrUsed
= palette_colors
;
1992 /* TODO: fill in palette. */
1995 (*ximg
)->info
.bmiColors
[0].rgbBlue
= 0;
1996 (*ximg
)->info
.bmiColors
[0].rgbGreen
= 0;
1997 (*ximg
)->info
.bmiColors
[0].rgbRed
= 0;
1998 (*ximg
)->info
.bmiColors
[0].rgbReserved
= 0;
1999 (*ximg
)->info
.bmiColors
[1].rgbBlue
= 255;
2000 (*ximg
)->info
.bmiColors
[1].rgbGreen
= 255;
2001 (*ximg
)->info
.bmiColors
[1].rgbRed
= 255;
2002 (*ximg
)->info
.bmiColors
[1].rgbReserved
= 0;
2005 hdc
= get_frame_dc (f
);
2007 /* Create a DIBSection and raster array for the bitmap,
2008 and store its handle in *pixmap. */
2009 *pixmap
= CreateDIBSection (hdc
, &((*ximg
)->info
),
2010 (depth
< 16) ? DIB_PAL_COLORS
: DIB_RGB_COLORS
,
2011 /* casting avoids a GCC warning */
2012 (void **)&((*ximg
)->data
), NULL
, 0);
2014 /* Realize display palette and garbage all frames. */
2015 release_frame_dc (f
, hdc
);
2017 if (*pixmap
== NULL
)
2019 DWORD err
= GetLastError ();
2020 Lisp_Object errcode
;
2021 /* All system errors are < 10000, so the following is safe. */
2022 XSETINT (errcode
, err
);
2023 image_error ("Unable to create bitmap, error code %d", errcode
, Qnil
);
2024 x_destroy_x_image (*ximg
);
2030 #endif /* HAVE_NTGUI */
2033 *pixmap
= ns_image_for_XPM (width
, height
, depth
);
2037 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil
, Qnil
);
2046 /* Destroy XImage XIMG. Free XIMG->data. */
2049 x_destroy_x_image (XImagePtr ximg
)
2051 eassert (input_blocked_p ());
2054 #ifdef HAVE_X_WINDOWS
2057 XDestroyImage (ximg
);
2058 #endif /* HAVE_X_WINDOWS */
2060 /* Data will be freed by DestroyObject. */
2063 #endif /* HAVE_NTGUI */
2065 ns_release_object (ximg
);
2066 #endif /* HAVE_NS */
2071 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2072 are width and height of both the image and pixmap. */
2075 x_put_x_image (struct frame
*f
, XImagePtr ximg
, Pixmap pixmap
, int width
, int height
)
2077 #ifdef HAVE_X_WINDOWS
2080 eassert (input_blocked_p ());
2081 gc
= XCreateGC (FRAME_X_DISPLAY (f
), pixmap
, 0, NULL
);
2082 XPutImage (FRAME_X_DISPLAY (f
), pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
2083 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
2084 #endif /* HAVE_X_WINDOWS */
2087 #if 0 /* I don't think this is necessary looking at where it is used. */
2088 HDC hdc
= get_frame_dc (f
);
2089 SetDIBits (hdc
, pixmap
, 0, height
, ximg
->data
, &(ximg
->info
), DIB_RGB_COLORS
);
2090 release_frame_dc (f
, hdc
);
2092 #endif /* HAVE_NTGUI */
2095 eassert (ximg
== pixmap
);
2096 ns_retain_object (ximg
);
2101 /***********************************************************************
2103 ***********************************************************************/
2105 /* Find image file FILE. Look in data-directory/images, then
2106 x-bitmap-file-path. Value is the encoded full name of the file
2107 found, or nil if not found. */
2110 x_find_image_file (Lisp_Object file
)
2112 Lisp_Object file_found
, search_path
;
2115 /* TODO I think this should use something like image-load-path
2116 instead. Unfortunately, that can contain non-string elements. */
2117 search_path
= Fcons (Fexpand_file_name (build_string ("images"),
2119 Vx_bitmap_file_path
);
2121 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2122 fd
= openp (search_path
, file
, Qnil
, &file_found
, Qnil
);
2128 file_found
= ENCODE_FILE (file_found
);
2136 /* Read FILE into memory. Value is a pointer to a buffer allocated
2137 with xmalloc holding FILE's contents. Value is null if an error
2138 occurred. *SIZE is set to the size of the file. */
2140 static unsigned char *
2141 slurp_file (char *file
, ptrdiff_t *size
)
2143 FILE *fp
= fopen (file
, "rb");
2144 unsigned char *buf
= NULL
;
2147 if (fp
&& fstat (fileno (fp
), &st
) == 0
2148 && 0 <= st
.st_size
&& st
.st_size
<= min (PTRDIFF_MAX
, SIZE_MAX
)
2149 && (buf
= xmalloc (st
.st_size
),
2150 fread (buf
, 1, st
.st_size
, fp
) == st
.st_size
))
2171 /***********************************************************************
2173 ***********************************************************************/
2175 static bool xbm_load (struct frame
*f
, struct image
*img
);
2176 static bool xbm_image_p (Lisp_Object object
);
2177 static bool xbm_file_p (Lisp_Object
);
2180 /* Indices of image specification fields in xbm_format, below. */
2182 enum xbm_keyword_index
2200 /* Vector of image_keyword structures describing the format
2201 of valid XBM image specifications. */
2203 static const struct image_keyword xbm_format
[XBM_LAST
] =
2205 {":type", IMAGE_SYMBOL_VALUE
, 1},
2206 {":file", IMAGE_STRING_VALUE
, 0},
2207 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2208 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2209 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2210 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
2211 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
2212 {":ascent", IMAGE_ASCENT_VALUE
, 0},
2213 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
2214 {":relief", IMAGE_INTEGER_VALUE
, 0},
2215 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2216 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2217 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
2220 /* Structure describing the image type XBM. */
2222 static struct image_type xbm_type
=
2232 /* Tokens returned from xbm_scan. */
2241 /* Return true if OBJECT is a valid XBM-type image specification.
2242 A valid specification is a list starting with the symbol `image'
2243 The rest of the list is a property list which must contain an
2246 If the specification specifies a file to load, it must contain
2247 an entry `:file FILENAME' where FILENAME is a string.
2249 If the specification is for a bitmap loaded from memory it must
2250 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2251 WIDTH and HEIGHT are integers > 0. DATA may be:
2253 1. a string large enough to hold the bitmap data, i.e. it must
2254 have a size >= (WIDTH + 7) / 8 * HEIGHT
2256 2. a bool-vector of size >= WIDTH * HEIGHT
2258 3. a vector of strings or bool-vectors, one for each line of the
2261 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2262 may not be specified in this case because they are defined in the
2265 Both the file and data forms may contain the additional entries
2266 `:background COLOR' and `:foreground COLOR'. If not present,
2267 foreground and background of the frame on which the image is
2268 displayed is used. */
2271 xbm_image_p (Lisp_Object object
)
2273 struct image_keyword kw
[XBM_LAST
];
2275 memcpy (kw
, xbm_format
, sizeof kw
);
2276 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
2279 eassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
2281 if (kw
[XBM_FILE
].count
)
2283 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
2286 else if (kw
[XBM_DATA
].count
&& xbm_file_p (kw
[XBM_DATA
].value
))
2288 /* In-memory XBM file. */
2289 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_FILE
].count
)
2297 /* Entries for `:width', `:height' and `:data' must be present. */
2298 if (!kw
[XBM_WIDTH
].count
2299 || !kw
[XBM_HEIGHT
].count
2300 || !kw
[XBM_DATA
].count
)
2303 data
= kw
[XBM_DATA
].value
;
2304 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
2305 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
2307 /* Check type of data, and width and height against contents of
2313 /* Number of elements of the vector must be >= height. */
2314 if (ASIZE (data
) < height
)
2317 /* Each string or bool-vector in data must be large enough
2318 for one line of the image. */
2319 for (i
= 0; i
< height
; ++i
)
2321 Lisp_Object elt
= AREF (data
, i
);
2326 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
2329 else if (BOOL_VECTOR_P (elt
))
2331 if (XBOOL_VECTOR (elt
)->size
< width
)
2338 else if (STRINGP (data
))
2341 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
2344 else if (BOOL_VECTOR_P (data
))
2346 if (XBOOL_VECTOR (data
)->size
/ height
< width
)
2357 /* Scan a bitmap file. FP is the stream to read from. Value is
2358 either an enumerator from enum xbm_token, or a character for a
2359 single-character token, or 0 at end of file. If scanning an
2360 identifier, store the lexeme of the identifier in SVAL. If
2361 scanning a number, store its value in *IVAL. */
2364 xbm_scan (unsigned char **s
, unsigned char *end
, char *sval
, int *ival
)
2370 /* Skip white space. */
2371 while (*s
< end
&& (c
= *(*s
)++, c_isspace (c
)))
2376 else if (c_isdigit (c
))
2378 int value
= 0, digit
;
2380 if (c
== '0' && *s
< end
)
2383 if (c
== 'x' || c
== 'X')
2390 else if (c
>= 'a' && c
<= 'f')
2391 digit
= c
- 'a' + 10;
2392 else if (c
>= 'A' && c
<= 'F')
2393 digit
= c
- 'A' + 10;
2396 value
= 16 * value
+ digit
;
2399 else if (c_isdigit (c
))
2403 && (c
= *(*s
)++, c_isdigit (c
)))
2404 value
= 8 * value
+ c
- '0';
2411 && (c
= *(*s
)++, c_isdigit (c
)))
2412 value
= 10 * value
+ c
- '0';
2420 else if (c_isalpha (c
) || c
== '_')
2424 && (c
= *(*s
)++, (c_isalnum (c
) || c
== '_')))
2431 else if (c
== '/' && **s
== '*')
2433 /* C-style comment. */
2435 while (**s
&& (**s
!= '*' || *(*s
+ 1) != '/'))
2449 /* Create a Windows bitmap from X bitmap data. */
2451 w32_create_pixmap_from_bitmap_data (int width
, int height
, char *data
)
2453 static unsigned char swap_nibble
[16]
2454 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2455 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2456 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2457 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2459 unsigned char *bits
, *p
;
2462 w1
= (width
+ 7) / 8; /* nb of 8bits elt in X bitmap */
2463 w2
= ((width
+ 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2464 bits
= alloca (height
* w2
);
2465 memset (bits
, 0, height
* w2
);
2466 for (i
= 0; i
< height
; i
++)
2469 for (j
= 0; j
< w1
; j
++)
2471 /* Bitswap XBM bytes to match how Windows does things. */
2472 unsigned char c
= *data
++;
2473 *p
++ = (unsigned char)((swap_nibble
[c
& 0xf] << 4)
2474 | (swap_nibble
[(c
>>4) & 0xf]));
2477 bmp
= CreateBitmap (width
, height
, 1, 1, (char *) bits
);
2483 convert_mono_to_color_image (struct frame
*f
, struct image
*img
,
2484 COLORREF foreground
, COLORREF background
)
2486 HDC hdc
, old_img_dc
, new_img_dc
;
2487 HGDIOBJ old_prev
, new_prev
;
2490 hdc
= get_frame_dc (f
);
2491 old_img_dc
= CreateCompatibleDC (hdc
);
2492 new_img_dc
= CreateCompatibleDC (hdc
);
2493 new_pixmap
= CreateCompatibleBitmap (hdc
, img
->width
, img
->height
);
2494 release_frame_dc (f
, hdc
);
2495 old_prev
= SelectObject (old_img_dc
, img
->pixmap
);
2496 new_prev
= SelectObject (new_img_dc
, new_pixmap
);
2497 /* Windows convention for mono bitmaps is black = background,
2498 white = foreground. */
2499 SetTextColor (new_img_dc
, background
);
2500 SetBkColor (new_img_dc
, foreground
);
2502 BitBlt (new_img_dc
, 0, 0, img
->width
, img
->height
, old_img_dc
,
2505 SelectObject (old_img_dc
, old_prev
);
2506 SelectObject (new_img_dc
, new_prev
);
2507 DeleteDC (old_img_dc
);
2508 DeleteDC (new_img_dc
);
2509 DeleteObject (img
->pixmap
);
2510 if (new_pixmap
== 0)
2511 fprintf (stderr
, "Failed to convert image to color.\n");
2513 img
->pixmap
= new_pixmap
;
2516 #define XBM_BIT_SHUFFLE(b) (~(b))
2520 #define XBM_BIT_SHUFFLE(b) (b)
2522 #endif /* HAVE_NTGUI */
2526 Create_Pixmap_From_Bitmap_Data (struct frame
*f
, struct image
*img
, char *data
,
2527 RGB_PIXEL_COLOR fg
, RGB_PIXEL_COLOR bg
,
2528 bool non_default_colors
)
2532 = w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
, data
);
2534 /* If colors were specified, transfer the bitmap to a color one. */
2535 if (non_default_colors
)
2536 convert_mono_to_color_image (f
, img
, fg
, bg
);
2538 #elif defined (HAVE_NS)
2539 img
->pixmap
= ns_image_from_XBM (data
, img
->width
, img
->height
);
2543 (x_check_image_size (0, img
->width
, img
->height
)
2544 ? XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
2547 img
->width
, img
->height
,
2549 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)))
2551 #endif /* !HAVE_NTGUI && !HAVE_NS */
2556 /* Replacement for XReadBitmapFileData which isn't available under old
2557 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2558 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2559 the image. Return in *DATA the bitmap data allocated with xmalloc.
2560 Value is true if successful. DATA null means just test if
2561 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR,
2562 inhibit the call to image_error when the image size is invalid (the
2563 bitmap remains unread). */
2566 xbm_read_bitmap_data (struct frame
*f
, unsigned char *contents
, unsigned char *end
,
2567 int *width
, int *height
, char **data
,
2568 bool inhibit_image_error
)
2570 unsigned char *s
= contents
;
2571 char buffer
[BUFSIZ
];
2574 int bytes_per_line
, i
, nbytes
;
2580 LA1 = xbm_scan (&s, end, buffer, &value)
2582 #define expect(TOKEN) \
2583 if (LA1 != (TOKEN)) \
2588 #define expect_ident(IDENT) \
2589 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2594 *width
= *height
= -1;
2597 LA1
= xbm_scan (&s
, end
, buffer
, &value
);
2599 /* Parse defines for width, height and hot-spots. */
2603 expect_ident ("define");
2604 expect (XBM_TK_IDENT
);
2606 if (LA1
== XBM_TK_NUMBER
)
2608 char *q
= strrchr (buffer
, '_');
2609 q
= q
? q
+ 1 : buffer
;
2610 if (strcmp (q
, "width") == 0)
2612 else if (strcmp (q
, "height") == 0)
2615 expect (XBM_TK_NUMBER
);
2618 if (!check_image_size (f
, *width
, *height
))
2620 if (!inhibit_image_error
)
2621 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
2624 else if (data
== NULL
)
2627 /* Parse bits. Must start with `static'. */
2628 expect_ident ("static");
2629 if (LA1
== XBM_TK_IDENT
)
2631 if (strcmp (buffer
, "unsigned") == 0)
2634 expect_ident ("char");
2636 else if (strcmp (buffer
, "short") == 0)
2640 if (*width
% 16 && *width
% 16 < 9)
2643 else if (strcmp (buffer
, "char") == 0)
2651 expect (XBM_TK_IDENT
);
2657 if (! x_check_image_size (0, *width
, *height
))
2659 if (!inhibit_image_error
)
2660 image_error ("Image too large (%dx%d)",
2661 make_number (*width
), make_number (*height
));
2664 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
2665 nbytes
= bytes_per_line
* *height
;
2666 p
= *data
= xmalloc (nbytes
);
2670 for (i
= 0; i
< nbytes
; i
+= 2)
2673 expect (XBM_TK_NUMBER
);
2675 *p
++ = XBM_BIT_SHUFFLE (val
);
2676 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
2677 *p
++ = XBM_BIT_SHUFFLE (value
>> 8);
2679 if (LA1
== ',' || LA1
== '}')
2687 for (i
= 0; i
< nbytes
; ++i
)
2690 expect (XBM_TK_NUMBER
);
2692 *p
++ = XBM_BIT_SHUFFLE (val
);
2694 if (LA1
== ',' || LA1
== '}')
2719 /* Load XBM image IMG which will be displayed on frame F from buffer
2720 CONTENTS. END is the end of the buffer. Value is true if
2724 xbm_load_image (struct frame
*f
, struct image
*img
, unsigned char *contents
,
2731 rc
= xbm_read_bitmap_data (f
, contents
, end
, &img
->width
, &img
->height
,
2735 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2736 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2737 bool non_default_colors
= 0;
2740 eassert (img
->width
> 0 && img
->height
> 0);
2742 /* Get foreground and background colors, maybe allocate colors. */
2743 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
2746 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
2747 non_default_colors
= 1;
2749 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
2752 background
= x_alloc_image_color (f
, img
, value
, background
);
2753 img
->background
= background
;
2754 img
->background_valid
= 1;
2755 non_default_colors
= 1;
2758 Create_Pixmap_From_Bitmap_Data (f
, img
, data
,
2759 foreground
, background
,
2760 non_default_colors
);
2763 if (img
->pixmap
== NO_PIXMAP
)
2765 x_clear_image (f
, img
);
2766 image_error ("Unable to create X pixmap for `%s'", img
->spec
, Qnil
);
2772 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2778 /* Value is true if DATA looks like an in-memory XBM file. */
2781 xbm_file_p (Lisp_Object data
)
2784 return (STRINGP (data
)
2785 && xbm_read_bitmap_data (NULL
, SDATA (data
),
2786 (SDATA (data
) + SBYTES (data
)),
2791 /* Fill image IMG which is used on frame F with pixmap data. Value is
2792 true if successful. */
2795 xbm_load (struct frame
*f
, struct image
*img
)
2798 Lisp_Object file_name
;
2800 eassert (xbm_image_p (img
->spec
));
2802 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2803 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
2804 if (STRINGP (file_name
))
2807 unsigned char *contents
;
2810 file
= x_find_image_file (file_name
);
2811 if (!STRINGP (file
))
2813 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
2817 contents
= slurp_file (SSDATA (file
), &size
);
2818 if (contents
== NULL
)
2820 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2824 success_p
= xbm_load_image (f
, img
, contents
, contents
+ size
);
2829 struct image_keyword fmt
[XBM_LAST
];
2831 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2832 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2833 bool non_default_colors
= 0;
2836 bool in_memory_file_p
= 0;
2838 /* See if data looks like an in-memory XBM file. */
2839 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
2840 in_memory_file_p
= xbm_file_p (data
);
2842 /* Parse the image specification. */
2843 memcpy (fmt
, xbm_format
, sizeof fmt
);
2844 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
2847 /* Get specified width, and height. */
2848 if (!in_memory_file_p
)
2850 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
2851 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
2852 eassert (img
->width
> 0 && img
->height
> 0);
2853 if (!check_image_size (f
, img
->width
, img
->height
))
2855 image_error ("Invalid image size (see `max-image-size')",
2861 /* Get foreground and background colors, maybe allocate colors. */
2862 if (fmt
[XBM_FOREGROUND
].count
2863 && STRINGP (fmt
[XBM_FOREGROUND
].value
))
2865 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
2867 non_default_colors
= 1;
2870 if (fmt
[XBM_BACKGROUND
].count
2871 && STRINGP (fmt
[XBM_BACKGROUND
].value
))
2873 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
2875 non_default_colors
= 1;
2878 if (in_memory_file_p
)
2879 success_p
= xbm_load_image (f
, img
, SDATA (data
),
2888 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
2890 p
= bits
= alloca (nbytes
* img
->height
);
2891 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
2893 Lisp_Object line
= AREF (data
, i
);
2895 memcpy (p
, SDATA (line
), nbytes
);
2897 memcpy (p
, XBOOL_VECTOR (line
)->data
, nbytes
);
2900 else if (STRINGP (data
))
2901 bits
= SSDATA (data
);
2903 bits
= (char *) XBOOL_VECTOR (data
)->data
;
2909 /* Windows mono bitmaps are reversed compared with X. */
2910 invertedBits
= bits
;
2911 nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
2913 bits
= alloca (nbytes
);
2914 for (i
= 0; i
< nbytes
; i
++)
2915 bits
[i
] = XBM_BIT_SHUFFLE (invertedBits
[i
]);
2918 /* Create the pixmap. */
2920 if (x_check_image_size (0, img
->width
, img
->height
))
2921 Create_Pixmap_From_Bitmap_Data (f
, img
, bits
,
2922 foreground
, background
,
2923 non_default_colors
);
2925 img
->pixmap
= NO_PIXMAP
;
2931 image_error ("Unable to create pixmap for XBM image `%s'",
2933 x_clear_image (f
, img
);
2943 /***********************************************************************
2945 ***********************************************************************/
2947 #if defined (HAVE_XPM) || defined (HAVE_NS)
2949 static bool xpm_image_p (Lisp_Object object
);
2950 static bool xpm_load (struct frame
*f
, struct image
*img
);
2952 #endif /* HAVE_XPM || HAVE_NS */
2956 /* Indicate to xpm.h that we don't have Xlib. */
2958 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
2959 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
2960 #define XColor xpm_XColor
2961 #define XImage xpm_XImage
2962 #define Display xpm_Display
2963 #define PIXEL_ALREADY_TYPEDEFED
2964 #include "X11/xpm.h"
2969 #undef PIXEL_ALREADY_TYPEDEFED
2971 #include "X11/xpm.h"
2972 #endif /* HAVE_NTGUI */
2973 #endif /* HAVE_XPM */
2975 #if defined (HAVE_XPM) || defined (HAVE_NS)
2976 /* The symbol `xpm' identifying XPM-format images. */
2978 static Lisp_Object Qxpm
;
2980 /* Indices of image specification fields in xpm_format, below. */
2982 enum xpm_keyword_index
2998 /* Vector of image_keyword structures describing the format
2999 of valid XPM image specifications. */
3001 static const struct image_keyword xpm_format
[XPM_LAST
] =
3003 {":type", IMAGE_SYMBOL_VALUE
, 1},
3004 {":file", IMAGE_STRING_VALUE
, 0},
3005 {":data", IMAGE_STRING_VALUE
, 0},
3006 {":ascent", IMAGE_ASCENT_VALUE
, 0},
3007 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
3008 {":relief", IMAGE_INTEGER_VALUE
, 0},
3009 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3010 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3011 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3012 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3013 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
3016 #if defined HAVE_NTGUI && defined WINDOWSNT
3017 static bool init_xpm_functions (void);
3019 #define init_xpm_functions NULL
3022 /* Structure describing the image type XPM. */
3024 static struct image_type xpm_type
=
3034 #ifdef HAVE_X_WINDOWS
3036 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3037 functions for allocating image colors. Our own functions handle
3038 color allocation failures more gracefully than the ones on the XPM
3041 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3042 #define ALLOC_XPM_COLORS
3044 #endif /* HAVE_X_WINDOWS */
3046 #ifdef ALLOC_XPM_COLORS
3048 static struct xpm_cached_color
*xpm_cache_color (struct frame
*, char *,
3051 /* An entry in a hash table used to cache color definitions of named
3052 colors. This cache is necessary to speed up XPM image loading in
3053 case we do color allocations ourselves. Without it, we would need
3054 a call to XParseColor per pixel in the image. */
3056 struct xpm_cached_color
3058 /* Next in collision chain. */
3059 struct xpm_cached_color
*next
;
3061 /* Color definition (RGB and pixel color). */
3068 /* The hash table used for the color cache, and its bucket vector
3071 #define XPM_COLOR_CACHE_BUCKETS 1001
3072 static struct xpm_cached_color
**xpm_color_cache
;
3074 /* Initialize the color cache. */
3077 xpm_init_color_cache (struct frame
*f
, XpmAttributes
*attrs
)
3079 size_t nbytes
= XPM_COLOR_CACHE_BUCKETS
* sizeof *xpm_color_cache
;
3080 xpm_color_cache
= xzalloc (nbytes
);
3081 init_color_table ();
3083 if (attrs
->valuemask
& XpmColorSymbols
)
3088 for (i
= 0; i
< attrs
->numsymbols
; ++i
)
3089 if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3090 attrs
->colorsymbols
[i
].value
, &color
))
3092 color
.pixel
= lookup_rgb_color (f
, color
.red
, color
.green
,
3094 xpm_cache_color (f
, attrs
->colorsymbols
[i
].name
, &color
, -1);
3099 /* Free the color cache. */
3102 xpm_free_color_cache (void)
3104 struct xpm_cached_color
*p
, *next
;
3107 for (i
= 0; i
< XPM_COLOR_CACHE_BUCKETS
; ++i
)
3108 for (p
= xpm_color_cache
[i
]; p
; p
= next
)
3114 xfree (xpm_color_cache
);
3115 xpm_color_cache
= NULL
;
3116 free_color_table ();
3119 /* Return the bucket index for color named COLOR_NAME in the color
3123 xpm_color_bucket (char *color_name
)
3125 EMACS_UINT hash
= hash_string (color_name
, strlen (color_name
));
3126 return hash
% XPM_COLOR_CACHE_BUCKETS
;
3130 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3131 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3134 static struct xpm_cached_color
*
3135 xpm_cache_color (struct frame
*f
, char *color_name
, XColor
*color
, int bucket
)
3138 struct xpm_cached_color
*p
;
3141 bucket
= xpm_color_bucket (color_name
);
3143 nbytes
= offsetof (struct xpm_cached_color
, name
) + strlen (color_name
) + 1;
3144 p
= xmalloc (nbytes
);
3145 strcpy (p
->name
, color_name
);
3147 p
->next
= xpm_color_cache
[bucket
];
3148 xpm_color_cache
[bucket
] = p
;
3152 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3153 return the cached definition in *COLOR. Otherwise, make a new
3154 entry in the cache and allocate the color. Value is false if color
3155 allocation failed. */
3158 xpm_lookup_color (struct frame
*f
, char *color_name
, XColor
*color
)
3160 struct xpm_cached_color
*p
;
3161 int h
= xpm_color_bucket (color_name
);
3163 for (p
= xpm_color_cache
[h
]; p
; p
= p
->next
)
3164 if (strcmp (p
->name
, color_name
) == 0)
3169 else if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3172 color
->pixel
= lookup_rgb_color (f
, color
->red
, color
->green
,
3174 p
= xpm_cache_color (f
, color_name
, color
, h
);
3176 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3177 with transparency, and it's useful. */
3178 else if (strcmp ("opaque", color_name
) == 0)
3180 memset (color
, 0, sizeof (XColor
)); /* Is this necessary/correct? */
3181 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
3182 p
= xpm_cache_color (f
, color_name
, color
, h
);
3189 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3190 CLOSURE is a pointer to the frame on which we allocate the
3191 color. Return in *COLOR the allocated color. Value is non-zero
3195 xpm_alloc_color (Display
*dpy
, Colormap cmap
, char *color_name
, XColor
*color
,
3198 return xpm_lookup_color ((struct frame
*) closure
, color_name
, color
);
3202 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3203 is a pointer to the frame on which we allocate the color. Value is
3204 non-zero if successful. */
3207 xpm_free_colors (Display
*dpy
, Colormap cmap
, Pixel
*pixels
, int npixels
, void *closure
)
3212 #endif /* ALLOC_XPM_COLORS */
3217 /* XPM library details. */
3219 DEF_IMGLIB_FN (void, XpmFreeAttributes
, (XpmAttributes
*));
3220 DEF_IMGLIB_FN (int, XpmCreateImageFromBuffer
, (Display
*, char *, xpm_XImage
**,
3221 xpm_XImage
**, XpmAttributes
*));
3222 DEF_IMGLIB_FN (int, XpmReadFileToImage
, (Display
*, char *, xpm_XImage
**,
3223 xpm_XImage
**, XpmAttributes
*));
3224 DEF_IMGLIB_FN (void, XImageFree
, (xpm_XImage
*));
3227 init_xpm_functions (void)
3231 if (!(library
= w32_delayed_load (Qxpm
)))
3234 LOAD_IMGLIB_FN (library
, XpmFreeAttributes
);
3235 LOAD_IMGLIB_FN (library
, XpmCreateImageFromBuffer
);
3236 LOAD_IMGLIB_FN (library
, XpmReadFileToImage
);
3237 LOAD_IMGLIB_FN (library
, XImageFree
);
3241 #endif /* WINDOWSNT */
3243 #if defined HAVE_NTGUI && !defined WINDOWSNT
3244 /* Glue for code below */
3245 #define fn_XpmReadFileToImage XpmReadFileToImage
3246 #define fn_XpmCreateImageFromBuffer XpmCreateImageFromBuffer
3247 #define fn_XImageFree XImageFree
3248 #define fn_XpmFreeAttributes XpmFreeAttributes
3249 #endif /* HAVE_NTGUI && !WINDOWSNT */
3251 /* Value is true if COLOR_SYMBOLS is a valid color symbols list
3252 for XPM images. Such a list must consist of conses whose car and
3256 xpm_valid_color_symbols_p (Lisp_Object color_symbols
)
3258 while (CONSP (color_symbols
))
3260 Lisp_Object sym
= XCAR (color_symbols
);
3262 || !STRINGP (XCAR (sym
))
3263 || !STRINGP (XCDR (sym
)))
3265 color_symbols
= XCDR (color_symbols
);
3268 return NILP (color_symbols
);
3272 /* Value is true if OBJECT is a valid XPM image specification. */
3275 xpm_image_p (Lisp_Object object
)
3277 struct image_keyword fmt
[XPM_LAST
];
3278 memcpy (fmt
, xpm_format
, sizeof fmt
);
3279 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
3280 /* Either `:file' or `:data' must be present. */
3281 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
3282 /* Either no `:color-symbols' or it's a list of conses
3283 whose car and cdr are strings. */
3284 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
3285 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
)));
3288 #endif /* HAVE_XPM || HAVE_NS */
3290 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3292 x_create_bitmap_from_xpm_data (struct frame
*f
, const char **bits
)
3294 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
3297 XpmAttributes attrs
;
3298 Pixmap bitmap
, mask
;
3300 memset (&attrs
, 0, sizeof attrs
);
3302 attrs
.visual
= FRAME_X_VISUAL (f
);
3303 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3304 attrs
.valuemask
|= XpmVisual
;
3305 attrs
.valuemask
|= XpmColormap
;
3307 rc
= XpmCreatePixmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3308 (char **) bits
, &bitmap
, &mask
, &attrs
);
3309 if (rc
!= XpmSuccess
)
3311 XpmFreeAttributes (&attrs
);
3315 id
= x_allocate_bitmap_record (f
);
3316 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
3317 dpyinfo
->bitmaps
[id
- 1].have_mask
= 1;
3318 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
3319 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
3320 dpyinfo
->bitmaps
[id
- 1].height
= attrs
.height
;
3321 dpyinfo
->bitmaps
[id
- 1].width
= attrs
.width
;
3322 dpyinfo
->bitmaps
[id
- 1].depth
= attrs
.depth
;
3323 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
3325 XpmFreeAttributes (&attrs
);
3328 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3330 /* Load image IMG which will be displayed on frame F. Value is
3331 true if successful. */
3336 xpm_load (struct frame
*f
, struct image
*img
)
3339 XpmAttributes attrs
;
3340 Lisp_Object specified_file
, color_symbols
;
3343 xpm_XImage
* xpm_image
= NULL
, * xpm_mask
= NULL
;
3344 #endif /* HAVE_NTGUI */
3346 /* Configure the XPM lib. Use the visual of frame F. Allocate
3347 close colors. Return colors allocated. */
3348 memset (&attrs
, 0, sizeof attrs
);
3351 attrs
.visual
= FRAME_X_VISUAL (f
);
3352 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3353 attrs
.valuemask
|= XpmVisual
;
3354 attrs
.valuemask
|= XpmColormap
;
3355 #endif /* HAVE_NTGUI */
3357 #ifdef ALLOC_XPM_COLORS
3358 /* Allocate colors with our own functions which handle
3359 failing color allocation more gracefully. */
3360 attrs
.color_closure
= f
;
3361 attrs
.alloc_color
= xpm_alloc_color
;
3362 attrs
.free_colors
= xpm_free_colors
;
3363 attrs
.valuemask
|= XpmAllocColor
| XpmFreeColors
| XpmColorClosure
;
3364 #else /* not ALLOC_XPM_COLORS */
3365 /* Let the XPM lib allocate colors. */
3366 attrs
.valuemask
|= XpmReturnAllocPixels
;
3367 #ifdef XpmAllocCloseColors
3368 attrs
.alloc_close_colors
= 1;
3369 attrs
.valuemask
|= XpmAllocCloseColors
;
3370 #else /* not XpmAllocCloseColors */
3371 attrs
.closeness
= 600;
3372 attrs
.valuemask
|= XpmCloseness
;
3373 #endif /* not XpmAllocCloseColors */
3374 #endif /* ALLOC_XPM_COLORS */
3376 /* If image specification contains symbolic color definitions, add
3377 these to `attrs'. */
3378 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3379 if (CONSP (color_symbols
))
3382 XpmColorSymbol
*xpm_syms
;
3385 attrs
.valuemask
|= XpmColorSymbols
;
3387 /* Count number of symbols. */
3388 attrs
.numsymbols
= 0;
3389 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
3392 /* Allocate an XpmColorSymbol array. */
3393 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
3394 xpm_syms
= alloca (size
);
3395 memset (xpm_syms
, 0, size
);
3396 attrs
.colorsymbols
= xpm_syms
;
3398 /* Fill the color symbol array. */
3399 for (tail
= color_symbols
, i
= 0;
3401 ++i
, tail
= XCDR (tail
))
3405 char *empty_string
= (char *) "";
3407 if (!CONSP (XCAR (tail
)))
3409 xpm_syms
[i
].name
= empty_string
;
3410 xpm_syms
[i
].value
= empty_string
;
3413 name
= XCAR (XCAR (tail
));
3414 color
= XCDR (XCAR (tail
));
3417 xpm_syms
[i
].name
= alloca (SCHARS (name
) + 1);
3418 strcpy (xpm_syms
[i
].name
, SSDATA (name
));
3421 xpm_syms
[i
].name
= empty_string
;
3422 if (STRINGP (color
))
3424 xpm_syms
[i
].value
= alloca (SCHARS (color
) + 1);
3425 strcpy (xpm_syms
[i
].value
, SSDATA (color
));
3428 xpm_syms
[i
].value
= empty_string
;
3432 /* Create a pixmap for the image, either from a file, or from a
3433 string buffer containing data in the same format as an XPM file. */
3434 #ifdef ALLOC_XPM_COLORS
3435 xpm_init_color_cache (f
, &attrs
);
3438 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
3442 HDC frame_dc
= get_frame_dc (f
);
3443 hdc
= CreateCompatibleDC (frame_dc
);
3444 release_frame_dc (f
, frame_dc
);
3446 #endif /* HAVE_NTGUI */
3448 if (STRINGP (specified_file
))
3450 Lisp_Object file
= x_find_image_file (specified_file
);
3451 if (!STRINGP (file
))
3453 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
3454 #ifdef ALLOC_XPM_COLORS
3455 xpm_free_color_cache ();
3461 /* XpmReadFileToPixmap is not available in the Windows port of
3462 libxpm. But XpmReadFileToImage almost does what we want. */
3463 rc
= fn_XpmReadFileToImage (&hdc
, SDATA (file
),
3464 &xpm_image
, &xpm_mask
,
3467 rc
= XpmReadFileToPixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3468 SSDATA (file
), &img
->pixmap
, &img
->mask
,
3470 #endif /* HAVE_NTGUI */
3474 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
3475 if (!STRINGP (buffer
))
3477 image_error ("Invalid image data `%s'", buffer
, Qnil
);
3478 #ifdef ALLOC_XPM_COLORS
3479 xpm_free_color_cache ();
3484 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3485 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3486 rc
= fn_XpmCreateImageFromBuffer (&hdc
, SDATA (buffer
),
3487 &xpm_image
, &xpm_mask
,
3490 rc
= XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3492 &img
->pixmap
, &img
->mask
,
3494 #endif /* HAVE_NTGUI */
3497 if (rc
== XpmSuccess
)
3499 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3500 img
->colors
= colors_in_color_table (&img
->ncolors
);
3501 #else /* not ALLOC_XPM_COLORS */
3505 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3506 plus some duplicate attributes. */
3507 if (xpm_image
&& xpm_image
->bitmap
)
3509 img
->pixmap
= xpm_image
->bitmap
;
3510 /* XImageFree in libXpm frees XImage struct without destroying
3511 the bitmap, which is what we want. */
3512 fn_XImageFree (xpm_image
);
3514 if (xpm_mask
&& xpm_mask
->bitmap
)
3516 /* The mask appears to be inverted compared with what we expect.
3517 TODO: invert our expectations. See other places where we
3518 have to invert bits because our idea of masks is backwards. */
3520 old_obj
= SelectObject (hdc
, xpm_mask
->bitmap
);
3522 PatBlt (hdc
, 0, 0, xpm_mask
->width
, xpm_mask
->height
, DSTINVERT
);
3523 SelectObject (hdc
, old_obj
);
3525 img
->mask
= xpm_mask
->bitmap
;
3526 fn_XImageFree (xpm_mask
);
3531 #endif /* HAVE_NTGUI */
3533 /* Remember allocated colors. */
3534 img
->colors
= xnmalloc (attrs
.nalloc_pixels
, sizeof *img
->colors
);
3535 img
->ncolors
= attrs
.nalloc_pixels
;
3536 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
3538 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
3539 #ifdef DEBUG_X_COLORS
3540 register_color (img
->colors
[i
]);
3543 #endif /* not ALLOC_XPM_COLORS */
3545 img
->width
= attrs
.width
;
3546 img
->height
= attrs
.height
;
3547 eassert (img
->width
> 0 && img
->height
> 0);
3549 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3551 fn_XpmFreeAttributes (&attrs
);
3553 XpmFreeAttributes (&attrs
);
3554 #endif /* HAVE_NTGUI */
3560 #endif /* HAVE_NTGUI */
3565 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
3568 case XpmFileInvalid
:
3569 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
3573 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
3576 case XpmColorFailed
:
3577 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
3581 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
3586 #ifdef ALLOC_XPM_COLORS
3587 xpm_free_color_cache ();
3589 return rc
== XpmSuccess
;
3592 #endif /* HAVE_XPM */
3594 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3596 /* XPM support functions for NS where libxpm is not available.
3597 Only XPM version 3 (without any extensions) is supported. */
3599 static void xpm_put_color_table_v (Lisp_Object
, const unsigned char *,
3601 static Lisp_Object
xpm_get_color_table_v (Lisp_Object
,
3602 const unsigned char *, int);
3603 static void xpm_put_color_table_h (Lisp_Object
, const unsigned char *,
3605 static Lisp_Object
xpm_get_color_table_h (Lisp_Object
,
3606 const unsigned char *, int);
3608 /* Tokens returned from xpm_scan. */
3617 /* Scan an XPM data and return a character (< 256) or a token defined
3618 by enum xpm_token above. *S and END are the start (inclusive) and
3619 the end (exclusive) addresses of the data, respectively. Advance
3620 *S while scanning. If token is either XPM_TK_IDENT or
3621 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3622 length of the corresponding token, respectively. */
3625 xpm_scan (const unsigned char **s
,
3626 const unsigned char *end
,
3627 const unsigned char **beg
,
3634 /* Skip white-space. */
3635 while (*s
< end
&& (c
= *(*s
)++, c_isspace (c
)))
3638 /* gnus-pointer.xpm uses '-' in its identifier.
3639 sb-dir-plus.xpm uses '+' in its identifier. */
3640 if (c_isalpha (c
) || c
== '_' || c
== '-' || c
== '+')
3644 && (c
= **s
, c_isalnum (c
)
3645 || c
== '_' || c
== '-' || c
== '+'))
3648 return XPM_TK_IDENT
;
3653 while (*s
< end
&& **s
!= '"')
3658 return XPM_TK_STRING
;
3662 if (*s
< end
&& **s
== '*')
3664 /* C-style comment. */
3668 while (*s
< end
&& *(*s
)++ != '*')
3671 while (*s
< end
&& **s
!= '/');
3685 /* Functions for color table lookup in XPM data. A key is a string
3686 specifying the color of each pixel in XPM data. A value is either
3687 an integer that specifies a pixel color, Qt that specifies
3688 transparency, or Qnil for the unspecified color. If the length of
3689 the key string is one, a vector is used as a table. Otherwise, a
3690 hash table is used. */
3693 xpm_make_color_table_v (void (**put_func
) (Lisp_Object
,
3694 const unsigned char *,
3697 Lisp_Object (**get_func
) (Lisp_Object
,
3698 const unsigned char *,
3701 *put_func
= xpm_put_color_table_v
;
3702 *get_func
= xpm_get_color_table_v
;
3703 return Fmake_vector (make_number (256), Qnil
);
3707 xpm_put_color_table_v (Lisp_Object color_table
,
3708 const unsigned char *chars_start
,
3712 ASET (color_table
, *chars_start
, color
);
3716 xpm_get_color_table_v (Lisp_Object color_table
,
3717 const unsigned char *chars_start
,
3720 return AREF (color_table
, *chars_start
);
3724 xpm_make_color_table_h (void (**put_func
) (Lisp_Object
,
3725 const unsigned char *,
3728 Lisp_Object (**get_func
) (Lisp_Object
,
3729 const unsigned char *,
3732 *put_func
= xpm_put_color_table_h
;
3733 *get_func
= xpm_get_color_table_h
;
3734 return make_hash_table (Qequal
, make_number (DEFAULT_HASH_SIZE
),
3735 make_float (DEFAULT_REHASH_SIZE
),
3736 make_float (DEFAULT_REHASH_THRESHOLD
),
3741 xpm_put_color_table_h (Lisp_Object color_table
,
3742 const unsigned char *chars_start
,
3746 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3747 EMACS_UINT hash_code
;
3748 Lisp_Object chars
= make_unibyte_string (chars_start
, chars_len
);
3750 hash_lookup (table
, chars
, &hash_code
);
3751 hash_put (table
, chars
, color
, hash_code
);
3755 xpm_get_color_table_h (Lisp_Object color_table
,
3756 const unsigned char *chars_start
,
3759 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3761 hash_lookup (table
, make_unibyte_string (chars_start
, chars_len
), NULL
);
3763 return i
>= 0 ? HASH_VALUE (table
, i
) : Qnil
;
3766 enum xpm_color_key
{
3774 static const char xpm_color_key_strings
[][4] = {"s", "m", "g4", "g", "c"};
3777 xpm_str_to_color_key (const char *s
)
3782 i
< sizeof xpm_color_key_strings
/ sizeof xpm_color_key_strings
[0];
3784 if (strcmp (xpm_color_key_strings
[i
], s
) == 0)
3790 xpm_load_image (struct frame
*f
,
3792 const unsigned char *contents
,
3793 const unsigned char *end
)
3795 const unsigned char *s
= contents
, *beg
, *str
;
3796 unsigned char buffer
[BUFSIZ
];
3797 int width
, height
, x
, y
;
3798 int num_colors
, chars_per_pixel
;
3801 void (*put_color_table
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3802 Lisp_Object (*get_color_table
) (Lisp_Object
, const unsigned char *, int);
3803 Lisp_Object frame
, color_symbols
, color_table
;
3806 XImagePtr ximg
= NULL
, mask_img
= NULL
;
3809 LA1 = xpm_scan (&s, end, &beg, &len)
3811 #define expect(TOKEN) \
3812 if (LA1 != (TOKEN)) \
3817 #define expect_ident(IDENT) \
3818 if (LA1 == XPM_TK_IDENT \
3819 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3824 if (!(end
- s
>= 9 && memcmp (s
, "/* XPM */", 9) == 0))
3828 expect_ident ("static");
3829 expect_ident ("char");
3831 expect (XPM_TK_IDENT
);
3836 expect (XPM_TK_STRING
);
3839 memcpy (buffer
, beg
, len
);
3841 if (sscanf (buffer
, "%d %d %d %d", &width
, &height
,
3842 &num_colors
, &chars_per_pixel
) != 4
3843 || width
<= 0 || height
<= 0
3844 || num_colors
<= 0 || chars_per_pixel
<= 0)
3847 if (!check_image_size (f
, width
, height
))
3849 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
3853 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
3854 &ximg
, &img
->pixmap
)
3856 || !x_create_x_image_and_pixmap (f
, width
, height
, 1,
3857 &mask_img
, &img
->mask
)
3861 image_error ("Image too large", Qnil
, Qnil
);
3867 XSETFRAME (frame
, f
);
3868 if (!NILP (Fxw_display_color_p (frame
)))
3869 best_key
= XPM_COLOR_KEY_C
;
3870 else if (!NILP (Fx_display_grayscale_p (frame
)))
3871 best_key
= (XFASTINT (Fx_display_planes (frame
)) > 2
3872 ? XPM_COLOR_KEY_G
: XPM_COLOR_KEY_G4
);
3874 best_key
= XPM_COLOR_KEY_M
;
3876 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3877 if (chars_per_pixel
== 1)
3878 color_table
= xpm_make_color_table_v (&put_color_table
,
3881 color_table
= xpm_make_color_table_h (&put_color_table
,
3884 while (num_colors
-- > 0)
3886 char *color
, *max_color
;
3887 int key
, next_key
, max_key
= 0;
3888 Lisp_Object symbol_color
= Qnil
, color_val
;
3891 expect (XPM_TK_STRING
);
3892 if (len
<= chars_per_pixel
|| len
>= BUFSIZ
+ chars_per_pixel
)
3894 memcpy (buffer
, beg
+ chars_per_pixel
, len
- chars_per_pixel
);
3895 buffer
[len
- chars_per_pixel
] = '\0';
3897 str
= strtok (buffer
, " \t");
3900 key
= xpm_str_to_color_key (str
);
3905 color
= strtok (NULL
, " \t");
3909 while ((str
= strtok (NULL
, " \t")) != NULL
)
3911 next_key
= xpm_str_to_color_key (str
);
3914 color
[strlen (color
)] = ' ';
3917 if (key
== XPM_COLOR_KEY_S
)
3919 if (NILP (symbol_color
))
3920 symbol_color
= build_string (color
);
3922 else if (max_key
< key
&& key
<= best_key
)
3932 if (!NILP (color_symbols
) && !NILP (symbol_color
))
3934 Lisp_Object specified_color
= Fassoc (symbol_color
, color_symbols
);
3936 if (CONSP (specified_color
) && STRINGP (XCDR (specified_color
)))
3938 if (xstrcasecmp (SSDATA (XCDR (specified_color
)), "None") == 0)
3940 else if (x_defined_color (f
, SSDATA (XCDR (specified_color
)),
3942 color_val
= make_number (cdef
.pixel
);
3945 if (NILP (color_val
) && max_key
> 0)
3947 if (xstrcasecmp (max_color
, "None") == 0)
3949 else if (x_defined_color (f
, max_color
, &cdef
, 0))
3950 color_val
= make_number (cdef
.pixel
);
3952 if (!NILP (color_val
))
3953 (*put_color_table
) (color_table
, beg
, chars_per_pixel
, color_val
);
3958 for (y
= 0; y
< height
; y
++)
3960 expect (XPM_TK_STRING
);
3962 if (len
< width
* chars_per_pixel
)
3964 for (x
= 0; x
< width
; x
++, str
+= chars_per_pixel
)
3966 Lisp_Object color_val
=
3967 (*get_color_table
) (color_table
, str
, chars_per_pixel
);
3969 XPutPixel (ximg
, x
, y
,
3970 (INTEGERP (color_val
) ? XINT (color_val
)
3971 : FRAME_FOREGROUND_PIXEL (f
)));
3973 XPutPixel (mask_img
, x
, y
,
3974 (!EQ (color_val
, Qt
) ? PIX_MASK_DRAW
3975 : (have_mask
= 1, PIX_MASK_RETAIN
)));
3977 if (EQ (color_val
, Qt
))
3978 ns_set_alpha (ximg
, x
, y
, 0);
3986 img
->height
= height
;
3988 /* Maybe fill in the background field while we have ximg handy. */
3989 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
3990 IMAGE_BACKGROUND (img
, f
, ximg
);
3992 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
3993 x_destroy_x_image (ximg
);
3997 /* Fill in the background_transparent field while we have the
3999 image_background_transparent (img
, f
, mask_img
);
4001 x_put_x_image (f
, mask_img
, img
->mask
, width
, height
);
4002 x_destroy_x_image (mask_img
);
4006 x_destroy_x_image (mask_img
);
4007 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4008 img
->mask
= NO_PIXMAP
;
4014 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
4015 x_destroy_x_image (ximg
);
4016 x_destroy_x_image (mask_img
);
4017 x_clear_image (f
, img
);
4026 xpm_load (struct frame
*f
,
4030 Lisp_Object file_name
;
4032 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4033 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
4034 if (STRINGP (file_name
))
4037 unsigned char *contents
;
4040 file
= x_find_image_file (file_name
);
4041 if (!STRINGP (file
))
4043 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
4047 contents
= slurp_file (SSDATA (file
), &size
);
4048 if (contents
== NULL
)
4050 image_error ("Error loading XPM image `%s'", img
->spec
, Qnil
);
4054 success_p
= xpm_load_image (f
, img
, contents
, contents
+ size
);
4061 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
4062 if (!STRINGP (data
))
4064 image_error ("Invalid image data `%s'", data
, Qnil
);
4067 success_p
= xpm_load_image (f
, img
, SDATA (data
),
4068 SDATA (data
) + SBYTES (data
));
4074 #endif /* HAVE_NS && !HAVE_XPM */
4078 /***********************************************************************
4080 ***********************************************************************/
4082 #ifdef COLOR_TABLE_SUPPORT
4084 /* An entry in the color table mapping an RGB color to a pixel color. */
4089 unsigned long pixel
;
4091 /* Next in color table collision list. */
4092 struct ct_color
*next
;
4095 /* The bucket vector size to use. Must be prime. */
4099 /* Value is a hash of the RGB color given by R, G, and B. */
4101 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4103 /* The color hash table. */
4105 static struct ct_color
**ct_table
;
4107 /* Number of entries in the color table. */
4109 static int ct_colors_allocated
;
4112 ct_colors_allocated_max
=
4114 min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof (unsigned long))
4117 /* Initialize the color table. */
4120 init_color_table (void)
4122 int size
= CT_SIZE
* sizeof (*ct_table
);
4123 ct_table
= xzalloc (size
);
4124 ct_colors_allocated
= 0;
4128 /* Free memory associated with the color table. */
4131 free_color_table (void)
4134 struct ct_color
*p
, *next
;
4136 for (i
= 0; i
< CT_SIZE
; ++i
)
4137 for (p
= ct_table
[i
]; p
; p
= next
)
4148 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4149 entry for that color already is in the color table, return the
4150 pixel color of that entry. Otherwise, allocate a new color for R,
4151 G, B, and make an entry in the color table. */
4153 static unsigned long
4154 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4156 unsigned hash
= CT_HASH_RGB (r
, g
, b
);
4157 int i
= hash
% CT_SIZE
;
4159 Display_Info
*dpyinfo
;
4161 /* Handle TrueColor visuals specially, which improves performance by
4162 two orders of magnitude. Freeing colors on TrueColor visuals is
4163 a nop, and pixel colors specify RGB values directly. See also
4164 the Xlib spec, chapter 3.1. */
4165 dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4166 if (dpyinfo
->red_bits
> 0)
4168 unsigned long pr
, pg
, pb
;
4170 /* Apply gamma-correction like normal color allocation does. */
4174 color
.red
= r
, color
.green
= g
, color
.blue
= b
;
4175 gamma_correct (f
, &color
);
4176 r
= color
.red
, g
= color
.green
, b
= color
.blue
;
4179 /* Scale down RGB values to the visual's bits per RGB, and shift
4180 them to the right position in the pixel color. Note that the
4181 original RGB values are 16-bit values, as usual in X. */
4182 pr
= (r
>> (16 - dpyinfo
->red_bits
)) << dpyinfo
->red_offset
;
4183 pg
= (g
>> (16 - dpyinfo
->green_bits
)) << dpyinfo
->green_offset
;
4184 pb
= (b
>> (16 - dpyinfo
->blue_bits
)) << dpyinfo
->blue_offset
;
4186 /* Assemble the pixel color. */
4187 return pr
| pg
| pb
;
4190 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4191 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
4197 #ifdef HAVE_X_WINDOWS
4205 if (ct_colors_allocated_max
<= ct_colors_allocated
)
4206 return FRAME_FOREGROUND_PIXEL (f
);
4208 #ifdef HAVE_X_WINDOWS
4213 cmap
= FRAME_X_COLORMAP (f
);
4214 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4217 ++ct_colors_allocated
;
4218 p
= xmalloc (sizeof *p
);
4222 p
->pixel
= color
.pixel
;
4223 p
->next
= ct_table
[i
];
4227 return FRAME_FOREGROUND_PIXEL (f
);
4231 color
= PALETTERGB (r
, g
, b
);
4233 color
= RGB_TO_ULONG (r
, g
, b
);
4234 #endif /* HAVE_NTGUI */
4235 ++ct_colors_allocated
;
4236 p
= xmalloc (sizeof *p
);
4241 p
->next
= ct_table
[i
];
4243 #endif /* HAVE_X_WINDOWS */
4251 /* Look up pixel color PIXEL which is used on frame F in the color
4252 table. If not already present, allocate it. Value is PIXEL. */
4254 static unsigned long
4255 lookup_pixel_color (struct frame
*f
, unsigned long pixel
)
4257 int i
= pixel
% CT_SIZE
;
4260 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4261 if (p
->pixel
== pixel
)
4270 if (ct_colors_allocated_max
<= ct_colors_allocated
)
4271 return FRAME_FOREGROUND_PIXEL (f
);
4273 #ifdef HAVE_X_WINDOWS
4274 cmap
= FRAME_X_COLORMAP (f
);
4275 color
.pixel
= pixel
;
4276 x_query_color (f
, &color
);
4277 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4280 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
4281 color
.pixel
= pixel
;
4282 XQueryColor (NULL
, cmap
, &color
);
4283 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4285 #endif /* HAVE_X_WINDOWS */
4289 ++ct_colors_allocated
;
4291 p
= xmalloc (sizeof *p
);
4296 p
->next
= ct_table
[i
];
4300 return FRAME_FOREGROUND_PIXEL (f
);
4306 /* Value is a vector of all pixel colors contained in the color table,
4307 allocated via xmalloc. Set *N to the number of colors. */
4309 static unsigned long *
4310 colors_in_color_table (int *n
)
4314 unsigned long *colors
;
4316 if (ct_colors_allocated
== 0)
4323 colors
= xmalloc (ct_colors_allocated
* sizeof *colors
);
4324 *n
= ct_colors_allocated
;
4326 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
4327 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4328 colors
[j
++] = p
->pixel
;
4334 #else /* COLOR_TABLE_SUPPORT */
4336 static unsigned long
4337 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4339 unsigned long pixel
;
4342 pixel
= PALETTERGB (r
>> 8, g
>> 8, b
>> 8);
4343 #endif /* HAVE_NTGUI */
4346 pixel
= RGB_TO_ULONG (r
>> 8, g
>> 8, b
>> 8);
4347 #endif /* HAVE_NS */
4352 init_color_table (void)
4355 #endif /* COLOR_TABLE_SUPPORT */
4358 /***********************************************************************
4360 ***********************************************************************/
4362 /* Edge detection matrices for different edge-detection
4365 static int emboss_matrix
[9] = {
4367 2, -1, 0, /* y - 1 */
4369 0, 1, -2 /* y + 1 */
4372 static int laplace_matrix
[9] = {
4374 1, 0, 0, /* y - 1 */
4376 0, 0, -1 /* y + 1 */
4379 /* Value is the intensity of the color whose red/green/blue values
4382 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4385 /* On frame F, return an array of XColor structures describing image
4386 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4387 means also fill the red/green/blue members of the XColor
4388 structures. Value is a pointer to the array of XColors structures,
4389 allocated with xmalloc; it must be freed by the caller. */
4392 x_to_xcolors (struct frame
*f
, struct image
*img
, bool rgb_p
)
4396 XImagePtr_or_DC ximg
;
4400 #endif /* HAVE_NTGUI */
4402 if (min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *colors
/ img
->width
< img
->height
)
4403 memory_full (SIZE_MAX
);
4404 colors
= xmalloc (sizeof *colors
* img
->width
* img
->height
);
4407 /* Get the X image IMG->pixmap. */
4408 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
4409 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
4411 /* Load the image into a memory device context. */
4412 hdc
= get_frame_dc (f
);
4413 ximg
= CreateCompatibleDC (hdc
);
4414 release_frame_dc (f
, hdc
);
4415 prev
= SelectObject (ximg
, img
->pixmap
);
4416 #endif /* HAVE_NTGUI */
4418 /* Fill the `pixel' members of the XColor array. I wished there
4419 were an easy and portable way to circumvent XGetPixel. */
4421 for (y
= 0; y
< img
->height
; ++y
)
4423 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4425 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4426 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4428 x_query_colors (f
, row
, img
->width
);
4432 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4434 /* W32_TODO: palette support needed here? */
4435 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4438 p
->red
= RED16_FROM_ULONG (p
->pixel
);
4439 p
->green
= GREEN16_FROM_ULONG (p
->pixel
);
4440 p
->blue
= BLUE16_FROM_ULONG (p
->pixel
);
4443 #endif /* HAVE_X_WINDOWS */
4446 Destroy_Image (ximg
, prev
);
4453 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4454 created with CreateDIBSection, with the pointer to the bit values
4455 stored in ximg->data. */
4458 XPutPixel (XImagePtr ximg
, int x
, int y
, COLORREF color
)
4460 int width
= ximg
->info
.bmiHeader
.biWidth
;
4461 unsigned char * pixel
;
4463 /* True color images. */
4464 if (ximg
->info
.bmiHeader
.biBitCount
== 24)
4466 int rowbytes
= width
* 3;
4467 /* Ensure scanlines are aligned on 4 byte boundaries. */
4469 rowbytes
+= 4 - (rowbytes
% 4);
4471 pixel
= ximg
->data
+ y
* rowbytes
+ x
* 3;
4472 /* Windows bitmaps are in BGR order. */
4473 *pixel
= GetBValue (color
);
4474 *(pixel
+ 1) = GetGValue (color
);
4475 *(pixel
+ 2) = GetRValue (color
);
4477 /* Monochrome images. */
4478 else if (ximg
->info
.bmiHeader
.biBitCount
== 1)
4480 int rowbytes
= width
/ 8;
4481 /* Ensure scanlines are aligned on 4 byte boundaries. */
4483 rowbytes
+= 4 - (rowbytes
% 4);
4484 pixel
= ximg
->data
+ y
* rowbytes
+ x
/ 8;
4485 /* Filter out palette info. */
4486 if (color
& 0x00ffffff)
4487 *pixel
= *pixel
| (1 << x
% 8);
4489 *pixel
= *pixel
& ~(1 << x
% 8);
4492 image_error ("XPutPixel: palette image not supported", Qnil
, Qnil
);
4495 #endif /* HAVE_NTGUI */
4497 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4498 RGB members are set. F is the frame on which this all happens.
4499 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4502 x_from_xcolors (struct frame
*f
, struct image
*img
, XColor
*colors
)
4505 XImagePtr oimg
= NULL
;
4509 init_color_table ();
4511 x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 0,
4514 for (y
= 0; y
< img
->height
; ++y
)
4515 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4517 unsigned long pixel
;
4518 pixel
= lookup_rgb_color (f
, p
->red
, p
->green
, p
->blue
);
4519 XPutPixel (oimg
, x
, y
, pixel
);
4523 x_clear_image_1 (f
, img
, 1, 0, 1);
4525 x_put_x_image (f
, oimg
, pixmap
, img
->width
, img
->height
);
4526 x_destroy_x_image (oimg
);
4527 img
->pixmap
= pixmap
;
4528 #ifdef COLOR_TABLE_SUPPORT
4529 img
->colors
= colors_in_color_table (&img
->ncolors
);
4530 free_color_table ();
4531 #endif /* COLOR_TABLE_SUPPORT */
4535 /* On frame F, perform edge-detection on image IMG.
4537 MATRIX is a nine-element array specifying the transformation
4538 matrix. See emboss_matrix for an example.
4540 COLOR_ADJUST is a color adjustment added to each pixel of the
4544 x_detect_edges (struct frame
*f
, struct image
*img
, int *matrix
, int color_adjust
)
4546 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4550 for (i
= sum
= 0; i
< 9; ++i
)
4551 sum
+= eabs (matrix
[i
]);
4553 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4555 if (min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *new / img
->width
< img
->height
)
4556 memory_full (SIZE_MAX
);
4557 new = xmalloc (sizeof *new * img
->width
* img
->height
);
4559 for (y
= 0; y
< img
->height
; ++y
)
4561 p
= COLOR (new, 0, y
);
4562 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4563 p
= COLOR (new, img
->width
- 1, y
);
4564 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4567 for (x
= 1; x
< img
->width
- 1; ++x
)
4569 p
= COLOR (new, x
, 0);
4570 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4571 p
= COLOR (new, x
, img
->height
- 1);
4572 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4575 for (y
= 1; y
< img
->height
- 1; ++y
)
4577 p
= COLOR (new, 1, y
);
4579 for (x
= 1; x
< img
->width
- 1; ++x
, ++p
)
4581 int r
, g
, b
, yy
, xx
;
4584 for (yy
= y
- 1; yy
< y
+ 2; ++yy
)
4585 for (xx
= x
- 1; xx
< x
+ 2; ++xx
, ++i
)
4588 XColor
*t
= COLOR (colors
, xx
, yy
);
4589 r
+= matrix
[i
] * t
->red
;
4590 g
+= matrix
[i
] * t
->green
;
4591 b
+= matrix
[i
] * t
->blue
;
4594 r
= (r
/ sum
+ color_adjust
) & 0xffff;
4595 g
= (g
/ sum
+ color_adjust
) & 0xffff;
4596 b
= (b
/ sum
+ color_adjust
) & 0xffff;
4597 p
->red
= p
->green
= p
->blue
= COLOR_INTENSITY (r
, g
, b
);
4602 x_from_xcolors (f
, img
, new);
4608 /* Perform the pre-defined `emboss' edge-detection on image IMG
4612 x_emboss (struct frame
*f
, struct image
*img
)
4614 x_detect_edges (f
, img
, emboss_matrix
, 0xffff / 2);
4618 /* Transform image IMG which is used on frame F with a Laplace
4619 edge-detection algorithm. The result is an image that can be used
4620 to draw disabled buttons, for example. */
4623 x_laplace (struct frame
*f
, struct image
*img
)
4625 x_detect_edges (f
, img
, laplace_matrix
, 45000);
4629 /* Perform edge-detection on image IMG on frame F, with specified
4630 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4632 MATRIX must be either
4634 - a list of at least 9 numbers in row-major form
4635 - a vector of at least 9 numbers
4637 COLOR_ADJUST nil means use a default; otherwise it must be a
4641 x_edge_detection (struct frame
*f
, struct image
*img
, Lisp_Object matrix
,
4642 Lisp_Object color_adjust
)
4650 i
< 9 && CONSP (matrix
) && NUMBERP (XCAR (matrix
));
4651 ++i
, matrix
= XCDR (matrix
))
4652 trans
[i
] = XFLOATINT (XCAR (matrix
));
4654 else if (VECTORP (matrix
) && ASIZE (matrix
) >= 9)
4656 for (i
= 0; i
< 9 && NUMBERP (AREF (matrix
, i
)); ++i
)
4657 trans
[i
] = XFLOATINT (AREF (matrix
, i
));
4660 if (NILP (color_adjust
))
4661 color_adjust
= make_number (0xffff / 2);
4663 if (i
== 9 && NUMBERP (color_adjust
))
4664 x_detect_edges (f
, img
, trans
, XFLOATINT (color_adjust
));
4668 /* Transform image IMG on frame F so that it looks disabled. */
4671 x_disable_image (struct frame
*f
, struct image
*img
)
4673 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
4675 int n_planes
= dpyinfo
->n_planes
* dpyinfo
->n_cbits
;
4677 int n_planes
= dpyinfo
->n_planes
;
4678 #endif /* HAVE_NTGUI */
4682 /* Color (or grayscale). Convert to gray, and equalize. Just
4683 drawing such images with a stipple can look very odd, so
4684 we're using this method instead. */
4685 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4687 const int h
= 15000;
4688 const int l
= 30000;
4690 for (p
= colors
, end
= colors
+ img
->width
* img
->height
;
4694 int i
= COLOR_INTENSITY (p
->red
, p
->green
, p
->blue
);
4695 int i2
= (0xffff - h
- l
) * i
/ 0xffff + l
;
4696 p
->red
= p
->green
= p
->blue
= i2
;
4699 x_from_xcolors (f
, img
, colors
);
4702 /* Draw a cross over the disabled image, if we must or if we
4704 if (n_planes
< 2 || cross_disabled_images
)
4707 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4709 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4711 Display
*dpy
= FRAME_X_DISPLAY (f
);
4712 GC gc
= XCreateGC (dpy
, img
->pixmap
, 0, NULL
);
4713 XSetForeground (dpy
, gc
, BLACK_PIX_DEFAULT (f
));
4714 XDrawLine (dpy
, img
->pixmap
, gc
, 0, 0,
4715 img
->width
- 1, img
->height
- 1);
4716 XDrawLine (dpy
, img
->pixmap
, gc
, 0, img
->height
- 1,
4722 gc
= XCreateGC (dpy
, img
->mask
, 0, NULL
);
4723 XSetForeground (dpy
, gc
, MaskForeground (f
));
4724 XDrawLine (dpy
, img
->mask
, gc
, 0, 0,
4725 img
->width
- 1, img
->height
- 1);
4726 XDrawLine (dpy
, img
->mask
, gc
, 0, img
->height
- 1,
4730 #endif /* !HAVE_NS */
4735 hdc
= get_frame_dc (f
);
4736 bmpdc
= CreateCompatibleDC (hdc
);
4737 release_frame_dc (f
, hdc
);
4739 prev
= SelectObject (bmpdc
, img
->pixmap
);
4741 SetTextColor (bmpdc
, BLACK_PIX_DEFAULT (f
));
4742 MoveToEx (bmpdc
, 0, 0, NULL
);
4743 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4744 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4745 LineTo (bmpdc
, img
->width
- 1, 0);
4749 SelectObject (bmpdc
, img
->mask
);
4750 SetTextColor (bmpdc
, WHITE_PIX_DEFAULT (f
));
4751 MoveToEx (bmpdc
, 0, 0, NULL
);
4752 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4753 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4754 LineTo (bmpdc
, img
->width
- 1, 0);
4756 SelectObject (bmpdc
, prev
);
4758 #endif /* HAVE_NTGUI */
4763 /* Build a mask for image IMG which is used on frame F. FILE is the
4764 name of an image file, for error messages. HOW determines how to
4765 determine the background color of IMG. If it is a list '(R G B)',
4766 with R, G, and B being integers >= 0, take that as the color of the
4767 background. Otherwise, determine the background color of IMG
4771 x_build_heuristic_mask (struct frame
*f
, struct image
*img
, Lisp_Object how
)
4773 XImagePtr_or_DC ximg
;
4781 #endif /* HAVE_NTGUI */
4783 bool rc
, use_img_background
;
4784 unsigned long bg
= 0;
4788 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
4789 img
->mask
= NO_PIXMAP
;
4790 img
->background_transparent_valid
= 0;
4795 /* Create an image and pixmap serving as mask. */
4796 rc
= x_create_x_image_and_pixmap (f
, img
->width
, img
->height
, 1,
4797 &mask_img
, &img
->mask
);
4800 #endif /* !HAVE_NS */
4802 /* Get the X image of IMG->pixmap. */
4803 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
, 0, 0,
4804 img
->width
, img
->height
,
4807 /* Create the bit array serving as mask. */
4808 row_width
= (img
->width
+ 7) / 8;
4809 mask_img
= xzalloc (row_width
* img
->height
);
4811 /* Create a memory device context for IMG->pixmap. */
4812 frame_dc
= get_frame_dc (f
);
4813 ximg
= CreateCompatibleDC (frame_dc
);
4814 release_frame_dc (f
, frame_dc
);
4815 prev
= SelectObject (ximg
, img
->pixmap
);
4816 #endif /* HAVE_NTGUI */
4818 /* Determine the background color of ximg. If HOW is `(R G B)'
4819 take that as color. Otherwise, use the image's background color. */
4820 use_img_background
= 1;
4826 for (i
= 0; i
< 3 && CONSP (how
) && NATNUMP (XCAR (how
)); ++i
)
4828 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
4832 if (i
== 3 && NILP (how
))
4834 char color_name
[30];
4835 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
4838 0x00ffffff & /* Filter out palette info. */
4839 #endif /* HAVE_NTGUI */
4840 x_alloc_image_color (f
, img
, build_string (color_name
), 0));
4841 use_img_background
= 0;
4845 if (use_img_background
)
4846 bg
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
4848 /* Set all bits in mask_img to 1 whose color in ximg is different
4849 from the background color bg. */
4851 for (y
= 0; y
< img
->height
; ++y
)
4852 for (x
= 0; x
< img
->width
; ++x
)
4854 XPutPixel (mask_img
, x
, y
, (XGetPixel (ximg
, x
, y
) != bg
4855 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
));
4857 if (XGetPixel (ximg
, x
, y
) == bg
)
4858 ns_set_alpha (ximg
, x
, y
, 0);
4859 #endif /* HAVE_NS */
4861 /* Fill in the background_transparent field while we have the mask handy. */
4862 image_background_transparent (img
, f
, mask_img
);
4864 /* Put mask_img into img->mask. */
4865 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
4866 x_destroy_x_image (mask_img
);
4867 #endif /* !HAVE_NS */
4869 for (y
= 0; y
< img
->height
; ++y
)
4870 for (x
= 0; x
< img
->width
; ++x
)
4872 COLORREF p
= GetPixel (ximg
, x
, y
);
4874 mask_img
[y
* row_width
+ x
/ 8] |= 1 << (x
% 8);
4877 /* Create the mask image. */
4878 img
->mask
= w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
,
4880 /* Fill in the background_transparent field while we have the mask handy. */
4881 SelectObject (ximg
, img
->mask
);
4882 image_background_transparent (img
, f
, ximg
);
4884 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
4886 #endif /* HAVE_NTGUI */
4888 Destroy_Image (ximg
, prev
);
4892 /***********************************************************************
4893 PBM (mono, gray, color)
4894 ***********************************************************************/
4896 static bool pbm_image_p (Lisp_Object object
);
4897 static bool pbm_load (struct frame
*f
, struct image
*img
);
4899 /* The symbol `pbm' identifying images of this type. */
4901 static Lisp_Object Qpbm
;
4903 /* Indices of image specification fields in gs_format, below. */
4905 enum pbm_keyword_index
4921 /* Vector of image_keyword structures describing the format
4922 of valid user-defined image specifications. */
4924 static const struct image_keyword pbm_format
[PBM_LAST
] =
4926 {":type", IMAGE_SYMBOL_VALUE
, 1},
4927 {":file", IMAGE_STRING_VALUE
, 0},
4928 {":data", IMAGE_STRING_VALUE
, 0},
4929 {":ascent", IMAGE_ASCENT_VALUE
, 0},
4930 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
4931 {":relief", IMAGE_INTEGER_VALUE
, 0},
4932 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4933 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4934 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
4935 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
4936 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
4939 /* Structure describing the image type `pbm'. */
4941 static struct image_type pbm_type
=
4952 /* Return true if OBJECT is a valid PBM image specification. */
4955 pbm_image_p (Lisp_Object object
)
4957 struct image_keyword fmt
[PBM_LAST
];
4959 memcpy (fmt
, pbm_format
, sizeof fmt
);
4961 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
))
4964 /* Must specify either :data or :file. */
4965 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
4969 /* Scan a decimal number from *S and return it. Advance *S while
4970 reading the number. END is the end of the string. Value is -1 at
4974 pbm_scan_number (unsigned char **s
, unsigned char *end
)
4976 int c
= 0, val
= -1;
4980 /* Skip white-space. */
4981 while (*s
< end
&& (c
= *(*s
)++, c_isspace (c
)))
4986 /* Skip comment to end of line. */
4987 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n'))
4990 else if (c_isdigit (c
))
4992 /* Read decimal number. */
4994 while (*s
< end
&& (c
= *(*s
)++, c_isdigit (c
)))
4995 val
= 10 * val
+ c
- '0';
5006 /* Load PBM image IMG for use on frame F. */
5009 pbm_load (struct frame
*f
, struct image
*img
)
5013 int width
, height
, max_color_idx
= 0;
5015 Lisp_Object file
, specified_file
;
5016 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
5017 unsigned char *contents
= NULL
;
5018 unsigned char *end
, *p
;
5021 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5023 if (STRINGP (specified_file
))
5025 file
= x_find_image_file (specified_file
);
5026 if (!STRINGP (file
))
5028 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5032 contents
= slurp_file (SSDATA (file
), &size
);
5033 if (contents
== NULL
)
5035 image_error ("Error reading `%s'", file
, Qnil
);
5040 end
= contents
+ size
;
5045 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5046 if (!STRINGP (data
))
5048 image_error ("Invalid image data `%s'", data
, Qnil
);
5052 end
= p
+ SBYTES (data
);
5055 /* Check magic number. */
5056 if (end
- p
< 2 || *p
++ != 'P')
5058 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5067 raw_p
= 0, type
= PBM_MONO
;
5071 raw_p
= 0, type
= PBM_GRAY
;
5075 raw_p
= 0, type
= PBM_COLOR
;
5079 raw_p
= 1, type
= PBM_MONO
;
5083 raw_p
= 1, type
= PBM_GRAY
;
5087 raw_p
= 1, type
= PBM_COLOR
;
5091 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5095 /* Read width, height, maximum color-component. Characters
5096 starting with `#' up to the end of a line are ignored. */
5097 width
= pbm_scan_number (&p
, end
);
5098 height
= pbm_scan_number (&p
, end
);
5100 if (type
!= PBM_MONO
)
5102 max_color_idx
= pbm_scan_number (&p
, end
);
5103 if (max_color_idx
> 65535 || max_color_idx
< 0)
5105 image_error ("Unsupported maximum PBM color value", Qnil
, Qnil
);
5110 if (!check_image_size (f
, width
, height
))
5112 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5116 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
5117 &ximg
, &img
->pixmap
))
5120 /* Initialize the color hash table. */
5121 init_color_table ();
5123 if (type
== PBM_MONO
)
5126 struct image_keyword fmt
[PBM_LAST
];
5127 unsigned long fg
= FRAME_FOREGROUND_PIXEL (f
);
5128 unsigned long bg
= FRAME_BACKGROUND_PIXEL (f
);
5130 /* Parse the image specification. */
5131 memcpy (fmt
, pbm_format
, sizeof fmt
);
5132 parse_image_spec (img
->spec
, fmt
, PBM_LAST
, Qpbm
);
5134 /* Get foreground and background colors, maybe allocate colors. */
5135 if (fmt
[PBM_FOREGROUND
].count
5136 && STRINGP (fmt
[PBM_FOREGROUND
].value
))
5137 fg
= x_alloc_image_color (f
, img
, fmt
[PBM_FOREGROUND
].value
, fg
);
5138 if (fmt
[PBM_BACKGROUND
].count
5139 && STRINGP (fmt
[PBM_BACKGROUND
].value
))
5141 bg
= x_alloc_image_color (f
, img
, fmt
[PBM_BACKGROUND
].value
, bg
);
5142 img
->background
= bg
;
5143 img
->background_valid
= 1;
5146 for (y
= 0; y
< height
; ++y
)
5147 for (x
= 0; x
< width
; ++x
)
5155 x_destroy_x_image (ximg
);
5156 x_clear_image (f
, img
);
5157 image_error ("Invalid image size in image `%s'",
5167 g
= pbm_scan_number (&p
, end
);
5169 XPutPixel (ximg
, x
, y
, g
? fg
: bg
);
5174 int expected_size
= height
* width
;
5175 if (max_color_idx
> 255)
5177 if (type
== PBM_COLOR
)
5180 if (raw_p
&& p
+ expected_size
> end
)
5182 x_destroy_x_image (ximg
);
5183 x_clear_image (f
, img
);
5184 image_error ("Invalid image size in image `%s'",
5189 for (y
= 0; y
< height
; ++y
)
5190 for (x
= 0; x
< width
; ++x
)
5194 if (type
== PBM_GRAY
&& raw_p
)
5197 if (max_color_idx
> 255)
5198 r
= g
= b
= r
* 256 + *p
++;
5200 else if (type
== PBM_GRAY
)
5201 r
= g
= b
= pbm_scan_number (&p
, end
);
5205 if (max_color_idx
> 255)
5208 if (max_color_idx
> 255)
5211 if (max_color_idx
> 255)
5216 r
= pbm_scan_number (&p
, end
);
5217 g
= pbm_scan_number (&p
, end
);
5218 b
= pbm_scan_number (&p
, end
);
5221 if (r
< 0 || g
< 0 || b
< 0)
5223 x_destroy_x_image (ximg
);
5224 image_error ("Invalid pixel value in image `%s'",
5229 /* RGB values are now in the range 0..max_color_idx.
5230 Scale this to the range 0..0xffff supported by X. */
5231 r
= (double) r
* 65535 / max_color_idx
;
5232 g
= (double) g
* 65535 / max_color_idx
;
5233 b
= (double) b
* 65535 / max_color_idx
;
5234 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5238 #ifdef COLOR_TABLE_SUPPORT
5239 /* Store in IMG->colors the colors allocated for the image, and
5240 free the color table. */
5241 img
->colors
= colors_in_color_table (&img
->ncolors
);
5242 free_color_table ();
5243 #endif /* COLOR_TABLE_SUPPORT */
5246 img
->height
= height
;
5248 /* Maybe fill in the background field while we have ximg handy. */
5250 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5251 /* Casting avoids a GCC warning. */
5252 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5254 /* Put the image into a pixmap. */
5255 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
5256 x_destroy_x_image (ximg
);
5258 /* X and W32 versions did it here, MAC version above. ++kfs
5260 img->height = height; */
5267 /***********************************************************************
5269 ***********************************************************************/
5271 #if defined (HAVE_PNG) || defined (HAVE_NS)
5273 /* Function prototypes. */
5275 static bool png_image_p (Lisp_Object object
);
5276 static bool png_load (struct frame
*f
, struct image
*img
);
5278 /* The symbol `png' identifying images of this type. */
5280 static Lisp_Object Qpng
;
5282 /* Indices of image specification fields in png_format, below. */
5284 enum png_keyword_index
5299 /* Vector of image_keyword structures describing the format
5300 of valid user-defined image specifications. */
5302 static const struct image_keyword png_format
[PNG_LAST
] =
5304 {":type", IMAGE_SYMBOL_VALUE
, 1},
5305 {":data", IMAGE_STRING_VALUE
, 0},
5306 {":file", IMAGE_STRING_VALUE
, 0},
5307 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5308 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
5309 {":relief", IMAGE_INTEGER_VALUE
, 0},
5310 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5311 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5312 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5313 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5316 #if defined HAVE_NTGUI && defined WINDOWSNT
5317 static bool init_png_functions (void);
5319 #define init_png_functions NULL
5322 /* Structure describing the image type `png'. */
5324 static struct image_type png_type
=
5334 /* Return true if OBJECT is a valid PNG image specification. */
5337 png_image_p (Lisp_Object object
)
5339 struct image_keyword fmt
[PNG_LAST
];
5340 memcpy (fmt
, png_format
, sizeof fmt
);
5342 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
))
5345 /* Must specify either the :data or :file keyword. */
5346 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
5349 #endif /* HAVE_PNG || HAVE_NS */
5355 /* PNG library details. */
5357 DEF_IMGLIB_FN (png_voidp
, png_get_io_ptr
, (png_structp
));
5358 DEF_IMGLIB_FN (int, png_sig_cmp
, (png_bytep
, png_size_t
, png_size_t
));
5359 DEF_IMGLIB_FN (png_structp
, png_create_read_struct
, (png_const_charp
, png_voidp
,
5360 png_error_ptr
, png_error_ptr
));
5361 DEF_IMGLIB_FN (png_infop
, png_create_info_struct
, (png_structp
));
5362 DEF_IMGLIB_FN (void, png_destroy_read_struct
, (png_structpp
, png_infopp
, png_infopp
));
5363 DEF_IMGLIB_FN (void, png_set_read_fn
, (png_structp
, png_voidp
, png_rw_ptr
));
5364 DEF_IMGLIB_FN (void, png_set_sig_bytes
, (png_structp
, int));
5365 DEF_IMGLIB_FN (void, png_read_info
, (png_structp
, png_infop
));
5366 DEF_IMGLIB_FN (png_uint_32
, png_get_IHDR
, (png_structp
, png_infop
,
5367 png_uint_32
*, png_uint_32
*,
5368 int *, int *, int *, int *, int *));
5369 DEF_IMGLIB_FN (png_uint_32
, png_get_valid
, (png_structp
, png_infop
, png_uint_32
));
5370 DEF_IMGLIB_FN (void, png_set_strip_16
, (png_structp
));
5371 DEF_IMGLIB_FN (void, png_set_expand
, (png_structp
));
5372 DEF_IMGLIB_FN (void, png_set_gray_to_rgb
, (png_structp
));
5373 DEF_IMGLIB_FN (void, png_set_background
, (png_structp
, png_color_16p
,
5375 DEF_IMGLIB_FN (png_uint_32
, png_get_bKGD
, (png_structp
, png_infop
, png_color_16p
*));
5376 DEF_IMGLIB_FN (void, png_read_update_info
, (png_structp
, png_infop
));
5377 DEF_IMGLIB_FN (png_byte
, png_get_channels
, (png_structp
, png_infop
));
5378 DEF_IMGLIB_FN (png_size_t
, png_get_rowbytes
, (png_structp
, png_infop
));
5379 DEF_IMGLIB_FN (void, png_read_image
, (png_structp
, png_bytepp
));
5380 DEF_IMGLIB_FN (void, png_read_end
, (png_structp
, png_infop
));
5381 DEF_IMGLIB_FN (void, png_error
, (png_structp
, png_const_charp
));
5383 #if (PNG_LIBPNG_VER >= 10500)
5384 DEF_IMGLIB_FN (void, png_longjmp
, (png_structp
, int));
5385 DEF_IMGLIB_FN (jmp_buf *, png_set_longjmp_fn
, (png_structp
, png_longjmp_ptr
, size_t));
5386 #endif /* libpng version >= 1.5 */
5389 init_png_functions (void)
5393 if (!(library
= w32_delayed_load (Qpng
)))
5396 LOAD_IMGLIB_FN (library
, png_get_io_ptr
);
5397 LOAD_IMGLIB_FN (library
, png_sig_cmp
);
5398 LOAD_IMGLIB_FN (library
, png_create_read_struct
);
5399 LOAD_IMGLIB_FN (library
, png_create_info_struct
);
5400 LOAD_IMGLIB_FN (library
, png_destroy_read_struct
);
5401 LOAD_IMGLIB_FN (library
, png_set_read_fn
);
5402 LOAD_IMGLIB_FN (library
, png_set_sig_bytes
);
5403 LOAD_IMGLIB_FN (library
, png_read_info
);
5404 LOAD_IMGLIB_FN (library
, png_get_IHDR
);
5405 LOAD_IMGLIB_FN (library
, png_get_valid
);
5406 LOAD_IMGLIB_FN (library
, png_set_strip_16
);
5407 LOAD_IMGLIB_FN (library
, png_set_expand
);
5408 LOAD_IMGLIB_FN (library
, png_set_gray_to_rgb
);
5409 LOAD_IMGLIB_FN (library
, png_set_background
);
5410 LOAD_IMGLIB_FN (library
, png_get_bKGD
);
5411 LOAD_IMGLIB_FN (library
, png_read_update_info
);
5412 LOAD_IMGLIB_FN (library
, png_get_channels
);
5413 LOAD_IMGLIB_FN (library
, png_get_rowbytes
);
5414 LOAD_IMGLIB_FN (library
, png_read_image
);
5415 LOAD_IMGLIB_FN (library
, png_read_end
);
5416 LOAD_IMGLIB_FN (library
, png_error
);
5418 #if (PNG_LIBPNG_VER >= 10500)
5419 LOAD_IMGLIB_FN (library
, png_longjmp
);
5420 LOAD_IMGLIB_FN (library
, png_set_longjmp_fn
);
5421 #endif /* libpng version >= 1.5 */
5427 #define fn_png_get_io_ptr png_get_io_ptr
5428 #define fn_png_sig_cmp png_sig_cmp
5429 #define fn_png_create_read_struct png_create_read_struct
5430 #define fn_png_create_info_struct png_create_info_struct
5431 #define fn_png_destroy_read_struct png_destroy_read_struct
5432 #define fn_png_set_read_fn png_set_read_fn
5433 #define fn_png_set_sig_bytes png_set_sig_bytes
5434 #define fn_png_read_info png_read_info
5435 #define fn_png_get_IHDR png_get_IHDR
5436 #define fn_png_get_valid png_get_valid
5437 #define fn_png_set_strip_16 png_set_strip_16
5438 #define fn_png_set_expand png_set_expand
5439 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5440 #define fn_png_set_background png_set_background
5441 #define fn_png_get_bKGD png_get_bKGD
5442 #define fn_png_read_update_info png_read_update_info
5443 #define fn_png_get_channels png_get_channels
5444 #define fn_png_get_rowbytes png_get_rowbytes
5445 #define fn_png_read_image png_read_image
5446 #define fn_png_read_end png_read_end
5447 #define fn_png_error png_error
5449 #if (PNG_LIBPNG_VER >= 10500)
5450 #define fn_png_longjmp png_longjmp
5451 #define fn_png_set_longjmp_fn png_set_longjmp_fn
5452 #endif /* libpng version >= 1.5 */
5454 #endif /* WINDOWSNT */
5456 /* Possibly inefficient/inexact substitutes for _setjmp and _longjmp.
5457 Do not use sys_setjmp, as PNG supports only jmp_buf. The _longjmp
5458 substitute may munge the signal mask, but that should be OK here.
5459 MinGW (MS-Windows) uses _setjmp and defines setjmp to _setjmp in
5460 the system header setjmp.h; don't mess up that. */
5461 #ifndef HAVE__SETJMP
5462 # define _setjmp(j) setjmp (j)
5463 # define _longjmp longjmp
5466 #if (PNG_LIBPNG_VER < 10500)
5467 #define PNG_LONGJMP(ptr) (_longjmp ((ptr)->jmpbuf, 1))
5468 #define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5470 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5471 #define PNG_LONGJMP(ptr) (fn_png_longjmp ((ptr), 1))
5472 #define PNG_JMPBUF(ptr) \
5473 (*fn_png_set_longjmp_fn ((ptr), _longjmp, sizeof (jmp_buf)))
5476 /* Error and warning handlers installed when the PNG library
5479 static _Noreturn
void
5480 my_png_error (png_struct
*png_ptr
, const char *msg
)
5482 eassert (png_ptr
!= NULL
);
5483 /* Avoid compiler warning about deprecated direct access to
5484 png_ptr's fields in libpng versions 1.4.x. */
5485 image_error ("PNG error: %s", build_string (msg
), Qnil
);
5486 PNG_LONGJMP (png_ptr
);
5491 my_png_warning (png_struct
*png_ptr
, const char *msg
)
5493 eassert (png_ptr
!= NULL
);
5494 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
5497 /* Memory source for PNG decoding. */
5499 struct png_memory_storage
5501 unsigned char *bytes
; /* The data */
5502 ptrdiff_t len
; /* How big is it? */
5503 ptrdiff_t index
; /* Where are we? */
5507 /* Function set as reader function when reading PNG image from memory.
5508 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5509 bytes from the input to DATA. */
5512 png_read_from_memory (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5514 struct png_memory_storage
*tbr
5515 = (struct png_memory_storage
*) fn_png_get_io_ptr (png_ptr
);
5517 if (length
> tbr
->len
- tbr
->index
)
5518 fn_png_error (png_ptr
, "Read error");
5520 memcpy (data
, tbr
->bytes
+ tbr
->index
, length
);
5521 tbr
->index
= tbr
->index
+ length
;
5525 /* Function set as reader function when reading PNG image from a file.
5526 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5527 bytes from the input to DATA. */
5530 png_read_from_file (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5532 FILE *fp
= (FILE *) fn_png_get_io_ptr (png_ptr
);
5534 if (fread (data
, 1, length
, fp
) < length
)
5535 fn_png_error (png_ptr
, "Read error");
5539 /* Load PNG image IMG for use on frame F. Value is true if
5542 struct png_load_context
5544 /* These are members so that longjmp doesn't munge local variables. */
5545 png_struct
*png_ptr
;
5554 png_load_body (struct frame
*f
, struct image
*img
, struct png_load_context
*c
)
5556 Lisp_Object file
, specified_file
;
5557 Lisp_Object specified_data
;
5560 XImagePtr ximg
, mask_img
= NULL
;
5561 png_struct
*png_ptr
;
5562 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
5565 png_byte
*pixels
= NULL
;
5566 png_byte
**rows
= NULL
;
5567 png_uint_32 width
, height
;
5568 int bit_depth
, color_type
, interlace_type
;
5570 png_uint_32 row_bytes
;
5572 struct png_memory_storage tbr
; /* Data to be read */
5574 /* Find out what file to load. */
5575 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5576 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5578 if (NILP (specified_data
))
5580 file
= x_find_image_file (specified_file
);
5581 if (!STRINGP (file
))
5583 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5587 /* Open the image file. */
5588 fp
= fopen (SSDATA (file
), "rb");
5591 image_error ("Cannot open image file `%s'", file
, Qnil
);
5595 /* Check PNG signature. */
5596 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
5597 || fn_png_sig_cmp (sig
, 0, sizeof sig
))
5599 image_error ("Not a PNG file: `%s'", file
, Qnil
);
5606 if (!STRINGP (specified_data
))
5608 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
5612 /* Read from memory. */
5613 tbr
.bytes
= SDATA (specified_data
);
5614 tbr
.len
= SBYTES (specified_data
);
5617 /* Check PNG signature. */
5618 if (tbr
.len
< sizeof sig
5619 || fn_png_sig_cmp (tbr
.bytes
, 0, sizeof sig
))
5621 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
5625 /* Need to skip past the signature. */
5626 tbr
.bytes
+= sizeof (sig
);
5629 /* Initialize read and info structs for PNG lib. */
5630 png_ptr
= fn_png_create_read_struct (PNG_LIBPNG_VER_STRING
,
5635 info_ptr
= fn_png_create_info_struct (png_ptr
);
5636 end_info
= fn_png_create_info_struct (png_ptr
);
5639 c
->png_ptr
= png_ptr
;
5640 c
->info_ptr
= info_ptr
;
5641 c
->end_info
= end_info
;
5646 if (! (info_ptr
&& end_info
))
5648 fn_png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
5653 if (fp
) fclose (fp
);
5657 /* Set error jump-back. We come back here when the PNG library
5658 detects an error. */
5659 if (_setjmp (PNG_JMPBUF (png_ptr
)))
5663 fn_png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
5671 /* Silence a bogus diagnostic; see GCC bug 54561. */
5672 IF_LINT (fp
= c
->fp
);
5674 /* Read image info. */
5675 if (!NILP (specified_data
))
5676 fn_png_set_read_fn (png_ptr
, (void *) &tbr
, png_read_from_memory
);
5678 fn_png_set_read_fn (png_ptr
, (void *) fp
, png_read_from_file
);
5680 fn_png_set_sig_bytes (png_ptr
, sizeof sig
);
5681 fn_png_read_info (png_ptr
, info_ptr
);
5682 fn_png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
5683 &interlace_type
, NULL
, NULL
);
5685 if (! (width
<= INT_MAX
&& height
<= INT_MAX
5686 && check_image_size (f
, width
, height
)))
5688 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5692 /* Create the X image and pixmap now, so that the work below can be
5693 omitted if the image is too large for X. */
5694 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
,
5698 /* If image contains simply transparency data, we prefer to
5699 construct a clipping mask. */
5700 if (fn_png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
5705 /* This function is easier to write if we only have to handle
5706 one data format: RGB or RGBA with 8 bits per channel. Let's
5707 transform other formats into that format. */
5709 /* Strip more than 8 bits per channel. */
5710 if (bit_depth
== 16)
5711 fn_png_set_strip_16 (png_ptr
);
5713 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5715 fn_png_set_expand (png_ptr
);
5717 /* Convert grayscale images to RGB. */
5718 if (color_type
== PNG_COLOR_TYPE_GRAY
5719 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
5720 fn_png_set_gray_to_rgb (png_ptr
);
5722 /* Handle alpha channel by combining the image with a background
5723 color. Do this only if a real alpha channel is supplied. For
5724 simple transparency, we prefer a clipping mask. */
5727 /* png_color_16 *image_bg; */
5728 Lisp_Object specified_bg
5729 = image_spec_value (img
->spec
, QCbackground
, NULL
);
5730 int shift
= (bit_depth
== 16) ? 0 : 8;
5732 if (STRINGP (specified_bg
))
5733 /* The user specified `:background', use that. */
5736 if (x_defined_color (f
, SSDATA (specified_bg
), &color
, 0))
5738 png_color_16 user_bg
;
5740 memset (&user_bg
, 0, sizeof user_bg
);
5741 user_bg
.red
= color
.red
>> shift
;
5742 user_bg
.green
= color
.green
>> shift
;
5743 user_bg
.blue
= color
.blue
>> shift
;
5745 fn_png_set_background (png_ptr
, &user_bg
,
5746 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5751 /* We use the current frame background, ignoring any default
5752 background color set by the image. */
5753 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5755 png_color_16 frame_background
;
5757 color
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
5758 x_query_color (f
, &color
);
5760 memset (&frame_background
, 0, sizeof frame_background
);
5761 frame_background
.red
= color
.red
>> shift
;
5762 frame_background
.green
= color
.green
>> shift
;
5763 frame_background
.blue
= color
.blue
>> shift
;
5764 #endif /* HAVE_X_WINDOWS */
5766 fn_png_set_background (png_ptr
, &frame_background
,
5767 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5771 /* Update info structure. */
5772 fn_png_read_update_info (png_ptr
, info_ptr
);
5774 /* Get number of channels. Valid values are 1 for grayscale images
5775 and images with a palette, 2 for grayscale images with transparency
5776 information (alpha channel), 3 for RGB images, and 4 for RGB
5777 images with alpha channel, i.e. RGBA. If conversions above were
5778 sufficient we should only have 3 or 4 channels here. */
5779 channels
= fn_png_get_channels (png_ptr
, info_ptr
);
5780 eassert (channels
== 3 || channels
== 4);
5782 /* Number of bytes needed for one row of the image. */
5783 row_bytes
= fn_png_get_rowbytes (png_ptr
, info_ptr
);
5785 /* Allocate memory for the image. */
5786 if (min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *rows
< height
5787 || min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *pixels
/ height
< row_bytes
)
5788 memory_full (SIZE_MAX
);
5789 c
->pixels
= pixels
= xmalloc (sizeof *pixels
* row_bytes
* height
);
5790 c
->rows
= rows
= xmalloc (height
* sizeof *rows
);
5791 for (i
= 0; i
< height
; ++i
)
5792 rows
[i
] = pixels
+ i
* row_bytes
;
5794 /* Read the entire image. */
5795 fn_png_read_image (png_ptr
, rows
);
5796 fn_png_read_end (png_ptr
, info_ptr
);
5803 /* Create an image and pixmap serving as mask if the PNG image
5804 contains an alpha channel. */
5807 && !x_create_x_image_and_pixmap (f
, width
, height
, 1,
5808 &mask_img
, &img
->mask
))
5810 x_destroy_x_image (ximg
);
5811 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
5812 img
->pixmap
= NO_PIXMAP
;
5816 /* Fill the X image and mask from PNG data. */
5817 init_color_table ();
5819 for (y
= 0; y
< height
; ++y
)
5821 png_byte
*p
= rows
[y
];
5823 for (x
= 0; x
< width
; ++x
)
5830 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5831 /* An alpha channel, aka mask channel, associates variable
5832 transparency with an image. Where other image formats
5833 support binary transparency---fully transparent or fully
5834 opaque---PNG allows up to 254 levels of partial transparency.
5835 The PNG library implements partial transparency by combining
5836 the image with a specified background color.
5838 I'm not sure how to handle this here nicely: because the
5839 background on which the image is displayed may change, for
5840 real alpha channel support, it would be necessary to create
5841 a new image for each possible background.
5843 What I'm doing now is that a mask is created if we have
5844 boolean transparency information. Otherwise I'm using
5845 the frame's background color to combine the image with. */
5850 XPutPixel (mask_img
, x
, y
, *p
> 0 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
);
5856 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5857 /* Set IMG's background color from the PNG image, unless the user
5861 if (fn_png_get_bKGD (png_ptr
, info_ptr
, &bg
))
5863 img
->background
= lookup_rgb_color (f
, bg
->red
, bg
->green
, bg
->blue
);
5864 img
->background_valid
= 1;
5868 #ifdef COLOR_TABLE_SUPPORT
5869 /* Remember colors allocated for this image. */
5870 img
->colors
= colors_in_color_table (&img
->ncolors
);
5871 free_color_table ();
5872 #endif /* COLOR_TABLE_SUPPORT */
5875 fn_png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
5880 img
->height
= height
;
5882 /* Maybe fill in the background field while we have ximg handy.
5883 Casting avoids a GCC warning. */
5884 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5886 /* Put the image into the pixmap, then free the X image and its buffer. */
5887 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
5888 x_destroy_x_image (ximg
);
5890 /* Same for the mask. */
5893 /* Fill in the background_transparent field while we have the
5894 mask handy. Casting avoids a GCC warning. */
5895 image_background_transparent (img
, f
, (XImagePtr_or_DC
)mask_img
);
5897 x_put_x_image (f
, mask_img
, img
->mask
, img
->width
, img
->height
);
5898 x_destroy_x_image (mask_img
);
5905 png_load (struct frame
*f
, struct image
*img
)
5907 struct png_load_context c
;
5908 return png_load_body (f
, img
, &c
);
5911 #else /* HAVE_PNG */
5915 png_load (struct frame
*f
, struct image
*img
)
5917 return ns_load_image (f
, img
,
5918 image_spec_value (img
->spec
, QCfile
, NULL
),
5919 image_spec_value (img
->spec
, QCdata
, NULL
));
5921 #endif /* HAVE_NS */
5924 #endif /* !HAVE_PNG */
5928 /***********************************************************************
5930 ***********************************************************************/
5932 #if defined (HAVE_JPEG) || defined (HAVE_NS)
5934 static bool jpeg_image_p (Lisp_Object object
);
5935 static bool jpeg_load (struct frame
*f
, struct image
*img
);
5937 /* The symbol `jpeg' identifying images of this type. */
5939 static Lisp_Object Qjpeg
;
5941 /* Indices of image specification fields in gs_format, below. */
5943 enum jpeg_keyword_index
5952 JPEG_HEURISTIC_MASK
,
5958 /* Vector of image_keyword structures describing the format
5959 of valid user-defined image specifications. */
5961 static const struct image_keyword jpeg_format
[JPEG_LAST
] =
5963 {":type", IMAGE_SYMBOL_VALUE
, 1},
5964 {":data", IMAGE_STRING_VALUE
, 0},
5965 {":file", IMAGE_STRING_VALUE
, 0},
5966 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5967 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
5968 {":relief", IMAGE_INTEGER_VALUE
, 0},
5969 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5970 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5971 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5972 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5975 #if defined HAVE_NTGUI && defined WINDOWSNT
5976 static bool init_jpeg_functions (void);
5978 #define init_jpeg_functions NULL
5981 /* Structure describing the image type `jpeg'. */
5983 static struct image_type jpeg_type
=
5989 init_jpeg_functions
,
5993 /* Return true if OBJECT is a valid JPEG image specification. */
5996 jpeg_image_p (Lisp_Object object
)
5998 struct image_keyword fmt
[JPEG_LAST
];
6000 memcpy (fmt
, jpeg_format
, sizeof fmt
);
6002 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
))
6005 /* Must specify either the :data or :file keyword. */
6006 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
6009 #endif /* HAVE_JPEG || HAVE_NS */
6013 /* Work around a warning about HAVE_STDLIB_H being redefined in
6015 #ifdef HAVE_STDLIB_H
6016 #undef HAVE_STDLIB_H
6017 #endif /* HAVE_STLIB_H */
6019 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6020 /* In older releases of the jpeg library, jpeglib.h will define boolean
6021 differently depending on __WIN32__, so make sure it is defined. */
6025 /* rpcndr.h (via windows.h) and jpeglib.h both define boolean types.
6026 Some versions of jpeglib try to detect whether rpcndr.h is loaded,
6027 using the Windows boolean type instead of the jpeglib boolean type
6028 if so. Cygwin jpeglib, however, doesn't try to detect whether its
6029 headers are included along with windows.h, so under Cygwin, jpeglib
6030 attempts to define a conflicting boolean type. Worse, forcing
6031 Cygwin jpeglib headers to use the Windows boolean type doesn't work
6032 because it created an ABI incompatibility between the
6033 already-compiled jpeg library and the header interface definition.
6035 The best we can do is to define jpeglib's boolean type to a
6036 different name. This name, jpeg_boolean, remains in effect through
6037 the rest of image.c.
6039 #if defined CYGWIN && defined HAVE_NTGUI
6040 #define boolean jpeg_boolean
6042 #include <jpeglib.h>
6047 /* JPEG library details. */
6048 DEF_IMGLIB_FN (void, jpeg_CreateDecompress
, (j_decompress_ptr
, int, size_t));
6049 DEF_IMGLIB_FN (boolean
, jpeg_start_decompress
, (j_decompress_ptr
));
6050 DEF_IMGLIB_FN (boolean
, jpeg_finish_decompress
, (j_decompress_ptr
));
6051 DEF_IMGLIB_FN (void, jpeg_destroy_decompress
, (j_decompress_ptr
));
6052 DEF_IMGLIB_FN (int, jpeg_read_header
, (j_decompress_ptr
, boolean
));
6053 DEF_IMGLIB_FN (JDIMENSION
, jpeg_read_scanlines
, (j_decompress_ptr
, JSAMPARRAY
, JDIMENSION
));
6054 DEF_IMGLIB_FN (struct jpeg_error_mgr
*, jpeg_std_error
, (struct jpeg_error_mgr
*));
6055 DEF_IMGLIB_FN (boolean
, jpeg_resync_to_restart
, (j_decompress_ptr
, int));
6058 init_jpeg_functions (void)
6062 if (!(library
= w32_delayed_load (Qjpeg
)))
6065 LOAD_IMGLIB_FN (library
, jpeg_finish_decompress
);
6066 LOAD_IMGLIB_FN (library
, jpeg_read_scanlines
);
6067 LOAD_IMGLIB_FN (library
, jpeg_start_decompress
);
6068 LOAD_IMGLIB_FN (library
, jpeg_read_header
);
6069 LOAD_IMGLIB_FN (library
, jpeg_CreateDecompress
);
6070 LOAD_IMGLIB_FN (library
, jpeg_destroy_decompress
);
6071 LOAD_IMGLIB_FN (library
, jpeg_std_error
);
6072 LOAD_IMGLIB_FN (library
, jpeg_resync_to_restart
);
6076 /* Wrapper since we can't directly assign the function pointer
6077 to another function pointer that was declared more completely easily. */
6079 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo
, int desired
)
6081 return fn_jpeg_resync_to_restart (cinfo
, desired
);
6086 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress (a)
6087 #define fn_jpeg_start_decompress jpeg_start_decompress
6088 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6089 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6090 #define fn_jpeg_read_header jpeg_read_header
6091 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6092 #define fn_jpeg_std_error jpeg_std_error
6093 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6095 #endif /* WINDOWSNT */
6097 struct my_jpeg_error_mgr
6099 struct jpeg_error_mgr pub
;
6100 sys_jmp_buf setjmp_buffer
;
6102 /* The remaining members are so that longjmp doesn't munge local
6104 struct jpeg_decompress_struct cinfo
;
6108 MY_JPEG_INVALID_IMAGE_SIZE
,
6109 MY_JPEG_CANNOT_CREATE_X
6117 static _Noreturn
void
6118 my_error_exit (j_common_ptr cinfo
)
6120 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
6121 mgr
->failure_code
= MY_JPEG_ERROR_EXIT
;
6122 sys_longjmp (mgr
->setjmp_buffer
, 1);
6126 /* Init source method for JPEG data source manager. Called by
6127 jpeg_read_header() before any data is actually read. See
6128 libjpeg.doc from the JPEG lib distribution. */
6131 our_common_init_source (j_decompress_ptr cinfo
)
6136 /* Method to terminate data source. Called by
6137 jpeg_finish_decompress() after all data has been processed. */
6140 our_common_term_source (j_decompress_ptr cinfo
)
6145 /* Fill input buffer method for JPEG data source manager. Called
6146 whenever more data is needed. We read the whole image in one step,
6147 so this only adds a fake end of input marker at the end. */
6149 static JOCTET our_memory_buffer
[2];
6152 our_memory_fill_input_buffer (j_decompress_ptr cinfo
)
6154 /* Insert a fake EOI marker. */
6155 struct jpeg_source_mgr
*src
= cinfo
->src
;
6157 our_memory_buffer
[0] = (JOCTET
) 0xFF;
6158 our_memory_buffer
[1] = (JOCTET
) JPEG_EOI
;
6160 src
->next_input_byte
= our_memory_buffer
;
6161 src
->bytes_in_buffer
= 2;
6166 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6167 is the JPEG data source manager. */
6170 our_memory_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6172 struct jpeg_source_mgr
*src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6176 if (num_bytes
> src
->bytes_in_buffer
)
6177 ERREXIT (cinfo
, JERR_INPUT_EOF
);
6179 src
->bytes_in_buffer
-= num_bytes
;
6180 src
->next_input_byte
+= num_bytes
;
6185 /* Set up the JPEG lib for reading an image from DATA which contains
6186 LEN bytes. CINFO is the decompression info structure created for
6187 reading the image. */
6190 jpeg_memory_src (j_decompress_ptr cinfo
, JOCTET
*data
, ptrdiff_t len
)
6192 struct jpeg_source_mgr
*src
;
6194 if (cinfo
->src
== NULL
)
6196 /* First time for this JPEG object? */
6197 cinfo
->src
= (struct jpeg_source_mgr
*)
6198 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6199 sizeof (struct jpeg_source_mgr
));
6200 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6201 src
->next_input_byte
= data
;
6204 src
= (struct jpeg_source_mgr
*) cinfo
->src
;
6205 src
->init_source
= our_common_init_source
;
6206 src
->fill_input_buffer
= our_memory_fill_input_buffer
;
6207 src
->skip_input_data
= our_memory_skip_input_data
;
6208 src
->resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6209 src
->term_source
= our_common_term_source
;
6210 src
->bytes_in_buffer
= len
;
6211 src
->next_input_byte
= data
;
6215 struct jpeg_stdio_mgr
6217 struct jpeg_source_mgr mgr
;
6224 /* Size of buffer to read JPEG from file.
6225 Not too big, as we want to use alloc_small. */
6226 #define JPEG_STDIO_BUFFER_SIZE 8192
6229 /* Fill input buffer method for JPEG data source manager. Called
6230 whenever more data is needed. The data is read from a FILE *. */
6233 our_stdio_fill_input_buffer (j_decompress_ptr cinfo
)
6235 struct jpeg_stdio_mgr
*src
;
6237 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6242 bytes
= fread (src
->buffer
, 1, JPEG_STDIO_BUFFER_SIZE
, src
->file
);
6244 src
->mgr
.bytes_in_buffer
= bytes
;
6247 WARNMS (cinfo
, JWRN_JPEG_EOF
);
6249 src
->buffer
[0] = (JOCTET
) 0xFF;
6250 src
->buffer
[1] = (JOCTET
) JPEG_EOI
;
6251 src
->mgr
.bytes_in_buffer
= 2;
6253 src
->mgr
.next_input_byte
= src
->buffer
;
6260 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6261 is the JPEG data source manager. */
6264 our_stdio_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6266 struct jpeg_stdio_mgr
*src
;
6267 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6269 while (num_bytes
> 0 && !src
->finished
)
6271 if (num_bytes
<= src
->mgr
.bytes_in_buffer
)
6273 src
->mgr
.bytes_in_buffer
-= num_bytes
;
6274 src
->mgr
.next_input_byte
+= num_bytes
;
6279 num_bytes
-= src
->mgr
.bytes_in_buffer
;
6280 src
->mgr
.bytes_in_buffer
= 0;
6281 src
->mgr
.next_input_byte
= NULL
;
6283 our_stdio_fill_input_buffer (cinfo
);
6289 /* Set up the JPEG lib for reading an image from a FILE *.
6290 CINFO is the decompression info structure created for
6291 reading the image. */
6294 jpeg_file_src (j_decompress_ptr cinfo
, FILE *fp
)
6296 struct jpeg_stdio_mgr
*src
;
6298 if (cinfo
->src
!= NULL
)
6299 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6302 /* First time for this JPEG object? */
6303 cinfo
->src
= (struct jpeg_source_mgr
*)
6304 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6305 sizeof (struct jpeg_stdio_mgr
));
6306 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6307 src
->buffer
= (JOCTET
*)
6308 (*cinfo
->mem
->alloc_small
) ((j_common_ptr
) cinfo
, JPOOL_PERMANENT
,
6309 JPEG_STDIO_BUFFER_SIZE
);
6314 src
->mgr
.init_source
= our_common_init_source
;
6315 src
->mgr
.fill_input_buffer
= our_stdio_fill_input_buffer
;
6316 src
->mgr
.skip_input_data
= our_stdio_skip_input_data
;
6317 src
->mgr
.resync_to_restart
= jpeg_resync_to_restart_wrapper
; /* Use default method. */
6318 src
->mgr
.term_source
= our_common_term_source
;
6319 src
->mgr
.bytes_in_buffer
= 0;
6320 src
->mgr
.next_input_byte
= NULL
;
6324 /* Load image IMG for use on frame F. Patterned after example.c
6325 from the JPEG lib. */
6328 jpeg_load_body (struct frame
*f
, struct image
*img
,
6329 struct my_jpeg_error_mgr
*mgr
)
6331 Lisp_Object file
, specified_file
;
6332 Lisp_Object specified_data
;
6335 int row_stride
, x
, y
;
6336 XImagePtr ximg
= NULL
;
6337 unsigned long *colors
;
6340 /* Open the JPEG file. */
6341 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6342 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6344 if (NILP (specified_data
))
6346 file
= x_find_image_file (specified_file
);
6347 if (!STRINGP (file
))
6349 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6353 fp
= fopen (SSDATA (file
), "rb");
6356 image_error ("Cannot open `%s'", file
, Qnil
);
6360 else if (!STRINGP (specified_data
))
6362 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6366 IF_LINT (mgr
->fp
= fp
);
6368 /* Customize libjpeg's error handling to call my_error_exit when an
6369 error is detected. This function will perform a longjmp. */
6370 mgr
->cinfo
.err
= fn_jpeg_std_error (&mgr
->pub
);
6371 mgr
->pub
.error_exit
= my_error_exit
;
6372 if (sys_setjmp (mgr
->setjmp_buffer
))
6374 switch (mgr
->failure_code
)
6376 case MY_JPEG_ERROR_EXIT
:
6378 char buf
[JMSG_LENGTH_MAX
];
6379 mgr
->cinfo
.err
->format_message ((j_common_ptr
) &mgr
->cinfo
, buf
);
6380 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
6381 build_string (buf
));
6385 case MY_JPEG_INVALID_IMAGE_SIZE
:
6386 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6389 case MY_JPEG_CANNOT_CREATE_X
:
6393 /* Close the input file and destroy the JPEG object. */
6396 fn_jpeg_destroy_decompress (&mgr
->cinfo
);
6398 /* If we already have an XImage, free that. */
6399 x_destroy_x_image (ximg
);
6401 /* Free pixmap and colors. */
6402 x_clear_image (f
, img
);
6406 /* Silence a bogus diagnostic; see GCC bug 54561. */
6407 IF_LINT (fp
= mgr
->fp
);
6409 /* Create the JPEG decompression object. Let it read from fp.
6410 Read the JPEG image header. */
6411 fn_jpeg_CreateDecompress (&mgr
->cinfo
, JPEG_LIB_VERSION
, sizeof *&mgr
->cinfo
);
6413 if (NILP (specified_data
))
6414 jpeg_file_src (&mgr
->cinfo
, fp
);
6416 jpeg_memory_src (&mgr
->cinfo
, SDATA (specified_data
),
6417 SBYTES (specified_data
));
6419 fn_jpeg_read_header (&mgr
->cinfo
, 1);
6421 /* Customize decompression so that color quantization will be used.
6422 Start decompression. */
6423 mgr
->cinfo
.quantize_colors
= 1;
6424 fn_jpeg_start_decompress (&mgr
->cinfo
);
6425 width
= img
->width
= mgr
->cinfo
.output_width
;
6426 height
= img
->height
= mgr
->cinfo
.output_height
;
6428 if (!check_image_size (f
, width
, height
))
6430 mgr
->failure_code
= MY_JPEG_INVALID_IMAGE_SIZE
;
6431 sys_longjmp (mgr
->setjmp_buffer
, 1);
6434 /* Create X image and pixmap. */
6435 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
6437 mgr
->failure_code
= MY_JPEG_CANNOT_CREATE_X
;
6438 sys_longjmp (mgr
->setjmp_buffer
, 1);
6441 /* Allocate colors. When color quantization is used,
6442 mgr->cinfo.actual_number_of_colors has been set with the number of
6443 colors generated, and mgr->cinfo.colormap is a two-dimensional array
6444 of color indices in the range 0..mgr->cinfo.actual_number_of_colors.
6445 No more than 255 colors will be generated. */
6449 if (mgr
->cinfo
.out_color_components
> 2)
6450 ir
= 0, ig
= 1, ib
= 2;
6451 else if (mgr
->cinfo
.out_color_components
> 1)
6452 ir
= 0, ig
= 1, ib
= 0;
6454 ir
= 0, ig
= 0, ib
= 0;
6456 /* Use the color table mechanism because it handles colors that
6457 cannot be allocated nicely. Such colors will be replaced with
6458 a default color, and we don't have to care about which colors
6459 can be freed safely, and which can't. */
6460 init_color_table ();
6461 colors
= alloca (mgr
->cinfo
.actual_number_of_colors
* sizeof *colors
);
6463 for (i
= 0; i
< mgr
->cinfo
.actual_number_of_colors
; ++i
)
6465 /* Multiply RGB values with 255 because X expects RGB values
6466 in the range 0..0xffff. */
6467 int r
= mgr
->cinfo
.colormap
[ir
][i
] << 8;
6468 int g
= mgr
->cinfo
.colormap
[ig
][i
] << 8;
6469 int b
= mgr
->cinfo
.colormap
[ib
][i
] << 8;
6470 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
6473 #ifdef COLOR_TABLE_SUPPORT
6474 /* Remember those colors actually allocated. */
6475 img
->colors
= colors_in_color_table (&img
->ncolors
);
6476 free_color_table ();
6477 #endif /* COLOR_TABLE_SUPPORT */
6481 row_stride
= width
* mgr
->cinfo
.output_components
;
6482 buffer
= mgr
->cinfo
.mem
->alloc_sarray ((j_common_ptr
) &mgr
->cinfo
,
6483 JPOOL_IMAGE
, row_stride
, 1);
6484 for (y
= 0; y
< height
; ++y
)
6486 fn_jpeg_read_scanlines (&mgr
->cinfo
, buffer
, 1);
6487 for (x
= 0; x
< mgr
->cinfo
.output_width
; ++x
)
6488 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
6492 fn_jpeg_finish_decompress (&mgr
->cinfo
);
6493 fn_jpeg_destroy_decompress (&mgr
->cinfo
);
6497 /* Maybe fill in the background field while we have ximg handy. */
6498 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6499 /* Casting avoids a GCC warning. */
6500 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6502 /* Put the image into the pixmap. */
6503 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6504 x_destroy_x_image (ximg
);
6509 jpeg_load (struct frame
*f
, struct image
*img
)
6511 struct my_jpeg_error_mgr mgr
;
6512 return jpeg_load_body (f
, img
, &mgr
);
6515 #else /* HAVE_JPEG */
6519 jpeg_load (struct frame
*f
, struct image
*img
)
6521 return ns_load_image (f
, img
,
6522 image_spec_value (img
->spec
, QCfile
, NULL
),
6523 image_spec_value (img
->spec
, QCdata
, NULL
));
6525 #endif /* HAVE_NS */
6527 #endif /* !HAVE_JPEG */
6531 /***********************************************************************
6533 ***********************************************************************/
6535 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6537 static bool tiff_image_p (Lisp_Object object
);
6538 static bool tiff_load (struct frame
*f
, struct image
*img
);
6540 /* The symbol `tiff' identifying images of this type. */
6542 static Lisp_Object Qtiff
;
6544 /* Indices of image specification fields in tiff_format, below. */
6546 enum tiff_keyword_index
6555 TIFF_HEURISTIC_MASK
,
6562 /* Vector of image_keyword structures describing the format
6563 of valid user-defined image specifications. */
6565 static const struct image_keyword tiff_format
[TIFF_LAST
] =
6567 {":type", IMAGE_SYMBOL_VALUE
, 1},
6568 {":data", IMAGE_STRING_VALUE
, 0},
6569 {":file", IMAGE_STRING_VALUE
, 0},
6570 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6571 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
6572 {":relief", IMAGE_INTEGER_VALUE
, 0},
6573 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6574 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6575 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6576 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
6577 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
6580 #if defined HAVE_NTGUI && defined WINDOWSNT
6581 static bool init_tiff_functions (void);
6583 #define init_tiff_functions NULL
6586 /* Structure describing the image type `tiff'. */
6588 static struct image_type tiff_type
=
6594 init_tiff_functions
,
6598 /* Return true if OBJECT is a valid TIFF image specification. */
6601 tiff_image_p (Lisp_Object object
)
6603 struct image_keyword fmt
[TIFF_LAST
];
6604 memcpy (fmt
, tiff_format
, sizeof fmt
);
6606 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
))
6609 /* Must specify either the :data or :file keyword. */
6610 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
6613 #endif /* HAVE_TIFF || HAVE_NS */
6621 /* TIFF library details. */
6622 DEF_IMGLIB_FN (TIFFErrorHandler
, TIFFSetErrorHandler
, (TIFFErrorHandler
));
6623 DEF_IMGLIB_FN (TIFFErrorHandler
, TIFFSetWarningHandler
, (TIFFErrorHandler
));
6624 DEF_IMGLIB_FN (TIFF
*, TIFFOpen
, (const char *, const char *));
6625 DEF_IMGLIB_FN (TIFF
*, TIFFClientOpen
, (const char *, const char *, thandle_t
,
6626 TIFFReadWriteProc
, TIFFReadWriteProc
,
6627 TIFFSeekProc
, TIFFCloseProc
, TIFFSizeProc
,
6628 TIFFMapFileProc
, TIFFUnmapFileProc
));
6629 DEF_IMGLIB_FN (int, TIFFGetField
, (TIFF
*, ttag_t
, ...));
6630 DEF_IMGLIB_FN (int, TIFFReadRGBAImage
, (TIFF
*, uint32
, uint32
, uint32
*, int));
6631 DEF_IMGLIB_FN (void, TIFFClose
, (TIFF
*));
6632 DEF_IMGLIB_FN (int, TIFFSetDirectory
, (TIFF
*, tdir_t
));
6635 init_tiff_functions (void)
6639 if (!(library
= w32_delayed_load (Qtiff
)))
6642 LOAD_IMGLIB_FN (library
, TIFFSetErrorHandler
);
6643 LOAD_IMGLIB_FN (library
, TIFFSetWarningHandler
);
6644 LOAD_IMGLIB_FN (library
, TIFFOpen
);
6645 LOAD_IMGLIB_FN (library
, TIFFClientOpen
);
6646 LOAD_IMGLIB_FN (library
, TIFFGetField
);
6647 LOAD_IMGLIB_FN (library
, TIFFReadRGBAImage
);
6648 LOAD_IMGLIB_FN (library
, TIFFClose
);
6649 LOAD_IMGLIB_FN (library
, TIFFSetDirectory
);
6655 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6656 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6657 #define fn_TIFFOpen TIFFOpen
6658 #define fn_TIFFClientOpen TIFFClientOpen
6659 #define fn_TIFFGetField TIFFGetField
6660 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6661 #define fn_TIFFClose TIFFClose
6662 #define fn_TIFFSetDirectory TIFFSetDirectory
6663 #endif /* WINDOWSNT */
6666 /* Reading from a memory buffer for TIFF images Based on the PNG
6667 memory source, but we have to provide a lot of extra functions.
6670 We really only need to implement read and seek, but I am not
6671 convinced that the TIFF library is smart enough not to destroy
6672 itself if we only hand it the function pointers we need to
6677 unsigned char *bytes
;
6684 tiff_read_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6686 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6688 size
= min (size
, src
->len
- src
->index
);
6689 memcpy (buf
, src
->bytes
+ src
->index
, size
);
6695 tiff_write_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6701 tiff_seek_in_memory (thandle_t data
, toff_t off
, int whence
)
6703 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6708 case SEEK_SET
: /* Go from beginning of source. */
6712 case SEEK_END
: /* Go from end of source. */
6713 idx
= src
->len
+ off
;
6716 case SEEK_CUR
: /* Go from current position. */
6717 idx
= src
->index
+ off
;
6720 default: /* Invalid `whence'. */
6724 if (idx
> src
->len
|| idx
< 0)
6732 tiff_close_memory (thandle_t data
)
6739 tiff_mmap_memory (thandle_t data
, tdata_t
*pbase
, toff_t
*psize
)
6741 /* It is already _IN_ memory. */
6746 tiff_unmap_memory (thandle_t data
, tdata_t base
, toff_t size
)
6748 /* We don't need to do this. */
6752 tiff_size_of_memory (thandle_t data
)
6754 return ((tiff_memory_source
*) data
)->len
;
6757 /* GCC 3.x on x86 Windows targets has a bug that triggers an internal
6758 compiler error compiling tiff_handler, see Bugzilla bug #17406
6759 (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17406). Declaring
6760 this function as external works around that problem. */
6761 #if defined (__MINGW32__) && __GNUC__ == 3
6762 # define MINGW_STATIC
6764 # define MINGW_STATIC static
6768 tiff_handler (const char *, const char *, const char *, va_list)
6769 ATTRIBUTE_FORMAT_PRINTF (3, 0);
6771 tiff_handler (const char *log_format
, const char *title
,
6772 const char *format
, va_list ap
)
6774 /* doprnt is not suitable here, as TIFF handlers are called from
6775 libtiff and are passed arbitrary printf directives. Instead, use
6776 vsnprintf, taking care to be portable to nonstandard environments
6777 where vsnprintf returns -1 on buffer overflow. Since it's just a
6778 log entry, it's OK to truncate it. */
6780 int len
= vsnprintf (buf
, sizeof buf
, format
, ap
);
6781 add_to_log (log_format
, build_string (title
),
6782 make_string (buf
, max (0, min (len
, sizeof buf
- 1))));
6786 static void tiff_error_handler (const char *, const char *, va_list)
6787 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6789 tiff_error_handler (const char *title
, const char *format
, va_list ap
)
6791 tiff_handler ("TIFF error: %s %s", title
, format
, ap
);
6795 static void tiff_warning_handler (const char *, const char *, va_list)
6796 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6798 tiff_warning_handler (const char *title
, const char *format
, va_list ap
)
6800 tiff_handler ("TIFF warning: %s %s", title
, format
, ap
);
6804 /* Load TIFF image IMG for use on frame F. Value is true if
6808 tiff_load (struct frame
*f
, struct image
*img
)
6810 Lisp_Object file
, specified_file
;
6811 Lisp_Object specified_data
;
6813 int width
, height
, x
, y
, count
;
6817 tiff_memory_source memsrc
;
6820 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6821 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6823 fn_TIFFSetErrorHandler ((TIFFErrorHandler
) tiff_error_handler
);
6824 fn_TIFFSetWarningHandler ((TIFFErrorHandler
) tiff_warning_handler
);
6826 if (NILP (specified_data
))
6828 /* Read from a file */
6829 file
= x_find_image_file (specified_file
);
6830 if (!STRINGP (file
))
6832 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6836 /* Try to open the image file. */
6837 tiff
= fn_TIFFOpen (SSDATA (file
), "r");
6840 image_error ("Cannot open `%s'", file
, Qnil
);
6846 if (!STRINGP (specified_data
))
6848 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6852 /* Memory source! */
6853 memsrc
.bytes
= SDATA (specified_data
);
6854 memsrc
.len
= SBYTES (specified_data
);
6857 tiff
= fn_TIFFClientOpen ("memory_source", "r", (thandle_t
)&memsrc
,
6858 tiff_read_from_memory
,
6859 tiff_write_from_memory
,
6860 tiff_seek_in_memory
,
6862 tiff_size_of_memory
,
6868 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
6873 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
6874 if (INTEGERP (image
))
6876 EMACS_INT ino
= XFASTINT (image
);
6877 if (! (TYPE_MINIMUM (tdir_t
) <= ino
&& ino
<= TYPE_MAXIMUM (tdir_t
)
6878 && fn_TIFFSetDirectory (tiff
, ino
)))
6880 image_error ("Invalid image number `%s' in image `%s'",
6882 fn_TIFFClose (tiff
);
6887 /* Get width and height of the image, and allocate a raster buffer
6888 of width x height 32-bit values. */
6889 fn_TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
6890 fn_TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
6892 if (!check_image_size (f
, width
, height
))
6894 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6895 fn_TIFFClose (tiff
);
6899 /* Create the X image and pixmap. */
6900 if (! (height
<= min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *buf
/ width
6901 && x_create_x_image_and_pixmap (f
, width
, height
, 0,
6902 &ximg
, &img
->pixmap
)))
6904 fn_TIFFClose (tiff
);
6908 buf
= xmalloc (sizeof *buf
* width
* height
);
6910 rc
= fn_TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
6912 /* Count the number of images in the file. */
6913 for (count
= 1; fn_TIFFSetDirectory (tiff
, count
); count
++)
6917 img
->lisp_data
= Fcons (Qcount
,
6918 Fcons (make_number (count
),
6921 fn_TIFFClose (tiff
);
6924 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
6929 /* Initialize the color table. */
6930 init_color_table ();
6932 /* Process the pixel raster. Origin is in the lower-left corner. */
6933 for (y
= 0; y
< height
; ++y
)
6935 uint32
*row
= buf
+ y
* width
;
6937 for (x
= 0; x
< width
; ++x
)
6939 uint32 abgr
= row
[x
];
6940 int r
= TIFFGetR (abgr
) << 8;
6941 int g
= TIFFGetG (abgr
) << 8;
6942 int b
= TIFFGetB (abgr
) << 8;
6943 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
6947 #ifdef COLOR_TABLE_SUPPORT
6948 /* Remember the colors allocated for the image. Free the color table. */
6949 img
->colors
= colors_in_color_table (&img
->ncolors
);
6950 free_color_table ();
6951 #endif /* COLOR_TABLE_SUPPORT */
6954 img
->height
= height
;
6956 /* Maybe fill in the background field while we have ximg handy. */
6957 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6958 /* Casting avoids a GCC warning on W32. */
6959 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6961 /* Put the image into the pixmap, then free the X image and its buffer. */
6962 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
6963 x_destroy_x_image (ximg
);
6969 #else /* HAVE_TIFF */
6973 tiff_load (struct frame
*f
, struct image
*img
)
6975 return ns_load_image (f
, img
,
6976 image_spec_value (img
->spec
, QCfile
, NULL
),
6977 image_spec_value (img
->spec
, QCdata
, NULL
));
6979 #endif /* HAVE_NS */
6981 #endif /* !HAVE_TIFF */
6985 /***********************************************************************
6987 ***********************************************************************/
6989 #if defined (HAVE_GIF) || defined (HAVE_NS)
6991 static bool gif_image_p (Lisp_Object object
);
6992 static bool gif_load (struct frame
*f
, struct image
*img
);
6993 static void gif_clear_image (struct frame
*f
, struct image
*img
);
6995 /* The symbol `gif' identifying images of this type. */
6997 static Lisp_Object Qgif
;
6999 /* Indices of image specification fields in gif_format, below. */
7001 enum gif_keyword_index
7017 /* Vector of image_keyword structures describing the format
7018 of valid user-defined image specifications. */
7020 static const struct image_keyword gif_format
[GIF_LAST
] =
7022 {":type", IMAGE_SYMBOL_VALUE
, 1},
7023 {":data", IMAGE_STRING_VALUE
, 0},
7024 {":file", IMAGE_STRING_VALUE
, 0},
7025 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7026 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
7027 {":relief", IMAGE_INTEGER_VALUE
, 0},
7028 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7029 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7030 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7031 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
7032 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
7035 #if defined HAVE_NTGUI && defined WINDOWSNT
7036 static bool init_gif_functions (void);
7038 #define init_gif_functions NULL
7041 /* Structure describing the image type `gif'. */
7043 static struct image_type gif_type
=
7053 /* Free X resources of GIF image IMG which is used on frame F. */
7056 gif_clear_image (struct frame
*f
, struct image
*img
)
7058 img
->lisp_data
= Qnil
;
7059 x_clear_image (f
, img
);
7062 /* Return true if OBJECT is a valid GIF image specification. */
7065 gif_image_p (Lisp_Object object
)
7067 struct image_keyword fmt
[GIF_LAST
];
7068 memcpy (fmt
, gif_format
, sizeof fmt
);
7070 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
))
7073 /* Must specify either the :data or :file keyword. */
7074 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
7077 #endif /* HAVE_GIF */
7081 #if defined (HAVE_NTGUI)
7082 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7083 Undefine before redefining to avoid a preprocessor warning. */
7087 /* avoid conflict with QuickdrawText.h */
7088 #define DrawText gif_DrawText
7089 #include <gif_lib.h>
7092 #else /* HAVE_NTGUI */
7094 #include <gif_lib.h>
7096 #endif /* HAVE_NTGUI */
7101 /* GIF library details. */
7102 DEF_IMGLIB_FN (int, DGifCloseFile
, (GifFileType
*));
7103 DEF_IMGLIB_FN (int, DGifSlurp
, (GifFileType
*));
7104 DEF_IMGLIB_FN (GifFileType
*, DGifOpen
, (void *, InputFunc
));
7105 DEF_IMGLIB_FN (GifFileType
*, DGifOpenFileName
, (const char *));
7108 init_gif_functions (void)
7112 if (!(library
= w32_delayed_load (Qgif
)))
7115 LOAD_IMGLIB_FN (library
, DGifCloseFile
);
7116 LOAD_IMGLIB_FN (library
, DGifSlurp
);
7117 LOAD_IMGLIB_FN (library
, DGifOpen
);
7118 LOAD_IMGLIB_FN (library
, DGifOpenFileName
);
7124 #define fn_DGifCloseFile DGifCloseFile
7125 #define fn_DGifSlurp DGifSlurp
7126 #define fn_DGifOpen DGifOpen
7127 #define fn_DGifOpenFileName DGifOpenFileName
7129 #endif /* WINDOWSNT */
7131 /* Reading a GIF image from memory
7132 Based on the PNG memory stuff to a certain extent. */
7136 unsigned char *bytes
;
7142 /* Make the current memory source available to gif_read_from_memory.
7143 It's done this way because not all versions of libungif support
7144 a UserData field in the GifFileType structure. */
7145 static gif_memory_source
*current_gif_memory_src
;
7148 gif_read_from_memory (GifFileType
*file
, GifByteType
*buf
, int len
)
7150 gif_memory_source
*src
= current_gif_memory_src
;
7152 if (len
> src
->len
- src
->index
)
7155 memcpy (buf
, src
->bytes
+ src
->index
, len
);
7161 /* Load GIF image IMG for use on frame F. Value is true if
7164 static const int interlace_start
[] = {0, 4, 2, 1};
7165 static const int interlace_increment
[] = {8, 8, 4, 2};
7167 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7170 gif_load (struct frame
*f
, struct image
*img
)
7173 int rc
, width
, height
, x
, y
, i
, j
;
7175 ColorMapObject
*gif_color_map
;
7176 unsigned long pixel_colors
[256];
7178 gif_memory_source memsrc
;
7179 Lisp_Object specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
7180 Lisp_Object specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
7181 Lisp_Object specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7182 unsigned long bgcolor
= 0;
7185 if (NILP (specified_data
))
7187 file
= x_find_image_file (specified_file
);
7188 if (!STRINGP (file
))
7190 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
7194 /* Open the GIF file. */
7195 gif
= fn_DGifOpenFileName (SSDATA (file
));
7198 image_error ("Cannot open `%s'", file
, Qnil
);
7204 if (!STRINGP (specified_data
))
7206 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
7210 /* Read from memory! */
7211 current_gif_memory_src
= &memsrc
;
7212 memsrc
.bytes
= SDATA (specified_data
);
7213 memsrc
.len
= SBYTES (specified_data
);
7216 gif
= fn_DGifOpen (&memsrc
, gif_read_from_memory
);
7219 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
7224 /* Before reading entire contents, check the declared image size. */
7225 if (!check_image_size (f
, gif
->SWidth
, gif
->SHeight
))
7227 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7228 fn_DGifCloseFile (gif
);
7232 /* Read entire contents. */
7233 rc
= fn_DGifSlurp (gif
);
7234 if (rc
== GIF_ERROR
|| gif
->ImageCount
<= 0)
7236 image_error ("Error reading `%s'", img
->spec
, Qnil
);
7237 fn_DGifCloseFile (gif
);
7241 /* Which sub-image are we to display? */
7243 Lisp_Object image_number
= image_spec_value (img
->spec
, QCindex
, NULL
);
7244 idx
= INTEGERP (image_number
) ? XFASTINT (image_number
) : 0;
7245 if (idx
< 0 || idx
>= gif
->ImageCount
)
7247 image_error ("Invalid image number `%s' in image `%s'",
7248 image_number
, img
->spec
);
7249 fn_DGifCloseFile (gif
);
7254 width
= img
->width
= gif
->SWidth
;
7255 height
= img
->height
= gif
->SHeight
;
7257 img
->corners
[TOP_CORNER
] = gif
->SavedImages
[0].ImageDesc
.Top
;
7258 img
->corners
[LEFT_CORNER
] = gif
->SavedImages
[0].ImageDesc
.Left
;
7259 img
->corners
[BOT_CORNER
]
7260 = img
->corners
[TOP_CORNER
] + gif
->SavedImages
[0].ImageDesc
.Height
;
7261 img
->corners
[RIGHT_CORNER
]
7262 = img
->corners
[LEFT_CORNER
] + gif
->SavedImages
[0].ImageDesc
.Width
;
7264 if (!check_image_size (f
, width
, height
))
7266 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7267 fn_DGifCloseFile (gif
);
7271 /* Create the X image and pixmap. */
7272 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
7274 fn_DGifCloseFile (gif
);
7278 /* Clear the part of the screen image not covered by the image.
7279 Full animated GIF support requires more here (see the gif89 spec,
7280 disposal methods). Let's simply assume that the part not covered
7281 by a sub-image is in the frame's background color. */
7282 for (y
= 0; y
< img
->corners
[TOP_CORNER
]; ++y
)
7283 for (x
= 0; x
< width
; ++x
)
7284 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7286 for (y
= img
->corners
[BOT_CORNER
]; y
< height
; ++y
)
7287 for (x
= 0; x
< width
; ++x
)
7288 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7290 for (y
= img
->corners
[TOP_CORNER
]; y
< img
->corners
[BOT_CORNER
]; ++y
)
7292 for (x
= 0; x
< img
->corners
[LEFT_CORNER
]; ++x
)
7293 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7294 for (x
= img
->corners
[RIGHT_CORNER
]; x
< width
; ++x
)
7295 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7298 /* Read the GIF image into the X image. */
7300 /* FIXME: With the current implementation, loading an animated gif
7301 is quadratic in the number of animation frames, since each frame
7302 is a separate struct image. We must provide a way for a single
7303 gif_load call to construct and save all animation frames. */
7305 init_color_table ();
7306 if (STRINGP (specified_bg
))
7307 bgcolor
= x_alloc_image_color (f
, img
, specified_bg
,
7308 FRAME_BACKGROUND_PIXEL (f
));
7309 for (j
= 0; j
<= idx
; ++j
)
7311 /* We use a local variable `raster' here because RasterBits is a
7312 char *, which invites problems with bytes >= 0x80. */
7313 struct SavedImage
*subimage
= gif
->SavedImages
+ j
;
7314 unsigned char *raster
= (unsigned char *) subimage
->RasterBits
;
7315 int transparency_color_index
= -1;
7317 int subimg_width
= subimage
->ImageDesc
.Width
;
7318 int subimg_height
= subimage
->ImageDesc
.Height
;
7319 int subimg_top
= subimage
->ImageDesc
.Top
;
7320 int subimg_left
= subimage
->ImageDesc
.Left
;
7322 /* Find the Graphic Control Extension block for this sub-image.
7323 Extract the disposal method and transparency color. */
7324 for (i
= 0; i
< subimage
->ExtensionBlockCount
; i
++)
7326 ExtensionBlock
*extblock
= subimage
->ExtensionBlocks
+ i
;
7328 if ((extblock
->Function
== GIF_LOCAL_DESCRIPTOR_EXTENSION
)
7329 && extblock
->ByteCount
== 4
7330 && extblock
->Bytes
[0] & 1)
7332 /* From gif89a spec: 1 = "keep in place", 2 = "restore
7333 to background". Treat any other value like 2. */
7334 disposal
= (extblock
->Bytes
[0] >> 2) & 7;
7335 transparency_color_index
= (unsigned char) extblock
->Bytes
[3];
7340 /* We can't "keep in place" the first subimage. */
7344 /* For disposal == 0, the spec says "No disposal specified. The
7345 decoder is not required to take any action." In practice, it
7346 seems we need to treat this like "keep in place", see e.g.
7347 http://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */
7351 /* Allocate subimage colors. */
7352 memset (pixel_colors
, 0, sizeof pixel_colors
);
7353 gif_color_map
= subimage
->ImageDesc
.ColorMap
;
7355 gif_color_map
= gif
->SColorMap
;
7358 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
7360 if (transparency_color_index
== i
)
7361 pixel_colors
[i
] = STRINGP (specified_bg
)
7362 ? bgcolor
: FRAME_BACKGROUND_PIXEL (f
);
7365 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
7366 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
7367 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
7368 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
7372 /* Apply the pixel values. */
7373 if (gif
->SavedImages
[j
].ImageDesc
.Interlace
)
7377 for (y
= 0, row
= interlace_start
[0], pass
= 0;
7379 y
++, row
+= interlace_increment
[pass
])
7381 if (row
>= subimg_height
)
7383 row
= interlace_start
[++pass
];
7384 while (row
>= subimg_height
)
7385 row
= interlace_start
[++pass
];
7388 for (x
= 0; x
< subimg_width
; x
++)
7390 int c
= raster
[y
* subimg_width
+ x
];
7391 if (transparency_color_index
!= c
|| disposal
!= 1)
7392 XPutPixel (ximg
, x
+ subimg_left
, row
+ subimg_top
,
7399 for (y
= 0; y
< subimg_height
; ++y
)
7400 for (x
= 0; x
< subimg_width
; ++x
)
7402 int c
= raster
[y
* subimg_width
+ x
];
7403 if (transparency_color_index
!= c
|| disposal
!= 1)
7404 XPutPixel (ximg
, x
+ subimg_left
, y
+ subimg_top
,
7410 #ifdef COLOR_TABLE_SUPPORT
7411 img
->colors
= colors_in_color_table (&img
->ncolors
);
7412 free_color_table ();
7413 #endif /* COLOR_TABLE_SUPPORT */
7415 /* Save GIF image extension data for `image-metadata'.
7416 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7417 img
->lisp_data
= Qnil
;
7418 if (gif
->SavedImages
[idx
].ExtensionBlockCount
> 0)
7421 ExtensionBlock
*ext
= gif
->SavedImages
[idx
].ExtensionBlocks
;
7422 for (i
= 0; i
< gif
->SavedImages
[idx
].ExtensionBlockCount
; i
++, ext
++)
7423 /* Append (... FUNCTION "BYTES") */
7426 = Fcons (make_number (ext
->Function
),
7427 Fcons (make_unibyte_string (ext
->Bytes
, ext
->ByteCount
),
7429 if (ext
->Function
== GIF_LOCAL_DESCRIPTOR_EXTENSION
7430 && ext
->ByteCount
== 4)
7432 delay
= ext
->Bytes
[2] << CHAR_BIT
;
7433 delay
|= ext
->Bytes
[1];
7436 img
->lisp_data
= Fcons (Qextension_data
,
7437 Fcons (img
->lisp_data
, Qnil
));
7441 Fcons (make_float (delay
/ 100.0),
7445 if (gif
->ImageCount
> 1)
7446 img
->lisp_data
= Fcons (Qcount
,
7447 Fcons (make_number (gif
->ImageCount
),
7450 fn_DGifCloseFile (gif
);
7452 /* Maybe fill in the background field while we have ximg handy. */
7453 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7454 /* Casting avoids a GCC warning. */
7455 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7457 /* Put the image into the pixmap, then free the X image and its buffer. */
7458 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7459 x_destroy_x_image (ximg
);
7464 #else /* !HAVE_GIF */
7468 gif_load (struct frame
*f
, struct image
*img
)
7470 return ns_load_image (f
, img
,
7471 image_spec_value (img
->spec
, QCfile
, NULL
),
7472 image_spec_value (img
->spec
, QCdata
, NULL
));
7474 #endif /* HAVE_NS */
7476 #endif /* HAVE_GIF */
7479 /***********************************************************************
7481 ***********************************************************************/
7482 #if defined (HAVE_IMAGEMAGICK)
7484 static Lisp_Object Qimagemagick
;
7486 static bool imagemagick_image_p (Lisp_Object
);
7487 static bool imagemagick_load (struct frame
*, struct image
*);
7488 static void imagemagick_clear_image (struct frame
*, struct image
*);
7490 /* Indices of image specification fields in imagemagick_format. */
7492 enum imagemagick_keyword_index
7500 IMAGEMAGICK_ALGORITHM
,
7501 IMAGEMAGICK_HEURISTIC_MASK
,
7503 IMAGEMAGICK_BACKGROUND
,
7506 IMAGEMAGICK_ROTATION
,
7511 /* Vector of image_keyword structures describing the format
7512 of valid user-defined image specifications. */
7514 static struct image_keyword imagemagick_format
[IMAGEMAGICK_LAST
] =
7516 {":type", IMAGE_SYMBOL_VALUE
, 1},
7517 {":data", IMAGE_STRING_VALUE
, 0},
7518 {":file", IMAGE_STRING_VALUE
, 0},
7519 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7520 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
7521 {":relief", IMAGE_INTEGER_VALUE
, 0},
7522 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7523 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7524 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7525 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
7526 {":height", IMAGE_INTEGER_VALUE
, 0},
7527 {":width", IMAGE_INTEGER_VALUE
, 0},
7528 {":rotation", IMAGE_NUMBER_VALUE
, 0},
7529 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
7532 #if defined HAVE_NTGUI && defined WINDOWSNT
7533 static bool init_imagemagick_functions (void);
7535 #define init_imagemagick_functions NULL
7538 /* Structure describing the image type for any image handled via
7541 static struct image_type imagemagick_type
=
7544 imagemagick_image_p
,
7546 imagemagick_clear_image
,
7547 init_imagemagick_functions
,
7551 /* Free X resources of imagemagick image IMG which is used on frame F. */
7554 imagemagick_clear_image (struct frame
*f
,
7557 x_clear_image (f
, img
);
7560 /* Return true if OBJECT is a valid IMAGEMAGICK image specification. Do
7561 this by calling parse_image_spec and supplying the keywords that
7562 identify the IMAGEMAGICK format. */
7565 imagemagick_image_p (Lisp_Object object
)
7567 struct image_keyword fmt
[IMAGEMAGICK_LAST
];
7568 memcpy (fmt
, imagemagick_format
, sizeof fmt
);
7570 if (!parse_image_spec (object
, fmt
, IMAGEMAGICK_LAST
, Qimagemagick
))
7573 /* Must specify either the :data or :file keyword. */
7574 return fmt
[IMAGEMAGICK_FILE
].count
+ fmt
[IMAGEMAGICK_DATA
].count
== 1;
7577 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7578 Therefore rename the function so it doesn't collide with ImageMagick. */
7579 #define DrawRectangle DrawRectangleGif
7580 #include <wand/MagickWand.h>
7582 /* ImageMagick 6.5.3 through 6.6.5 hid PixelGetMagickColor for some reason.
7583 Emacs seems to work fine with the hidden version, so unhide it. */
7584 #include <magick/version.h>
7585 #if 0x653 <= MagickLibVersion && MagickLibVersion <= 0x665
7586 extern WandExport
void PixelGetMagickColor (const PixelWand
*,
7587 MagickPixelPacket
*);
7590 /* Log ImageMagick error message.
7591 Useful when a ImageMagick function returns the status `MagickFalse'. */
7594 imagemagick_error (MagickWand
*wand
)
7597 ExceptionType severity
;
7599 description
= MagickGetException (wand
, &severity
);
7600 image_error ("ImageMagick error: %s",
7601 build_string (description
),
7603 description
= (char *) MagickRelinquishMemory (description
);
7606 /* Helper function for imagemagick_load, which does the actual loading
7607 given contents and size, apart from frame and image structures,
7608 passed from imagemagick_load. Uses librimagemagick to do most of
7609 the image processing.
7611 F is a pointer to the Emacs frame; IMG to the image structure to
7612 prepare; CONTENTS is the string containing the IMAGEMAGICK data to
7613 be parsed; SIZE is the number of bytes of data; and FILENAME is
7614 either the file name or the image data.
7616 Return true if successful. */
7619 imagemagick_load_image (struct frame
*f
, struct image
*img
,
7620 unsigned char *contents
, unsigned int size
,
7623 size_t width
, height
;
7624 MagickBooleanType status
;
7627 MagickWand
*image_wand
;
7628 MagickWand
*ping_wand
;
7629 PixelIterator
*iterator
;
7630 PixelWand
**pixels
, *bg_wand
= NULL
;
7631 MagickPixelPacket pixel
;
7636 int desired_width
, desired_height
;
7640 /* Handle image index for image types who can contain more than one image.
7641 Interface :index is same as for GIF. First we "ping" the image to see how
7642 many sub-images it contains. Pinging is faster than loading the image to
7643 find out things about it. */
7645 /* Initialize the imagemagick environment. */
7646 MagickWandGenesis ();
7647 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
7648 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
7649 ping_wand
= NewMagickWand ();
7650 /* MagickSetResolution (ping_wand, 2, 2); (Bug#10112) */
7653 ? MagickPingImage (ping_wand
, filename
)
7654 : MagickPingImageBlob (ping_wand
, contents
, size
);
7656 if (status
== MagickFalse
)
7658 imagemagick_error (ping_wand
);
7659 DestroyMagickWand (ping_wand
);
7663 if (ino
< 0 || ino
>= MagickGetNumberImages (ping_wand
))
7665 image_error ("Invalid image number `%s' in image `%s'",
7667 DestroyMagickWand (ping_wand
);
7671 if (MagickGetNumberImages (ping_wand
) > 1)
7674 Fcons (make_number (MagickGetNumberImages (ping_wand
)),
7677 DestroyMagickWand (ping_wand
);
7679 /* Now we know how many images are inside the file. If it's not a
7680 bundle, the number is one. Load the image data. */
7682 image_wand
= NewMagickWand ();
7685 ? MagickReadImage (image_wand
, filename
)
7686 : MagickReadImageBlob (image_wand
, contents
, size
))
7689 imagemagick_error (image_wand
);
7690 goto imagemagick_error
;
7693 /* Retrieve the frame's background color, for use later. */
7696 Lisp_Object specified_bg
;
7698 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
7699 if (!STRINGP (specified_bg
)
7700 || !x_defined_color (f
, SSDATA (specified_bg
), &bgcolor
, 0))
7703 bgcolor
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
7704 x_query_color (f
, &bgcolor
);
7706 ns_query_color (FRAME_BACKGROUND_COLOR (f
), &bgcolor
, 1);
7710 bg_wand
= NewPixelWand ();
7711 PixelSetRed (bg_wand
, (double) bgcolor
.red
/ 65535);
7712 PixelSetGreen (bg_wand
, (double) bgcolor
.green
/ 65535);
7713 PixelSetBlue (bg_wand
, (double) bgcolor
.blue
/ 65535);
7716 /* If width and/or height is set in the display spec assume we want
7717 to scale to those values. If either h or w is unspecified, the
7718 unspecified should be calculated from the specified to preserve
7720 value
= image_spec_value (img
->spec
, QCwidth
, NULL
);
7721 desired_width
= (INTEGERP (value
) ? XFASTINT (value
) : -1);
7722 value
= image_spec_value (img
->spec
, QCheight
, NULL
);
7723 desired_height
= (INTEGERP (value
) ? XFASTINT (value
) : -1);
7725 height
= MagickGetImageHeight (image_wand
);
7726 width
= MagickGetImageWidth (image_wand
);
7728 if (desired_width
!= -1 && desired_height
== -1)
7729 /* w known, calculate h. */
7730 desired_height
= (double) desired_width
/ width
* height
;
7731 if (desired_width
== -1 && desired_height
!= -1)
7732 /* h known, calculate w. */
7733 desired_width
= (double) desired_height
/ height
* width
;
7734 if (desired_width
!= -1 && desired_height
!= -1)
7736 status
= MagickScaleImage (image_wand
, desired_width
, desired_height
);
7737 if (status
== MagickFalse
)
7739 image_error ("Imagemagick scale failed", Qnil
, Qnil
);
7740 imagemagick_error (image_wand
);
7741 goto imagemagick_error
;
7745 /* crop behaves similar to image slicing in Emacs but is more memory
7747 crop
= image_spec_value (img
->spec
, QCcrop
, NULL
);
7749 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop
)))
7751 /* After some testing, it seems MagickCropImage is the fastest crop
7752 function in ImageMagick. This crop function seems to do less copying
7753 than the alternatives, but it still reads the entire image into memory
7754 before cropping, which is apparently difficult to avoid when using
7756 size_t crop_width
= XINT (XCAR (crop
));
7758 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop
)))
7760 size_t crop_height
= XINT (XCAR (crop
));
7762 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (ssize_t
, XCAR (crop
)))
7764 ssize_t crop_x
= XINT (XCAR (crop
));
7766 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (ssize_t
, XCAR (crop
)))
7768 ssize_t crop_y
= XINT (XCAR (crop
));
7769 MagickCropImage (image_wand
, crop_width
, crop_height
,
7776 /* Furthermore :rotation. we need background color and angle for
7779 TODO background handling for rotation specified_bg =
7780 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
7782 value
= image_spec_value (img
->spec
, QCrotation
, NULL
);
7785 rotation
= extract_float (value
);
7786 status
= MagickRotateImage (image_wand
, bg_wand
, rotation
);
7787 if (status
== MagickFalse
)
7789 image_error ("Imagemagick image rotate failed", Qnil
, Qnil
);
7790 imagemagick_error (image_wand
);
7791 goto imagemagick_error
;
7795 /* Finally we are done manipulating the image. Figure out the
7796 resulting width/height and transfer ownership to Emacs. */
7797 height
= MagickGetImageHeight (image_wand
);
7798 width
= MagickGetImageWidth (image_wand
);
7800 /* Set the canvas background color to the frame or specified
7801 background, and flatten the image. Note: as of ImageMagick
7802 6.6.0, SVG image transparency is not handled properly
7803 (e.g. etc/images/splash.svg shows a white background always). */
7805 MagickWand
*new_wand
;
7806 MagickSetImageBackgroundColor (image_wand
, bg_wand
);
7807 #ifdef HAVE_MAGICKMERGEIMAGELAYERS
7808 new_wand
= MagickMergeImageLayers (image_wand
, MergeLayer
);
7810 new_wand
= MagickFlattenImages (image_wand
);
7812 DestroyMagickWand (image_wand
);
7813 image_wand
= new_wand
;
7816 if (! (width
<= INT_MAX
&& height
<= INT_MAX
7817 && check_image_size (f
, width
, height
)))
7819 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7820 goto imagemagick_error
;
7823 /* We can now get a valid pixel buffer from the imagemagick file, if all
7826 init_color_table ();
7828 #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS
7829 if (imagemagick_render_type
!= 0)
7831 /* Magicexportimage is normally faster than pixelpushing. This
7832 method is also well tested. Some aspects of this method are
7833 ad-hoc and needs to be more researched. */
7834 int imagedepth
= 24; /*MagickGetImageDepth(image_wand);*/
7835 const char *exportdepth
= imagedepth
<= 8 ? "I" : "BGRP"; /*"RGBP";*/
7836 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7837 if (!x_create_x_image_and_pixmap (f
, width
, height
, imagedepth
,
7838 &ximg
, &img
->pixmap
))
7840 #ifdef COLOR_TABLE_SUPPORT
7841 free_color_table ();
7843 image_error ("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
7844 goto imagemagick_error
;
7847 /* Oddly, the below code doesn't seem to work:*/
7848 /* switch(ximg->bitmap_unit){ */
7850 /* pixelwidth=CharPixel; */
7853 /* pixelwidth=ShortPixel; */
7856 /* pixelwidth=LongPixel; */
7860 Here im just guessing the format of the bitmap.
7861 happens to work fine for:
7864 seems about 3 times as fast as pixel pushing(not carefully measured)
7866 pixelwidth
= CharPixel
; /*??? TODO figure out*/
7867 MagickExportImagePixels (image_wand
, 0, 0, width
, height
,
7868 exportdepth
, pixelwidth
, ximg
->data
);
7871 #endif /* HAVE_MAGICKEXPORTIMAGEPIXELS */
7873 size_t image_height
;
7875 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7876 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0,
7877 &ximg
, &img
->pixmap
))
7879 #ifdef COLOR_TABLE_SUPPORT
7880 free_color_table ();
7882 image_error ("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
7883 goto imagemagick_error
;
7886 /* Copy imagemagick image to x with primitive yet robust pixel
7887 pusher loop. This has been tested a lot with many different
7890 /* Copy pixels from the imagemagick image structure to the x image map. */
7891 iterator
= NewPixelIterator (image_wand
);
7892 if (iterator
== (PixelIterator
*) NULL
)
7894 #ifdef COLOR_TABLE_SUPPORT
7895 free_color_table ();
7897 x_destroy_x_image (ximg
);
7898 image_error ("Imagemagick pixel iterator creation failed",
7900 goto imagemagick_error
;
7903 image_height
= MagickGetImageHeight (image_wand
);
7904 for (y
= 0; y
< image_height
; y
++)
7906 pixels
= PixelGetNextIteratorRow (iterator
, &width
);
7907 if (pixels
== (PixelWand
**) NULL
)
7909 for (x
= 0; x
< (long) width
; x
++)
7911 PixelGetMagickColor (pixels
[x
], &pixel
);
7912 XPutPixel (ximg
, x
, y
,
7913 lookup_rgb_color (f
,
7919 DestroyPixelIterator (iterator
);
7922 #ifdef COLOR_TABLE_SUPPORT
7923 /* Remember colors allocated for this image. */
7924 img
->colors
= colors_in_color_table (&img
->ncolors
);
7925 free_color_table ();
7926 #endif /* COLOR_TABLE_SUPPORT */
7929 img
->height
= height
;
7931 /* Put the image into the pixmap, then free the X image and its
7933 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
7934 x_destroy_x_image (ximg
);
7936 /* Final cleanup. image_wand should be the only resource left. */
7937 DestroyMagickWand (image_wand
);
7938 if (bg_wand
) DestroyPixelWand (bg_wand
);
7940 /* `MagickWandTerminus' terminates the imagemagick environment. */
7941 MagickWandTerminus ();
7946 DestroyMagickWand (image_wand
);
7947 if (bg_wand
) DestroyPixelWand (bg_wand
);
7949 MagickWandTerminus ();
7950 /* TODO more cleanup. */
7951 image_error ("Error parsing IMAGEMAGICK image `%s'", img
->spec
, Qnil
);
7956 /* Load IMAGEMAGICK image IMG for use on frame F. Value is true if
7957 successful. this function will go into the imagemagick_type structure, and
7958 the prototype thus needs to be compatible with that structure. */
7961 imagemagick_load (struct frame
*f
, struct image
*img
)
7964 Lisp_Object file_name
;
7966 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7967 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
7968 if (STRINGP (file_name
))
7972 file
= x_find_image_file (file_name
);
7973 if (!STRINGP (file
))
7975 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
7978 success_p
= imagemagick_load_image (f
, img
, 0, 0, SSDATA (file
));
7980 /* Else its not a file, its a lisp object. Load the image from a
7981 lisp object rather than a file. */
7986 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7987 if (!STRINGP (data
))
7989 image_error ("Invalid image data `%s'", data
, Qnil
);
7992 success_p
= imagemagick_load_image (f
, img
, SDATA (data
),
7993 SBYTES (data
), NULL
);
7999 DEFUN ("imagemagick-types", Fimagemagick_types
, Simagemagick_types
, 0, 0, 0,
8000 doc
: /* Return a list of image types supported by ImageMagick.
8001 Each entry in this list is a symbol named after an ImageMagick format
8002 tag. See the ImageMagick manual for a list of ImageMagick formats and
8003 their descriptions (http://www.imagemagick.org/script/formats.php).
8004 You can also try the shell command: `identify -list format'.
8006 Note that ImageMagick recognizes many file-types that Emacs does not
8007 recognize as images, such as C. See `imagemagick-types-enable'
8008 and `imagemagick-types-inhibit'. */)
8011 Lisp_Object typelist
= Qnil
;
8016 Lisp_Object Qimagemagicktype
;
8018 GetExceptionInfo(&ex
);
8019 imtypes
= GetMagickList ("*", &numf
, &ex
);
8020 DestroyExceptionInfo(&ex
);
8022 for (i
= 0; i
< numf
; i
++)
8024 Qimagemagicktype
= intern (imtypes
[i
]);
8025 typelist
= Fcons (Qimagemagicktype
, typelist
);
8027 return Fnreverse (typelist
);
8030 #endif /* defined (HAVE_IMAGEMAGICK) */
8034 /***********************************************************************
8036 ***********************************************************************/
8038 #if defined (HAVE_RSVG)
8040 /* Function prototypes. */
8042 static bool svg_image_p (Lisp_Object object
);
8043 static bool svg_load (struct frame
*f
, struct image
*img
);
8045 static bool svg_load_image (struct frame
*, struct image
*,
8046 unsigned char *, ptrdiff_t);
8048 /* The symbol `svg' identifying images of this type. */
8050 static Lisp_Object Qsvg
;
8052 /* Indices of image specification fields in svg_format, below. */
8054 enum svg_keyword_index
8069 /* Vector of image_keyword structures describing the format
8070 of valid user-defined image specifications. */
8072 static const struct image_keyword svg_format
[SVG_LAST
] =
8074 {":type", IMAGE_SYMBOL_VALUE
, 1},
8075 {":data", IMAGE_STRING_VALUE
, 0},
8076 {":file", IMAGE_STRING_VALUE
, 0},
8077 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8078 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
8079 {":relief", IMAGE_INTEGER_VALUE
, 0},
8080 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8081 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8082 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8083 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
8086 #if defined HAVE_NTGUI && defined WINDOWSNT
8087 static bool init_svg_functions (void);
8089 #define init_svg_functions NULL
8092 /* Structure describing the image type `svg'. Its the same type of
8093 structure defined for all image formats, handled by emacs image
8094 functions. See struct image_type in dispextern.h. */
8096 static struct image_type svg_type
=
8107 /* Return true if OBJECT is a valid SVG image specification. Do
8108 this by calling parse_image_spec and supplying the keywords that
8109 identify the SVG format. */
8112 svg_image_p (Lisp_Object object
)
8114 struct image_keyword fmt
[SVG_LAST
];
8115 memcpy (fmt
, svg_format
, sizeof fmt
);
8117 if (!parse_image_spec (object
, fmt
, SVG_LAST
, Qsvg
))
8120 /* Must specify either the :data or :file keyword. */
8121 return fmt
[SVG_FILE
].count
+ fmt
[SVG_DATA
].count
== 1;
8124 #include <librsvg/rsvg.h>
8128 /* SVG library functions. */
8129 DEF_IMGLIB_FN (RsvgHandle
*, rsvg_handle_new
);
8130 DEF_IMGLIB_FN (void, rsvg_handle_get_dimensions
);
8131 DEF_IMGLIB_FN (gboolean
, rsvg_handle_write
);
8132 DEF_IMGLIB_FN (gboolean
, rsvg_handle_close
);
8133 DEF_IMGLIB_FN (GdkPixbuf
*, rsvg_handle_get_pixbuf
);
8135 DEF_IMGLIB_FN (int, gdk_pixbuf_get_width
);
8136 DEF_IMGLIB_FN (int, gdk_pixbuf_get_height
);
8137 DEF_IMGLIB_FN (guchar
*, gdk_pixbuf_get_pixels
);
8138 DEF_IMGLIB_FN (int, gdk_pixbuf_get_rowstride
);
8139 DEF_IMGLIB_FN (GdkColorspace
, gdk_pixbuf_get_colorspace
);
8140 DEF_IMGLIB_FN (int, gdk_pixbuf_get_n_channels
);
8141 DEF_IMGLIB_FN (gboolean
, gdk_pixbuf_get_has_alpha
);
8142 DEF_IMGLIB_FN (int, gdk_pixbuf_get_bits_per_sample
);
8144 DEF_IMGLIB_FN (void, g_type_init
);
8145 DEF_IMGLIB_FN (void, g_object_unref
);
8146 DEF_IMGLIB_FN (void, g_error_free
);
8148 Lisp_Object Qgdk_pixbuf
, Qglib
, Qgobject
;
8151 init_svg_functions (void)
8153 HMODULE library
, gdklib
, glib
, gobject
;
8155 if (!(glib
= w32_delayed_load (Qglib
))
8156 || !(gobject
= w32_delayed_load (Qgobject
))
8157 || !(gdklib
= w32_delayed_load (Qgdk_pixbuf
))
8158 || !(library
= w32_delayed_load (Qsvg
)))
8161 LOAD_IMGLIB_FN (library
, rsvg_handle_new
);
8162 LOAD_IMGLIB_FN (library
, rsvg_handle_get_dimensions
);
8163 LOAD_IMGLIB_FN (library
, rsvg_handle_write
);
8164 LOAD_IMGLIB_FN (library
, rsvg_handle_close
);
8165 LOAD_IMGLIB_FN (library
, rsvg_handle_get_pixbuf
);
8167 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_width
);
8168 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_height
);
8169 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_pixels
);
8170 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_rowstride
);
8171 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_colorspace
);
8172 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_n_channels
);
8173 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_has_alpha
);
8174 LOAD_IMGLIB_FN (gdklib
, gdk_pixbuf_get_bits_per_sample
);
8176 LOAD_IMGLIB_FN (gobject
, g_type_init
);
8177 LOAD_IMGLIB_FN (gobject
, g_object_unref
);
8178 LOAD_IMGLIB_FN (glib
, g_error_free
);
8184 /* The following aliases for library functions allow dynamic loading
8185 to be used on some platforms. */
8186 #define fn_rsvg_handle_new rsvg_handle_new
8187 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
8188 #define fn_rsvg_handle_write rsvg_handle_write
8189 #define fn_rsvg_handle_close rsvg_handle_close
8190 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
8192 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
8193 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
8194 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
8195 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
8196 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
8197 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
8198 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
8199 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
8201 #define fn_g_type_init g_type_init
8202 #define fn_g_object_unref g_object_unref
8203 #define fn_g_error_free g_error_free
8204 #endif /* !WINDOWSNT */
8206 /* Load SVG image IMG for use on frame F. Value is true if
8210 svg_load (struct frame
*f
, struct image
*img
)
8213 Lisp_Object file_name
;
8215 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8216 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
8217 if (STRINGP (file_name
))
8220 unsigned char *contents
;
8223 file
= x_find_image_file (file_name
);
8224 if (!STRINGP (file
))
8226 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
8230 /* Read the entire file into memory. */
8231 contents
= slurp_file (SSDATA (file
), &size
);
8232 if (contents
== NULL
)
8234 image_error ("Error loading SVG image `%s'", img
->spec
, Qnil
);
8237 /* If the file was slurped into memory properly, parse it. */
8238 success_p
= svg_load_image (f
, img
, contents
, size
);
8241 /* Else its not a file, its a lisp object. Load the image from a
8242 lisp object rather than a file. */
8247 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8248 if (!STRINGP (data
))
8250 image_error ("Invalid image data `%s'", data
, Qnil
);
8253 success_p
= svg_load_image (f
, img
, SDATA (data
), SBYTES (data
));
8259 /* svg_load_image is a helper function for svg_load, which does the
8260 actual loading given contents and size, apart from frame and image
8261 structures, passed from svg_load.
8263 Uses librsvg to do most of the image processing.
8265 Returns true when successful. */
8267 svg_load_image (struct frame
*f
, /* Pointer to emacs frame structure. */
8268 struct image
*img
, /* Pointer to emacs image structure. */
8269 unsigned char *contents
, /* String containing the SVG XML data to be parsed. */
8270 ptrdiff_t size
) /* Size of data in bytes. */
8272 RsvgHandle
*rsvg_handle
;
8273 RsvgDimensionData dimension_data
;
8278 const guint8
*pixels
;
8281 Lisp_Object specified_bg
;
8286 /* g_type_init is a glib function that must be called prior to using
8287 gnome type library functions. */
8289 /* Make a handle to a new rsvg object. */
8290 rsvg_handle
= fn_rsvg_handle_new ();
8292 /* Parse the contents argument and fill in the rsvg_handle. */
8293 fn_rsvg_handle_write (rsvg_handle
, contents
, size
, &err
);
8294 if (err
) goto rsvg_error
;
8296 /* The parsing is complete, rsvg_handle is ready to used, close it
8297 for further writes. */
8298 fn_rsvg_handle_close (rsvg_handle
, &err
);
8299 if (err
) goto rsvg_error
;
8301 fn_rsvg_handle_get_dimensions (rsvg_handle
, &dimension_data
);
8302 if (! check_image_size (f
, dimension_data
.width
, dimension_data
.height
))
8304 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8308 /* We can now get a valid pixel buffer from the svg file, if all
8310 pixbuf
= fn_rsvg_handle_get_pixbuf (rsvg_handle
);
8311 if (!pixbuf
) goto rsvg_error
;
8312 fn_g_object_unref (rsvg_handle
);
8314 /* Extract some meta data from the svg handle. */
8315 width
= fn_gdk_pixbuf_get_width (pixbuf
);
8316 height
= fn_gdk_pixbuf_get_height (pixbuf
);
8317 pixels
= fn_gdk_pixbuf_get_pixels (pixbuf
);
8318 rowstride
= fn_gdk_pixbuf_get_rowstride (pixbuf
);
8320 /* Validate the svg meta data. */
8321 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf
) == GDK_COLORSPACE_RGB
);
8322 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf
) == 4);
8323 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf
));
8324 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf
) == 8);
8326 /* Try to create a x pixmap to hold the svg pixmap. */
8327 if (!x_create_x_image_and_pixmap (f
, width
, height
, 0, &ximg
, &img
->pixmap
))
8329 fn_g_object_unref (pixbuf
);
8333 init_color_table ();
8335 /* Handle alpha channel by combining the image with a background
8337 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
8338 if (!STRINGP (specified_bg
)
8339 || !x_defined_color (f
, SSDATA (specified_bg
), &background
, 0))
8342 background
.pixel
= FRAME_BACKGROUND_PIXEL (f
);
8343 x_query_color (f
, &background
);
8345 ns_query_color (FRAME_BACKGROUND_COLOR (f
), &background
, 1);
8349 /* SVG pixmaps specify transparency in the last byte, so right
8350 shift 8 bits to get rid of it, since emacs doesn't support
8352 background
.red
>>= 8;
8353 background
.green
>>= 8;
8354 background
.blue
>>= 8;
8356 /* This loop handles opacity values, since Emacs assumes
8357 non-transparent images. Each pixel must be "flattened" by
8358 calculating the resulting color, given the transparency of the
8359 pixel, and the image background color. */
8360 for (y
= 0; y
< height
; ++y
)
8362 for (x
= 0; x
< width
; ++x
)
8372 opacity
= *pixels
++;
8374 red
= ((red
* opacity
)
8375 + (background
.red
* ((1 << 8) - opacity
)));
8376 green
= ((green
* opacity
)
8377 + (background
.green
* ((1 << 8) - opacity
)));
8378 blue
= ((blue
* opacity
)
8379 + (background
.blue
* ((1 << 8) - opacity
)));
8381 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, red
, green
, blue
));
8384 pixels
+= rowstride
- 4 * width
;
8387 #ifdef COLOR_TABLE_SUPPORT
8388 /* Remember colors allocated for this image. */
8389 img
->colors
= colors_in_color_table (&img
->ncolors
);
8390 free_color_table ();
8391 #endif /* COLOR_TABLE_SUPPORT */
8393 fn_g_object_unref (pixbuf
);
8396 img
->height
= height
;
8398 /* Maybe fill in the background field while we have ximg handy.
8399 Casting avoids a GCC warning. */
8400 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
8402 /* Put the image into the pixmap, then free the X image and its
8404 x_put_x_image (f
, ximg
, img
->pixmap
, width
, height
);
8405 x_destroy_x_image (ximg
);
8410 fn_g_object_unref (rsvg_handle
);
8411 /* FIXME: Use error->message so the user knows what is the actual
8412 problem with the image. */
8413 image_error ("Error parsing SVG image `%s'", img
->spec
, Qnil
);
8414 fn_g_error_free (err
);
8418 #endif /* defined (HAVE_RSVG) */
8423 /***********************************************************************
8425 ***********************************************************************/
8427 #ifdef HAVE_X_WINDOWS
8428 #define HAVE_GHOSTSCRIPT 1
8429 #endif /* HAVE_X_WINDOWS */
8431 #ifdef HAVE_GHOSTSCRIPT
8433 static bool gs_image_p (Lisp_Object object
);
8434 static bool gs_load (struct frame
*f
, struct image
*img
);
8435 static void gs_clear_image (struct frame
*f
, struct image
*img
);
8437 /* Keyword symbols. */
8439 static Lisp_Object QCloader
, QCbounding_box
, QCpt_width
, QCpt_height
;
8441 /* Indices of image specification fields in gs_format, below. */
8443 enum gs_keyword_index
8461 /* Vector of image_keyword structures describing the format
8462 of valid user-defined image specifications. */
8464 static const struct image_keyword gs_format
[GS_LAST
] =
8466 {":type", IMAGE_SYMBOL_VALUE
, 1},
8467 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
8468 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
8469 {":file", IMAGE_STRING_VALUE
, 1},
8470 {":loader", IMAGE_FUNCTION_VALUE
, 0},
8471 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
8472 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8473 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
8474 {":relief", IMAGE_INTEGER_VALUE
, 0},
8475 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8476 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8477 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8478 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
8481 /* Structure describing the image type `ghostscript'. */
8483 static struct image_type gs_type
=
8494 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8497 gs_clear_image (struct frame
*f
, struct image
*img
)
8499 x_clear_image (f
, img
);
8503 /* Return true if OBJECT is a valid Ghostscript image
8507 gs_image_p (Lisp_Object object
)
8509 struct image_keyword fmt
[GS_LAST
];
8513 memcpy (fmt
, gs_format
, sizeof fmt
);
8515 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
))
8518 /* Bounding box must be a list or vector containing 4 integers. */
8519 tem
= fmt
[GS_BOUNDING_BOX
].value
;
8522 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
8523 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
8528 else if (VECTORP (tem
))
8530 if (ASIZE (tem
) != 4)
8532 for (i
= 0; i
< 4; ++i
)
8533 if (!INTEGERP (AREF (tem
, i
)))
8543 /* Load Ghostscript image IMG for use on frame F. Value is true
8547 gs_load (struct frame
*f
, struct image
*img
)
8549 uprintmax_t printnum1
, printnum2
;
8550 char buffer
[sizeof " " + INT_STRLEN_BOUND (printmax_t
)];
8551 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
8553 double in_width
, in_height
;
8554 Lisp_Object pixel_colors
= Qnil
;
8556 /* Compute pixel size of pixmap needed from the given size in the
8557 image specification. Sizes in the specification are in pt. 1 pt
8558 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8560 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
8561 in_width
= INTEGERP (pt_width
) ? XFASTINT (pt_width
) / 72.0 : 0;
8562 in_width
*= FRAME_X_DISPLAY_INFO (f
)->resx
;
8563 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
8564 in_height
= INTEGERP (pt_height
) ? XFASTINT (pt_height
) / 72.0 : 0;
8565 in_height
*= FRAME_X_DISPLAY_INFO (f
)->resy
;
8567 if (! (in_width
<= INT_MAX
&& in_height
<= INT_MAX
8568 && check_image_size (f
, in_width
, in_height
)))
8570 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8573 img
->width
= in_width
;
8574 img
->height
= in_height
;
8576 /* Create the pixmap. */
8577 eassert (img
->pixmap
== NO_PIXMAP
);
8579 if (x_check_image_size (0, img
->width
, img
->height
))
8581 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8583 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
8584 img
->width
, img
->height
,
8585 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
8591 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
8595 /* Call the loader to fill the pixmap. It returns a process object
8596 if successful. We do not record_unwind_protect here because
8597 other places in redisplay like calling window scroll functions
8598 don't either. Let the Lisp loader use `unwind-protect' instead. */
8599 printnum1
= FRAME_X_WINDOW (f
);
8600 printnum2
= img
->pixmap
;
8601 window_and_pixmap_id
8602 = make_formatted_string (buffer
, "%"pMu
" %"pMu
, printnum1
, printnum2
);
8604 printnum1
= FRAME_FOREGROUND_PIXEL (f
);
8605 printnum2
= FRAME_BACKGROUND_PIXEL (f
);
8607 = make_formatted_string (buffer
, "%"pMu
" %"pMu
, printnum1
, printnum2
);
8609 XSETFRAME (frame
, f
);
8610 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
8612 loader
= intern ("gs-load-image");
8614 img
->lisp_data
= call6 (loader
, frame
, img
->spec
,
8615 make_number (img
->width
),
8616 make_number (img
->height
),
8617 window_and_pixmap_id
,
8619 return PROCESSP (img
->lisp_data
);
8623 /* Kill the Ghostscript process that was started to fill PIXMAP on
8624 frame F. Called from XTread_socket when receiving an event
8625 telling Emacs that Ghostscript has finished drawing. */
8628 x_kill_gs_process (Pixmap pixmap
, struct frame
*f
)
8630 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
8635 /* Find the image containing PIXMAP. */
8636 for (i
= 0; i
< c
->used
; ++i
)
8637 if (c
->images
[i
]->pixmap
== pixmap
)
8640 /* Should someone in between have cleared the image cache, for
8641 instance, give up. */
8645 /* Kill the GS process. We should have found PIXMAP in the image
8646 cache and its image should contain a process object. */
8648 eassert (PROCESSP (img
->lisp_data
));
8649 Fkill_process (img
->lisp_data
, Qnil
);
8650 img
->lisp_data
= Qnil
;
8652 #if defined (HAVE_X_WINDOWS)
8654 /* On displays with a mutable colormap, figure out the colors
8655 allocated for the image by looking at the pixels of an XImage for
8657 class = FRAME_X_VISUAL (f
)->class;
8658 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
8664 /* Try to get an XImage for img->pixmep. */
8665 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
8666 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
8671 /* Initialize the color table. */
8672 init_color_table ();
8674 /* For each pixel of the image, look its color up in the
8675 color table. After having done so, the color table will
8676 contain an entry for each color used by the image. */
8677 for (y
= 0; y
< img
->height
; ++y
)
8678 for (x
= 0; x
< img
->width
; ++x
)
8680 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
8681 lookup_pixel_color (f
, pixel
);
8684 /* Record colors in the image. Free color table and XImage. */
8685 #ifdef COLOR_TABLE_SUPPORT
8686 img
->colors
= colors_in_color_table (&img
->ncolors
);
8687 free_color_table ();
8689 XDestroyImage (ximg
);
8691 #if 0 /* This doesn't seem to be the case. If we free the colors
8692 here, we get a BadAccess later in x_clear_image when
8693 freeing the colors. */
8694 /* We have allocated colors once, but Ghostscript has also
8695 allocated colors on behalf of us. So, to get the
8696 reference counts right, free them once. */
8698 x_free_colors (f
, img
->colors
, img
->ncolors
);
8702 image_error ("Cannot get X image of `%s'; colors will not be freed",
8707 #endif /* HAVE_X_WINDOWS */
8709 /* Now that we have the pixmap, compute mask and transform the
8710 image if requested. */
8712 postprocess_image (f
, img
);
8716 #endif /* HAVE_GHOSTSCRIPT */
8719 /***********************************************************************
8721 ***********************************************************************/
8725 DEFUN ("imagep", Fimagep
, Simagep
, 1, 1, 0,
8726 doc
: /* Value is non-nil if SPEC is a valid image specification. */)
8729 return valid_image_p (spec
) ? Qt
: Qnil
;
8733 DEFUN ("lookup-image", Flookup_image
, Slookup_image
, 1, 1, 0, "")
8738 if (valid_image_p (spec
))
8739 id
= lookup_image (SELECTED_FRAME (), spec
);
8742 return make_number (id
);
8745 #endif /* GLYPH_DEBUG */
8748 /***********************************************************************
8750 ***********************************************************************/
8752 DEFUN ("init-image-library", Finit_image_library
, Sinit_image_library
, 1, 1, 0,
8753 doc
: /* Initialize image library implementing image type TYPE.
8754 Return non-nil if TYPE is a supported image type.
8756 If image libraries are loaded dynamically (currently only the case on
8757 MS-Windows), load the library for TYPE if it is not yet loaded, using
8758 the library file(s) specified by `dynamic-library-alist'. */)
8761 return lookup_image_type (type
) ? Qt
: Qnil
;
8764 /* Look up image type TYPE, and return a pointer to its image_type
8765 structure. Return 0 if TYPE is not a known image type. */
8767 static struct image_type
*
8768 lookup_image_type (Lisp_Object type
)
8770 /* Types pbm and xbm are built-in and always available. */
8771 if (EQ (type
, Qpbm
))
8772 return define_image_type (&pbm_type
);
8774 if (EQ (type
, Qxbm
))
8775 return define_image_type (&xbm_type
);
8777 #if defined (HAVE_XPM) || defined (HAVE_NS)
8778 if (EQ (type
, Qxpm
))
8779 return define_image_type (&xpm_type
);
8782 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8783 if (EQ (type
, Qjpeg
))
8784 return define_image_type (&jpeg_type
);
8787 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8788 if (EQ (type
, Qtiff
))
8789 return define_image_type (&tiff_type
);
8792 #if defined (HAVE_GIF) || defined (HAVE_NS)
8793 if (EQ (type
, Qgif
))
8794 return define_image_type (&gif_type
);
8797 #if defined (HAVE_PNG) || defined (HAVE_NS)
8798 if (EQ (type
, Qpng
))
8799 return define_image_type (&png_type
);
8802 #if defined (HAVE_RSVG)
8803 if (EQ (type
, Qsvg
))
8804 return define_image_type (&svg_type
);
8807 #if defined (HAVE_IMAGEMAGICK)
8808 if (EQ (type
, Qimagemagick
))
8809 return define_image_type (&imagemagick_type
);
8812 #ifdef HAVE_GHOSTSCRIPT
8813 if (EQ (type
, Qpostscript
))
8814 return define_image_type (&gs_type
);
8820 /* Reset image_types before dumping.
8821 Called from Fdump_emacs. */
8824 reset_image_types (void)
8828 struct image_type
*next
= image_types
->next
;
8829 xfree (image_types
);
8835 syms_of_image (void)
8837 /* Initialize this only once; it will be reset before dumping. */
8840 /* Must be defined now because we're going to update it below, while
8841 defining the supported image types. */
8842 DEFVAR_LISP ("image-types", Vimage_types
,
8843 doc
: /* List of potentially supported image types.
8844 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8845 To check whether it is really supported, use `image-type-available-p'. */);
8846 Vimage_types
= Qnil
;
8848 DEFVAR_LISP ("max-image-size", Vmax_image_size
,
8849 doc
: /* Maximum size of images.
8850 Emacs will not load an image into memory if its pixel width or
8851 pixel height exceeds this limit.
8853 If the value is an integer, it directly specifies the maximum
8854 image height and width, measured in pixels. If it is a floating
8855 point number, it specifies the maximum image height and width
8856 as a ratio to the frame height and width. If the value is
8857 non-numeric, there is no explicit limit on the size of images. */);
8858 Vmax_image_size
= make_float (MAX_IMAGE_SIZE
);
8860 DEFSYM (Qcount
, "count");
8861 DEFSYM (Qextension_data
, "extension-data");
8862 DEFSYM (Qdelay
, "delay");
8864 DEFSYM (QCascent
, ":ascent");
8865 DEFSYM (QCmargin
, ":margin");
8866 DEFSYM (QCrelief
, ":relief");
8867 DEFSYM (QCconversion
, ":conversion");
8868 DEFSYM (QCcolor_symbols
, ":color-symbols");
8869 DEFSYM (QCheuristic_mask
, ":heuristic-mask");
8870 DEFSYM (QCindex
, ":index");
8871 DEFSYM (QCgeometry
, ":geometry");
8872 DEFSYM (QCcrop
, ":crop");
8873 DEFSYM (QCrotation
, ":rotation");
8874 DEFSYM (QCmatrix
, ":matrix");
8875 DEFSYM (QCcolor_adjustment
, ":color-adjustment");
8876 DEFSYM (QCmask
, ":mask");
8878 DEFSYM (Qlaplace
, "laplace");
8879 DEFSYM (Qemboss
, "emboss");
8880 DEFSYM (Qedge_detection
, "edge-detection");
8881 DEFSYM (Qheuristic
, "heuristic");
8883 DEFSYM (Qpostscript
, "postscript");
8884 #ifdef HAVE_GHOSTSCRIPT
8885 ADD_IMAGE_TYPE (Qpostscript
);
8886 DEFSYM (QCloader
, ":loader");
8887 DEFSYM (QCbounding_box
, ":bounding-box");
8888 DEFSYM (QCpt_width
, ":pt-width");
8889 DEFSYM (QCpt_height
, ":pt-height");
8890 #endif /* HAVE_GHOSTSCRIPT */
8893 DEFSYM (Qlibpng_version
, "libpng-version");
8894 Fset (Qlibpng_version
,
8896 make_number (PNG_LIBPNG_VER
)
8903 DEFSYM (Qpbm
, "pbm");
8904 ADD_IMAGE_TYPE (Qpbm
);
8906 DEFSYM (Qxbm
, "xbm");
8907 ADD_IMAGE_TYPE (Qxbm
);
8909 #if defined (HAVE_XPM) || defined (HAVE_NS)
8910 DEFSYM (Qxpm
, "xpm");
8911 ADD_IMAGE_TYPE (Qxpm
);
8914 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8915 DEFSYM (Qjpeg
, "jpeg");
8916 ADD_IMAGE_TYPE (Qjpeg
);
8919 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8920 DEFSYM (Qtiff
, "tiff");
8921 ADD_IMAGE_TYPE (Qtiff
);
8924 #if defined (HAVE_GIF) || defined (HAVE_NS)
8925 DEFSYM (Qgif
, "gif");
8926 ADD_IMAGE_TYPE (Qgif
);
8929 #if defined (HAVE_PNG) || defined (HAVE_NS)
8930 DEFSYM (Qpng
, "png");
8931 ADD_IMAGE_TYPE (Qpng
);
8934 #if defined (HAVE_IMAGEMAGICK)
8935 DEFSYM (Qimagemagick
, "imagemagick");
8936 ADD_IMAGE_TYPE (Qimagemagick
);
8939 #if defined (HAVE_RSVG)
8940 DEFSYM (Qsvg
, "svg");
8941 ADD_IMAGE_TYPE (Qsvg
);
8943 /* Other libraries used directly by svg code. */
8944 DEFSYM (Qgdk_pixbuf
, "gdk-pixbuf");
8945 DEFSYM (Qglib
, "glib");
8946 DEFSYM (Qgobject
, "gobject");
8947 #endif /* HAVE_NTGUI */
8948 #endif /* HAVE_RSVG */
8950 defsubr (&Sinit_image_library
);
8951 #ifdef HAVE_IMAGEMAGICK
8952 defsubr (&Simagemagick_types
);
8954 defsubr (&Sclear_image_cache
);
8955 defsubr (&Simage_flush
);
8956 defsubr (&Simage_size
);
8957 defsubr (&Simage_mask_p
);
8958 defsubr (&Simage_metadata
);
8962 defsubr (&Slookup_image
);
8965 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images
,
8966 doc
: /* Non-nil means always draw a cross over disabled images.
8967 Disabled images are those having a `:conversion disabled' property.
8968 A cross is always drawn on black & white displays. */);
8969 cross_disabled_images
= 0;
8971 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path
,
8972 doc
: /* List of directories to search for window system bitmap files. */);
8973 Vx_bitmap_file_path
= decode_env_path ((char *) 0, PATH_BITMAPS
);
8975 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay
,
8976 doc
: /* Maximum time after which images are removed from the cache.
8977 When an image has not been displayed this many seconds, Emacs
8978 automatically removes it from the image cache. If the cache contains
8979 a large number of images, the actual eviction time may be shorter.
8980 The value can also be nil, meaning the cache is never cleared.
8982 The function `clear-image-cache' disregards this variable. */);
8983 Vimage_cache_eviction_delay
= make_number (300);
8984 #ifdef HAVE_IMAGEMAGICK
8985 DEFVAR_INT ("imagemagick-render-type", imagemagick_render_type
,
8986 doc
: /* Integer indicating which ImageMagick rendering method to use.
8988 0 -- the default method (pixel pushing)
8989 1 -- a newer method ("MagickExportImagePixels") that may perform
8990 better (speed etc) in some cases, but has not been as thoroughly
8991 tested with Emacs as the default method. This method requires
8992 ImageMagick version 6.4.6 (approximately) or later.
8994 /* MagickExportImagePixels is in 6.4.6-9, but not 6.4.4-10. */
8995 imagemagick_render_type
= 0;