1 /* Functions for image support on window system.
3 Copyright (C) 1989, 1992-2015 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/>. */
24 /* Include this before including <setjmp.h> to work around bugs with
25 older libpng; see Bug#17429. */
26 #if defined HAVE_PNG && !defined HAVE_NS
37 #include "dispextern.h"
38 #include "blockinput.h"
41 #include "character.h"
43 #include "termhooks.h"
46 #ifdef HAVE_SYS_STAT_H
48 #endif /* HAVE_SYS_STAT_H */
50 #ifdef HAVE_SYS_TYPES_H
51 #include <sys/types.h>
52 #endif /* HAVE_SYS_TYPES_H */
54 #ifdef HAVE_WINDOW_SYSTEM
56 #endif /* HAVE_WINDOW_SYSTEM */
59 #define COLOR_TABLE_SUPPORT 1
61 typedef struct x_bitmap_record Bitmap_Record
;
62 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
63 #define NO_PIXMAP None
65 #define PIX_MASK_RETAIN 0
66 #define PIX_MASK_DRAW 1
67 #endif /* HAVE_X_WINDOWS */
71 /* We need (or want) w32.h only when we're _not_ compiling for Cygwin. */
76 /* W32_TODO : Color tables on W32. */
77 #undef COLOR_TABLE_SUPPORT
79 typedef struct w32_bitmap_record Bitmap_Record
;
80 #define GET_PIXEL(ximg, x, y) GetPixel (ximg, x, y)
83 #define PIX_MASK_RETAIN 0
84 #define PIX_MASK_DRAW 1
86 #define x_defined_color w32_defined_color
87 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
89 #endif /* HAVE_NTGUI */
92 #undef COLOR_TABLE_SUPPORT
94 typedef struct ns_bitmap_record Bitmap_Record
;
96 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
99 #define PIX_MASK_RETAIN 0
100 #define PIX_MASK_DRAW 1
102 #define x_defined_color(f, name, color_def, alloc) \
103 ns_defined_color (f, name, color_def, alloc, 0)
104 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
107 static void x_disable_image (struct frame
*, struct image
*);
108 static void x_edge_detection (struct frame
*, struct image
*, Lisp_Object
,
111 static void init_color_table (void);
112 static unsigned long lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
);
113 #ifdef COLOR_TABLE_SUPPORT
114 static void free_color_table (void);
115 static unsigned long *colors_in_color_table (int *n
);
118 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
119 id, which is just an int that this section returns. Bitmaps are
120 reference counted so they can be shared among frames.
122 Bitmap indices are guaranteed to be > 0, so a negative number can
123 be used to indicate no bitmap.
125 If you use x_create_bitmap_from_data, then you must keep track of
126 the bitmaps yourself. That is, creating a bitmap from the same
127 data more than once will not be caught. */
130 /* Use with images created by ns_image_for_XPM. */
132 XGetPixel (XImagePtr ximage
, int x
, int y
)
134 return ns_get_pixel (ximage
, x
, y
);
137 /* Use with images created by ns_image_for_XPM; alpha set to 1;
138 pixel is assumed to be in RGB form. */
140 XPutPixel (XImagePtr ximage
, int x
, int y
, unsigned long pixel
)
142 ns_put_pixel (ximage
, x
, y
, pixel
);
147 /* Functions to access the contents of a bitmap, given an id. */
149 #ifdef HAVE_X_WINDOWS
151 x_bitmap_height (struct frame
*f
, ptrdiff_t id
)
153 return FRAME_DISPLAY_INFO (f
)->bitmaps
[id
- 1].height
;
157 x_bitmap_width (struct frame
*f
, ptrdiff_t id
)
159 return FRAME_DISPLAY_INFO (f
)->bitmaps
[id
- 1].width
;
163 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
165 x_bitmap_pixmap (struct frame
*f
, ptrdiff_t id
)
167 /* HAVE_NTGUI needs the explicit cast here. */
168 return (ptrdiff_t) FRAME_DISPLAY_INFO (f
)->bitmaps
[id
- 1].pixmap
;
172 #ifdef HAVE_X_WINDOWS
174 x_bitmap_mask (struct frame
*f
, ptrdiff_t id
)
176 return FRAME_DISPLAY_INFO (f
)->bitmaps
[id
- 1].mask
;
180 /* Allocate a new bitmap record. Returns index of new record. */
183 x_allocate_bitmap_record (struct frame
*f
)
185 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
188 if (dpyinfo
->bitmaps_last
< dpyinfo
->bitmaps_size
)
189 return ++dpyinfo
->bitmaps_last
;
191 for (i
= 0; i
< dpyinfo
->bitmaps_size
; ++i
)
192 if (dpyinfo
->bitmaps
[i
].refcount
== 0)
196 xpalloc (dpyinfo
->bitmaps
, &dpyinfo
->bitmaps_size
,
197 10, -1, sizeof *dpyinfo
->bitmaps
);
198 return ++dpyinfo
->bitmaps_last
;
201 /* Add one reference to the reference count of the bitmap with id ID. */
204 x_reference_bitmap (struct frame
*f
, ptrdiff_t id
)
206 ++FRAME_DISPLAY_INFO (f
)->bitmaps
[id
- 1].refcount
;
209 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
212 x_create_bitmap_from_data (struct frame
*f
, char *bits
, unsigned int width
, unsigned int height
)
214 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
217 #ifdef HAVE_X_WINDOWS
219 bitmap
= XCreateBitmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
220 bits
, width
, height
);
223 #endif /* HAVE_X_WINDOWS */
227 bitmap
= CreateBitmap (width
, height
,
228 FRAME_DISPLAY_INFO (XFRAME (frame
))->n_planes
,
229 FRAME_DISPLAY_INFO (XFRAME (frame
))->n_cbits
,
233 #endif /* HAVE_NTGUI */
236 void *bitmap
= ns_image_from_XBM (bits
, width
, height
);
241 id
= x_allocate_bitmap_record (f
);
244 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
245 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
248 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
249 dpyinfo
->bitmaps
[id
- 1].height
= height
;
250 dpyinfo
->bitmaps
[id
- 1].width
= width
;
251 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
253 #ifdef HAVE_X_WINDOWS
254 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
255 dpyinfo
->bitmaps
[id
- 1].have_mask
= false;
256 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
257 #endif /* HAVE_X_WINDOWS */
260 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
261 dpyinfo
->bitmaps
[id
- 1].hinst
= NULL
;
262 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
263 #endif /* HAVE_NTGUI */
268 /* Create bitmap from file FILE for frame F. */
271 x_create_bitmap_from_file (struct frame
*f
, Lisp_Object file
)
273 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
276 return -1; /* W32_TODO : bitmap support */
277 #endif /* HAVE_NTGUI */
281 void *bitmap
= ns_image_from_file (file
);
287 id
= x_allocate_bitmap_record (f
);
288 dpyinfo
->bitmaps
[id
- 1].img
= bitmap
;
289 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
290 dpyinfo
->bitmaps
[id
- 1].file
= xlispstrdup (file
);
291 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
292 dpyinfo
->bitmaps
[id
- 1].height
= ns_image_width (bitmap
);
293 dpyinfo
->bitmaps
[id
- 1].width
= ns_image_height (bitmap
);
297 #ifdef HAVE_X_WINDOWS
298 unsigned int width
, height
;
300 int xhot
, yhot
, result
;
305 /* Look for an existing bitmap with the same name. */
306 for (id
= 0; id
< dpyinfo
->bitmaps_last
; ++id
)
308 if (dpyinfo
->bitmaps
[id
].refcount
309 && dpyinfo
->bitmaps
[id
].file
310 && !strcmp (dpyinfo
->bitmaps
[id
].file
, SSDATA (file
)))
312 ++dpyinfo
->bitmaps
[id
].refcount
;
317 /* Search bitmap-file-path for the file, if appropriate. */
318 if (openp (Vx_bitmap_file_path
, file
, Qnil
, &found
,
319 make_number (R_OK
), false)
323 filename
= SSDATA (found
);
325 result
= XReadBitmapFile (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
326 filename
, &width
, &height
, &bitmap
, &xhot
, &yhot
);
327 if (result
!= BitmapSuccess
)
330 id
= x_allocate_bitmap_record (f
);
331 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
332 dpyinfo
->bitmaps
[id
- 1].have_mask
= false;
333 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
334 dpyinfo
->bitmaps
[id
- 1].file
= xlispstrdup (file
);
335 dpyinfo
->bitmaps
[id
- 1].depth
= 1;
336 dpyinfo
->bitmaps
[id
- 1].height
= height
;
337 dpyinfo
->bitmaps
[id
- 1].width
= width
;
340 #endif /* HAVE_X_WINDOWS */
346 free_bitmap_record (Display_Info
*dpyinfo
, Bitmap_Record
*bm
)
348 #ifdef HAVE_X_WINDOWS
349 XFreePixmap (dpyinfo
->display
, bm
->pixmap
);
351 XFreePixmap (dpyinfo
->display
, bm
->mask
);
352 #endif /* HAVE_X_WINDOWS */
355 DeleteObject (bm
->pixmap
);
356 #endif /* HAVE_NTGUI */
359 ns_release_object (bm
->img
);
369 /* Remove reference to bitmap with id number ID. */
372 x_destroy_bitmap (struct frame
*f
, ptrdiff_t id
)
374 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
378 Bitmap_Record
*bm
= &dpyinfo
->bitmaps
[id
- 1];
380 if (--bm
->refcount
== 0)
383 free_bitmap_record (dpyinfo
, bm
);
389 /* Free all the bitmaps for the display specified by DPYINFO. */
392 x_destroy_all_bitmaps (Display_Info
*dpyinfo
)
395 Bitmap_Record
*bm
= dpyinfo
->bitmaps
;
397 for (i
= 0; i
< dpyinfo
->bitmaps_last
; i
++, bm
++)
398 if (bm
->refcount
> 0)
399 free_bitmap_record (dpyinfo
, bm
);
401 dpyinfo
->bitmaps_last
= 0;
404 static bool x_create_x_image_and_pixmap (struct frame
*, int, int, int,
405 XImagePtr
*, Pixmap
*);
406 static void x_destroy_x_image (XImagePtr ximg
);
409 static XImagePtr_or_DC
image_get_x_image_or_dc (struct frame
*, struct image
*,
411 static void image_unget_x_image_or_dc (struct image
*, bool, XImagePtr_or_DC
,
414 static XImagePtr
image_get_x_image (struct frame
*, struct image
*, bool);
415 static void image_unget_x_image (struct image
*, bool, XImagePtr
);
416 #define image_get_x_image_or_dc(f, img, mask_p, dummy) \
417 image_get_x_image (f, img, mask_p)
418 #define image_unget_x_image_or_dc(img, mask_p, ximg, dummy) \
419 image_unget_x_image (img, mask_p, ximg)
422 #ifdef HAVE_X_WINDOWS
424 static void image_sync_to_pixmaps (struct frame
*, struct image
*);
426 /* Useful functions defined in the section
427 `Image type independent image structures' below. */
429 static unsigned long four_corners_best (XImagePtr ximg
,
432 unsigned long height
);
435 /* Create a mask of a bitmap. Note is this not a perfect mask.
436 It's nicer with some borders in this context */
439 x_create_bitmap_mask (struct frame
*f
, ptrdiff_t id
)
442 XImagePtr ximg
, mask_img
;
443 unsigned long width
, height
;
446 unsigned long x
, y
, xp
, xm
, yp
, ym
;
449 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
454 pixmap
= x_bitmap_pixmap (f
, id
);
455 width
= x_bitmap_width (f
, id
);
456 height
= x_bitmap_height (f
, id
);
459 ximg
= XGetImage (FRAME_X_DISPLAY (f
), pixmap
, 0, 0, width
, height
,
468 result
= x_create_x_image_and_pixmap (f
, width
, height
, 1, &mask_img
, &mask
);
473 XDestroyImage (ximg
);
477 bg
= four_corners_best (ximg
, NULL
, width
, height
);
479 for (y
= 0; y
< ximg
->height
; ++y
)
481 for (x
= 0; x
< ximg
->width
; ++x
)
483 xp
= x
!= ximg
->width
- 1 ? x
+ 1 : 0;
484 xm
= x
!= 0 ? x
- 1 : ximg
->width
- 1;
485 yp
= y
!= ximg
->height
- 1 ? y
+ 1 : 0;
486 ym
= y
!= 0 ? y
- 1 : ximg
->height
- 1;
487 if (XGetPixel (ximg
, x
, y
) == bg
488 && XGetPixel (ximg
, x
, yp
) == bg
489 && XGetPixel (ximg
, x
, ym
) == bg
490 && XGetPixel (ximg
, xp
, y
) == bg
491 && XGetPixel (ximg
, xp
, yp
) == bg
492 && XGetPixel (ximg
, xp
, ym
) == bg
493 && XGetPixel (ximg
, xm
, y
) == bg
494 && XGetPixel (ximg
, xm
, yp
) == bg
495 && XGetPixel (ximg
, xm
, ym
) == bg
)
496 XPutPixel (mask_img
, x
, y
, 0);
498 XPutPixel (mask_img
, x
, y
, 1);
502 eassert (input_blocked_p ());
503 gc
= XCreateGC (FRAME_X_DISPLAY (f
), mask
, 0, NULL
);
504 XPutImage (FRAME_X_DISPLAY (f
), mask
, gc
, mask_img
, 0, 0, 0, 0,
506 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
508 dpyinfo
->bitmaps
[id
- 1].have_mask
= true;
509 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
511 XDestroyImage (ximg
);
512 x_destroy_x_image (mask_img
);
515 #endif /* HAVE_X_WINDOWS */
518 /***********************************************************************
520 ***********************************************************************/
522 /* List of supported image types. Use define_image_type to add new
523 types. Use lookup_image_type to find a type for a given symbol. */
525 static struct image_type
*image_types
;
527 /* Forward function prototypes. */
529 static struct image_type
*lookup_image_type (Lisp_Object
);
530 static void x_laplace (struct frame
*, struct image
*);
531 static void x_emboss (struct frame
*, struct image
*);
532 static void x_build_heuristic_mask (struct frame
*, struct image
*,
535 #define CACHE_IMAGE_TYPE(type, status) \
536 do { Vlibrary_cache = Fcons (Fcons (type, status), Vlibrary_cache); } while (0)
538 #define CACHE_IMAGE_TYPE(type, status)
541 #define ADD_IMAGE_TYPE(type) \
542 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
544 /* Define a new image type from TYPE. This adds a copy of TYPE to
545 image_types and caches the loading status of TYPE. */
547 static struct image_type
*
548 define_image_type (struct image_type
*type
)
550 struct image_type
*p
= NULL
;
551 int new_type
= type
->type
;
552 bool type_valid
= true;
556 for (p
= image_types
; p
; p
= p
->next
)
557 if (p
->type
== new_type
)
562 #if defined HAVE_NTGUI && defined WINDOWSNT
563 /* If we failed to load the library before, don't try again. */
564 Lisp_Object tested
= Fassq (builtin_lisp_symbol (new_type
),
566 if (CONSP (tested
) && NILP (XCDR (tested
)))
571 type_valid
= type
->init ();
572 CACHE_IMAGE_TYPE (builtin_lisp_symbol (new_type
),
573 type_valid
? Qt
: Qnil
);
579 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
580 The initialized data segment is read-only. */
581 p
= xmalloc (sizeof *p
);
583 p
->next
= image_types
;
593 /* Value is true if OBJECT is a valid Lisp image specification. A
594 valid image specification is a list whose car is the symbol
595 `image', and whose rest is a property list. The property list must
596 contain a value for key `:type'. That value must be the name of a
597 supported image type. The rest of the property list depends on the
601 valid_image_p (Lisp_Object object
)
609 for (tem
= XCDR (object
); CONSP (tem
); tem
= XCDR (tem
))
610 if (EQ (XCAR (tem
), QCtype
))
613 if (CONSP (tem
) && SYMBOLP (XCAR (tem
)))
615 struct image_type
*type
;
616 type
= lookup_image_type (XCAR (tem
));
618 valid_p
= type
->valid_p (object
);
629 /* Log error message with format string FORMAT and argument ARG.
630 Signaling an error, e.g. when an image cannot be loaded, is not a
631 good idea because this would interrupt redisplay, and the error
632 message display would lead to another redisplay. This function
633 therefore simply displays a message. */
636 image_error (const char *format
, Lisp_Object arg1
, Lisp_Object arg2
)
638 add_to_log (format
, arg1
, arg2
);
643 /***********************************************************************
645 ***********************************************************************/
647 enum image_value_type
649 IMAGE_DONT_CHECK_VALUE_TYPE
,
651 IMAGE_STRING_OR_NIL_VALUE
,
653 IMAGE_POSITIVE_INTEGER_VALUE
,
654 IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
,
655 IMAGE_NON_NEGATIVE_INTEGER_VALUE
,
658 IMAGE_FUNCTION_VALUE
,
663 /* Structure used when parsing image specifications. */
667 /* Name of keyword. */
670 /* The type of value allowed. */
671 enum image_value_type type
;
673 /* True means key must be present. */
676 /* Used to recognize duplicate keywords in a property list. */
679 /* The value that was found. */
684 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
685 has the format (image KEYWORD VALUE ...). One of the keyword/
686 value pairs must be `:type TYPE'. KEYWORDS is a vector of
687 image_keywords structures of size NKEYWORDS describing other
688 allowed keyword/value pairs. Value is true if SPEC is valid. */
691 parse_image_spec (Lisp_Object spec
, struct image_keyword
*keywords
,
692 int nkeywords
, Lisp_Object type
)
701 while (CONSP (plist
))
703 Lisp_Object key
, value
;
705 /* First element of a pair must be a symbol. */
707 plist
= XCDR (plist
);
711 /* There must follow a value. */
714 value
= XCAR (plist
);
715 plist
= XCDR (plist
);
717 /* Find key in KEYWORDS. Error if not found. */
718 for (i
= 0; i
< nkeywords
; ++i
)
719 if (strcmp (keywords
[i
].name
, SSDATA (SYMBOL_NAME (key
))) == 0)
725 /* Record that we recognized the keyword. If a keywords
726 was found more than once, it's an error. */
727 keywords
[i
].value
= value
;
728 if (keywords
[i
].count
> 1)
732 /* Check type of value against allowed type. */
733 switch (keywords
[i
].type
)
735 case IMAGE_STRING_VALUE
:
736 if (!STRINGP (value
))
740 case IMAGE_STRING_OR_NIL_VALUE
:
741 if (!STRINGP (value
) && !NILP (value
))
745 case IMAGE_SYMBOL_VALUE
:
746 if (!SYMBOLP (value
))
750 case IMAGE_POSITIVE_INTEGER_VALUE
:
751 if (! RANGED_INTEGERP (1, value
, INT_MAX
))
755 case IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
:
756 if (RANGED_INTEGERP (0, value
, INT_MAX
))
759 && RANGED_INTEGERP (0, XCAR (value
), INT_MAX
)
760 && RANGED_INTEGERP (0, XCDR (value
), INT_MAX
))
764 case IMAGE_ASCENT_VALUE
:
765 if (SYMBOLP (value
) && EQ (value
, Qcenter
))
767 else if (RANGED_INTEGERP (0, value
, 100))
771 case IMAGE_NON_NEGATIVE_INTEGER_VALUE
:
772 /* Unlike the other integer-related cases, this one does not
773 verify that VALUE fits in 'int'. This is because callers
775 if (!INTEGERP (value
) || XINT (value
) < 0)
779 case IMAGE_DONT_CHECK_VALUE_TYPE
:
782 case IMAGE_FUNCTION_VALUE
:
783 value
= indirect_function (value
);
784 if (!NILP (Ffunctionp (value
)))
788 case IMAGE_NUMBER_VALUE
:
789 if (!INTEGERP (value
) && !FLOATP (value
))
793 case IMAGE_INTEGER_VALUE
:
794 if (! TYPE_RANGED_INTEGERP (int, value
))
798 case IMAGE_BOOL_VALUE
:
799 if (!NILP (value
) && !EQ (value
, Qt
))
808 if (EQ (key
, QCtype
) && !EQ (type
, value
))
812 /* Check that all mandatory fields are present. */
813 for (i
= 0; i
< nkeywords
; ++i
)
814 if (keywords
[i
].mandatory_p
&& keywords
[i
].count
== 0)
821 /* Return the value of KEY in image specification SPEC. Value is nil
822 if KEY is not present in SPEC. Set *FOUND depending on whether KEY
823 was found in SPEC. */
826 image_spec_value (Lisp_Object spec
, Lisp_Object key
, bool *found
)
830 eassert (valid_image_p (spec
));
832 for (tail
= XCDR (spec
);
833 CONSP (tail
) && CONSP (XCDR (tail
));
834 tail
= XCDR (XCDR (tail
)))
836 if (EQ (XCAR (tail
), key
))
840 return XCAR (XCDR (tail
));
850 DEFUN ("image-size", Fimage_size
, Simage_size
, 1, 3, 0,
851 doc
: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
852 PIXELS non-nil means return the size in pixels, otherwise return the
853 size in canonical character units.
854 FRAME is the frame on which the image will be displayed. FRAME nil
855 or omitted means use the selected frame. */)
856 (Lisp_Object spec
, Lisp_Object pixels
, Lisp_Object frame
)
861 if (valid_image_p (spec
))
863 struct frame
*f
= decode_window_system_frame (frame
);
864 ptrdiff_t id
= lookup_image (f
, spec
);
865 struct image
*img
= IMAGE_FROM_ID (f
, id
);
866 int width
= img
->width
+ 2 * img
->hmargin
;
867 int height
= img
->height
+ 2 * img
->vmargin
;
870 size
= Fcons (make_float ((double) width
/ FRAME_COLUMN_WIDTH (f
)),
871 make_float ((double) height
/ FRAME_LINE_HEIGHT (f
)));
873 size
= Fcons (make_number (width
), make_number (height
));
876 error ("Invalid image specification");
882 DEFUN ("image-mask-p", Fimage_mask_p
, Simage_mask_p
, 1, 2, 0,
883 doc
: /* Return t if image SPEC has a mask bitmap.
884 FRAME is the frame on which the image will be displayed. FRAME nil
885 or omitted means use the selected frame. */)
886 (Lisp_Object spec
, Lisp_Object frame
)
891 if (valid_image_p (spec
))
893 struct frame
*f
= decode_window_system_frame (frame
);
894 ptrdiff_t id
= lookup_image (f
, spec
);
895 struct image
*img
= IMAGE_FROM_ID (f
, id
);
900 error ("Invalid image specification");
905 DEFUN ("image-metadata", Fimage_metadata
, Simage_metadata
, 1, 2, 0,
906 doc
: /* Return metadata for image SPEC.
907 FRAME is the frame on which the image will be displayed. FRAME nil
908 or omitted means use the selected frame. */)
909 (Lisp_Object spec
, Lisp_Object frame
)
914 if (valid_image_p (spec
))
916 struct frame
*f
= decode_window_system_frame (frame
);
917 ptrdiff_t id
= lookup_image (f
, spec
);
918 struct image
*img
= IMAGE_FROM_ID (f
, id
);
919 ext
= img
->lisp_data
;
926 /***********************************************************************
927 Image type independent image structures
928 ***********************************************************************/
930 #define MAX_IMAGE_SIZE 10.0
931 /* Allocate and return a new image structure for image specification
932 SPEC. SPEC has a hash value of HASH. */
934 static struct image
*
935 make_image (Lisp_Object spec
, EMACS_UINT hash
)
937 struct image
*img
= xzalloc (sizeof *img
);
938 Lisp_Object file
= image_spec_value (spec
, QCfile
, NULL
);
940 eassert (valid_image_p (spec
));
941 img
->dependencies
= NILP (file
) ? Qnil
: list1 (file
);
942 img
->type
= lookup_image_type (image_spec_value (spec
, QCtype
, NULL
));
943 eassert (img
->type
!= NULL
);
945 img
->lisp_data
= Qnil
;
946 img
->ascent
= DEFAULT_IMAGE_ASCENT
;
948 img
->corners
[BOT_CORNER
] = -1; /* Full image */
953 /* Free image IMG which was used on frame F, including its resources. */
956 free_image (struct frame
*f
, struct image
*img
)
960 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
962 /* Remove IMG from the hash table of its cache. */
964 img
->prev
->next
= img
->next
;
966 c
->buckets
[img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
] = img
->next
;
969 img
->next
->prev
= img
->prev
;
971 c
->images
[img
->id
] = NULL
;
973 /* Windows NT redefines 'free', but in this file, we need to
974 avoid the redefinition. */
978 /* Free resources, then free IMG. */
979 img
->type
->free (f
, img
);
984 /* Return true if the given widths and heights are valid for display. */
987 check_image_size (struct frame
*f
, int width
, int height
)
991 if (width
<= 0 || height
<= 0)
994 if (INTEGERP (Vmax_image_size
))
995 return (width
<= XINT (Vmax_image_size
)
996 && height
<= XINT (Vmax_image_size
));
997 else if (FLOATP (Vmax_image_size
))
1001 w
= FRAME_PIXEL_WIDTH (f
);
1002 h
= FRAME_PIXEL_HEIGHT (f
);
1005 w
= h
= 1024; /* Arbitrary size for unknown frame. */
1006 return (width
<= XFLOAT_DATA (Vmax_image_size
) * w
1007 && height
<= XFLOAT_DATA (Vmax_image_size
) * h
);
1013 /* Prepare image IMG for display on frame F. Must be called before
1014 drawing an image. */
1017 prepare_image_for_display (struct frame
*f
, struct image
*img
)
1019 /* We're about to display IMG, so set its timestamp to `now'. */
1020 img
->timestamp
= current_timespec ();
1022 /* If IMG doesn't have a pixmap yet, load it now, using the image
1023 type dependent loader function. */
1024 if (img
->pixmap
== NO_PIXMAP
&& !img
->load_failed_p
)
1025 img
->load_failed_p
= ! img
->type
->load (f
, img
);
1027 #ifdef HAVE_X_WINDOWS
1028 if (!img
->load_failed_p
)
1031 image_sync_to_pixmaps (f
, img
);
1038 /* Value is the number of pixels for the ascent of image IMG when
1039 drawn in face FACE. */
1042 image_ascent (struct image
*img
, struct face
*face
, struct glyph_slice
*slice
)
1047 if (slice
->height
== img
->height
)
1048 height
= img
->height
+ img
->vmargin
;
1049 else if (slice
->y
== 0)
1050 height
= slice
->height
+ img
->vmargin
;
1052 height
= slice
->height
;
1054 if (img
->ascent
== CENTERED_IMAGE_ASCENT
)
1059 /* W32 specific version. Why?. ++kfs */
1060 ascent
= height
/ 2 - (FONT_DESCENT (face
->font
)
1061 - FONT_BASE (face
->font
)) / 2;
1063 /* This expression is arranged so that if the image can't be
1064 exactly centered, it will be moved slightly up. This is
1065 because a typical font is `top-heavy' (due to the presence
1066 uppercase letters), so the image placement should err towards
1067 being top-heavy too. It also just generally looks better. */
1068 ascent
= (height
+ FONT_BASE (face
->font
)
1069 - FONT_DESCENT (face
->font
) + 1) / 2;
1070 #endif /* HAVE_NTGUI */
1073 ascent
= height
/ 2;
1076 ascent
= height
* (img
->ascent
/ 100.0);
1082 /* Image background colors. */
1084 /* Find the "best" corner color of a bitmap.
1085 On W32, XIMG is assumed to a device context with the bitmap selected. */
1087 static RGB_PIXEL_COLOR
1088 four_corners_best (XImagePtr_or_DC ximg
, int *corners
,
1089 unsigned long width
, unsigned long height
)
1091 RGB_PIXEL_COLOR corner_pixels
[4], best
IF_LINT (= 0);
1094 if (corners
&& corners
[BOT_CORNER
] >= 0)
1096 /* Get the colors at the corner_pixels of ximg. */
1097 corner_pixels
[0] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[TOP_CORNER
]);
1098 corner_pixels
[1] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[TOP_CORNER
]);
1099 corner_pixels
[2] = GET_PIXEL (ximg
, corners
[RIGHT_CORNER
] - 1, corners
[BOT_CORNER
] - 1);
1100 corner_pixels
[3] = GET_PIXEL (ximg
, corners
[LEFT_CORNER
], corners
[BOT_CORNER
] - 1);
1104 /* Get the colors at the corner_pixels of ximg. */
1105 corner_pixels
[0] = GET_PIXEL (ximg
, 0, 0);
1106 corner_pixels
[1] = GET_PIXEL (ximg
, width
- 1, 0);
1107 corner_pixels
[2] = GET_PIXEL (ximg
, width
- 1, height
- 1);
1108 corner_pixels
[3] = GET_PIXEL (ximg
, 0, height
- 1);
1110 /* Choose the most frequently found color as background. */
1111 for (i
= best_count
= 0; i
< 4; ++i
)
1115 for (j
= n
= 0; j
< 4; ++j
)
1116 if (corner_pixels
[i
] == corner_pixels
[j
])
1120 best
= corner_pixels
[i
], best_count
= n
;
1126 /* Portability macros */
1130 #define Free_Pixmap(display, pixmap) \
1131 DeleteObject (pixmap)
1133 #elif defined (HAVE_NS)
1135 #define Free_Pixmap(display, pixmap) \
1136 ns_release_object (pixmap)
1140 #define Free_Pixmap(display, pixmap) \
1141 XFreePixmap (display, pixmap)
1143 #endif /* !HAVE_NTGUI && !HAVE_NS */
1146 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1147 it is guessed heuristically. If non-zero, XIMG is an existing
1148 XImage object (or device context with the image selected on W32) to
1149 use for the heuristic. */
1152 image_background (struct image
*img
, struct frame
*f
, XImagePtr_or_DC ximg
)
1154 if (! img
->background_valid
)
1155 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1157 bool free_ximg
= !ximg
;
1160 #endif /* HAVE_NTGUI */
1163 ximg
= image_get_x_image_or_dc (f
, img
, 0, &prev
);
1165 img
->background
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
1168 image_unget_x_image_or_dc (img
, 0, ximg
, prev
);
1170 img
->background_valid
= 1;
1173 return img
->background
;
1176 /* Return the `background_transparent' field of IMG. If IMG doesn't
1177 have one yet, it is guessed heuristically. If non-zero, MASK is an
1178 existing XImage object to use for the heuristic. */
1181 image_background_transparent (struct image
*img
, struct frame
*f
, XImagePtr_or_DC mask
)
1183 if (! img
->background_transparent_valid
)
1184 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1188 bool free_mask
= !mask
;
1191 #endif /* HAVE_NTGUI */
1194 mask
= image_get_x_image_or_dc (f
, img
, 1, &prev
);
1196 img
->background_transparent
1197 = (four_corners_best (mask
, img
->corners
, img
->width
, img
->height
) == PIX_MASK_RETAIN
);
1200 image_unget_x_image_or_dc (img
, 1, mask
, prev
);
1203 img
->background_transparent
= 0;
1205 img
->background_transparent_valid
= 1;
1208 return img
->background_transparent
;
1211 #if defined (HAVE_PNG) || defined (HAVE_NS) \
1212 || defined (HAVE_IMAGEMAGICK) || defined (HAVE_RSVG)
1214 /* Store F's background color into *BGCOLOR. */
1216 x_query_frame_background_color (struct frame
*f
, XColor
*bgcolor
)
1219 bgcolor
->pixel
= FRAME_BACKGROUND_PIXEL (f
);
1220 x_query_color (f
, bgcolor
);
1222 ns_query_color (FRAME_BACKGROUND_COLOR (f
), bgcolor
, 1);
1226 #endif /* HAVE_PNG || HAVE_NS || HAVE_IMAGEMAGICK || HAVE_RSVG */
1228 /***********************************************************************
1229 Helper functions for X image types
1230 ***********************************************************************/
1232 /* Clear X resources of image IMG on frame F according to FLAGS.
1233 FLAGS is bitwise-or of the following masks:
1234 CLEAR_IMAGE_PIXMAP free the pixmap if any.
1235 CLEAR_IMAGE_MASK means clear the mask pixmap if any.
1236 CLEAR_IMAGE_COLORS means free colors allocated for the image, if
1239 #define CLEAR_IMAGE_PIXMAP (1 << 0)
1240 #define CLEAR_IMAGE_MASK (1 << 1)
1241 #define CLEAR_IMAGE_COLORS (1 << 2)
1244 x_clear_image_1 (struct frame
*f
, struct image
*img
, int flags
)
1246 if (flags
& CLEAR_IMAGE_PIXMAP
)
1250 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->pixmap
);
1251 img
->pixmap
= NO_PIXMAP
;
1252 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1253 img
->background_valid
= 0;
1255 #ifdef HAVE_X_WINDOWS
1258 x_destroy_x_image (img
->ximg
);
1260 img
->background_valid
= 0;
1265 if (flags
& CLEAR_IMAGE_MASK
)
1269 Free_Pixmap (FRAME_X_DISPLAY (f
), img
->mask
);
1270 img
->mask
= NO_PIXMAP
;
1271 img
->background_transparent_valid
= 0;
1273 #ifdef HAVE_X_WINDOWS
1276 x_destroy_x_image (img
->mask_img
);
1277 img
->mask_img
= NULL
;
1278 img
->background_transparent_valid
= 0;
1283 if ((flags
& CLEAR_IMAGE_COLORS
) && img
->ncolors
)
1285 /* W32_TODO: color table support. */
1286 #ifdef HAVE_X_WINDOWS
1287 x_free_colors (f
, img
->colors
, img
->ncolors
);
1288 #endif /* HAVE_X_WINDOWS */
1289 xfree (img
->colors
);
1296 /* Free X resources of image IMG which is used on frame F. */
1299 x_clear_image (struct frame
*f
, struct image
*img
)
1302 x_clear_image_1 (f
, img
,
1303 CLEAR_IMAGE_PIXMAP
| CLEAR_IMAGE_MASK
| CLEAR_IMAGE_COLORS
);
1308 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1309 cannot be allocated, use DFLT. Add a newly allocated color to
1310 IMG->colors, so that it can be freed again. Value is the pixel
1313 static unsigned long
1314 x_alloc_image_color (struct frame
*f
, struct image
*img
, Lisp_Object color_name
,
1318 unsigned long result
;
1320 eassert (STRINGP (color_name
));
1322 if (x_defined_color (f
, SSDATA (color_name
), &color
, 1)
1323 && img
->ncolors
< min (min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *img
->colors
,
1326 /* This isn't called frequently so we get away with simply
1327 reallocating the color vector to the needed size, here. */
1328 ptrdiff_t ncolors
= img
->ncolors
+ 1;
1329 img
->colors
= xrealloc (img
->colors
, ncolors
* sizeof *img
->colors
);
1330 img
->colors
[ncolors
- 1] = color
.pixel
;
1331 img
->ncolors
= ncolors
;
1332 result
= color
.pixel
;
1342 /***********************************************************************
1344 ***********************************************************************/
1346 static void cache_image (struct frame
*f
, struct image
*img
);
1348 /* Return a new, initialized image cache that is allocated from the
1349 heap. Call free_image_cache to free an image cache. */
1351 struct image_cache
*
1352 make_image_cache (void)
1354 struct image_cache
*c
= xmalloc (sizeof *c
);
1357 c
->used
= c
->refcount
= 0;
1358 c
->images
= xmalloc (c
->size
* sizeof *c
->images
);
1359 c
->buckets
= xzalloc (IMAGE_CACHE_BUCKETS_SIZE
* sizeof *c
->buckets
);
1364 /* Find an image matching SPEC in the cache, and return it. If no
1365 image is found, return NULL. */
1366 static struct image
*
1367 search_image_cache (struct frame
*f
, Lisp_Object spec
, EMACS_UINT hash
)
1370 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1371 int i
= hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1373 if (!c
) return NULL
;
1375 /* If the image spec does not specify a background color, the cached
1376 image must have the same background color as the current frame.
1377 The foreground color must also match, for the sake of monochrome
1380 In fact, we could ignore the foreground color matching condition
1381 for color images, or if the image spec specifies :foreground;
1382 similarly we could ignore the background color matching condition
1383 for formats that don't use transparency (such as jpeg), or if the
1384 image spec specifies :background. However, the extra memory
1385 usage is probably negligible in practice, so we don't bother. */
1387 for (img
= c
->buckets
[i
]; img
; img
= img
->next
)
1388 if (img
->hash
== hash
1389 && !NILP (Fequal (img
->spec
, spec
))
1390 && img
->frame_foreground
== FRAME_FOREGROUND_PIXEL (f
)
1391 && img
->frame_background
== FRAME_BACKGROUND_PIXEL (f
))
1397 /* Search frame F for an image with spec SPEC, and free it. */
1400 uncache_image (struct frame
*f
, Lisp_Object spec
)
1402 struct image
*img
= search_image_cache (f
, spec
, sxhash (spec
, 0));
1405 free_image (f
, img
);
1406 /* As display glyphs may still be referring to the image ID, we
1407 must garbage the frame (Bug#6426). */
1408 SET_FRAME_GARBAGED (f
);
1413 /* Free image cache of frame F. Be aware that X frames share images
1417 free_image_cache (struct frame
*f
)
1419 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1424 /* Cache should not be referenced by any frame when freed. */
1425 eassert (c
->refcount
== 0);
1427 for (i
= 0; i
< c
->used
; ++i
)
1428 free_image (f
, c
->images
[i
]);
1432 FRAME_IMAGE_CACHE (f
) = NULL
;
1437 /* Clear image cache of frame F. FILTER=t means free all images.
1438 FILTER=nil means clear only images that haven't been
1439 displayed for some time.
1440 Else, only free the images which have FILTER in their `dependencies'.
1441 Should be called from time to time to reduce the number of loaded images.
1442 If image-cache-eviction-delay is non-nil, this frees images in the cache
1443 which weren't displayed for at least that many seconds. */
1446 clear_image_cache (struct frame
*f
, Lisp_Object filter
)
1448 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1452 ptrdiff_t i
, nfreed
= 0;
1454 /* Block input so that we won't be interrupted by a SIGIO
1455 while being in an inconsistent state. */
1460 /* Filter image cache. */
1461 for (i
= 0; i
< c
->used
; ++i
)
1463 struct image
*img
= c
->images
[i
];
1464 if (img
&& (EQ (Qt
, filter
)
1465 || !NILP (Fmember (filter
, img
->dependencies
))))
1467 free_image (f
, img
);
1472 else if (INTEGERP (Vimage_cache_eviction_delay
))
1474 /* Free cache based on timestamp. */
1475 struct timespec old
, t
;
1477 ptrdiff_t nimages
= 0;
1479 for (i
= 0; i
< c
->used
; ++i
)
1483 /* If the number of cached images has grown unusually large,
1484 decrease the cache eviction delay (Bug#6230). */
1485 delay
= XINT (Vimage_cache_eviction_delay
);
1487 delay
= 1600 * delay
/ nimages
/ nimages
;
1488 delay
= max (delay
, 1);
1490 t
= current_timespec ();
1491 old
= timespec_sub (t
, dtotimespec (delay
));
1493 for (i
= 0; i
< c
->used
; ++i
)
1495 struct image
*img
= c
->images
[i
];
1496 if (img
&& timespec_cmp (img
->timestamp
, old
) < 0)
1498 free_image (f
, img
);
1504 /* We may be clearing the image cache because, for example,
1505 Emacs was iconified for a longer period of time. In that
1506 case, current matrices may still contain references to
1507 images freed above. So, clear these matrices. */
1510 Lisp_Object tail
, frame
;
1512 FOR_EACH_FRAME (tail
, frame
)
1514 struct frame
*fr
= XFRAME (frame
);
1515 if (FRAME_IMAGE_CACHE (fr
) == c
)
1516 clear_current_matrices (fr
);
1519 windows_or_buffers_changed
= 19;
1527 clear_image_caches (Lisp_Object filter
)
1529 /* FIXME: We want to do
1530 * struct terminal *t;
1531 * for (t = terminal_list; t; t = t->next_terminal)
1532 * clear_image_cache (t, filter); */
1533 Lisp_Object tail
, frame
;
1534 FOR_EACH_FRAME (tail
, frame
)
1535 if (FRAME_WINDOW_P (XFRAME (frame
)))
1536 clear_image_cache (XFRAME (frame
), filter
);
1539 DEFUN ("clear-image-cache", Fclear_image_cache
, Sclear_image_cache
,
1541 doc
: /* Clear the image cache.
1542 FILTER nil or a frame means clear all images in the selected frame.
1543 FILTER t means clear the image caches of all frames.
1544 Anything else, means only clear those images which refer to FILTER,
1545 which is then usually a filename. */)
1546 (Lisp_Object filter
)
1548 if (!(EQ (filter
, Qnil
) || FRAMEP (filter
)))
1549 clear_image_caches (filter
);
1551 clear_image_cache (decode_window_system_frame (filter
), Qt
);
1557 DEFUN ("image-flush", Fimage_flush
, Simage_flush
,
1559 doc
: /* Flush the image with specification SPEC on frame FRAME.
1560 This removes the image from the Emacs image cache. If SPEC specifies
1561 an image file, the next redisplay of this image will read from the
1562 current contents of that file.
1564 FRAME nil or omitted means use the selected frame.
1565 FRAME t means refresh the image on all frames. */)
1566 (Lisp_Object spec
, Lisp_Object frame
)
1568 if (!valid_image_p (spec
))
1569 error ("Invalid image specification");
1574 FOR_EACH_FRAME (tail
, frame
)
1576 struct frame
*f
= XFRAME (frame
);
1577 if (FRAME_WINDOW_P (f
))
1578 uncache_image (f
, spec
);
1582 uncache_image (decode_window_system_frame (frame
), spec
);
1588 /* Compute masks and transform image IMG on frame F, as specified
1589 by the image's specification, */
1592 postprocess_image (struct frame
*f
, struct image
*img
)
1594 /* Manipulation of the image's mask. */
1597 Lisp_Object conversion
, spec
;
1602 /* `:heuristic-mask t'
1604 means build a mask heuristically.
1605 `:heuristic-mask (R G B)'
1606 `:mask (heuristic (R G B))'
1607 means build a mask from color (R G B) in the
1610 means remove a mask, if any. */
1612 mask
= image_spec_value (spec
, QCheuristic_mask
, NULL
);
1614 x_build_heuristic_mask (f
, img
, mask
);
1619 mask
= image_spec_value (spec
, QCmask
, &found_p
);
1621 if (EQ (mask
, Qheuristic
))
1622 x_build_heuristic_mask (f
, img
, Qt
);
1623 else if (CONSP (mask
)
1624 && EQ (XCAR (mask
), Qheuristic
))
1626 if (CONSP (XCDR (mask
)))
1627 x_build_heuristic_mask (f
, img
, XCAR (XCDR (mask
)));
1629 x_build_heuristic_mask (f
, img
, XCDR (mask
));
1631 else if (NILP (mask
) && found_p
&& img
->mask
)
1632 x_clear_image_1 (f
, img
, CLEAR_IMAGE_MASK
);
1636 /* Should we apply an image transformation algorithm? */
1637 conversion
= image_spec_value (spec
, QCconversion
, NULL
);
1638 if (EQ (conversion
, Qdisabled
))
1639 x_disable_image (f
, img
);
1640 else if (EQ (conversion
, Qlaplace
))
1642 else if (EQ (conversion
, Qemboss
))
1644 else if (CONSP (conversion
)
1645 && EQ (XCAR (conversion
), Qedge_detection
))
1648 tem
= XCDR (conversion
);
1650 x_edge_detection (f
, img
,
1651 Fplist_get (tem
, QCmatrix
),
1652 Fplist_get (tem
, QCcolor_adjustment
));
1658 /* Return the id of image with Lisp specification SPEC on frame F.
1659 SPEC must be a valid Lisp image specification (see valid_image_p). */
1662 lookup_image (struct frame
*f
, Lisp_Object spec
)
1667 /* F must be a window-system frame, and SPEC must be a valid image
1669 eassert (FRAME_WINDOW_P (f
));
1670 eassert (valid_image_p (spec
));
1672 /* Look up SPEC in the hash table of the image cache. */
1673 hash
= sxhash (spec
, 0);
1674 img
= search_image_cache (f
, spec
, hash
);
1675 if (img
&& img
->load_failed_p
)
1677 free_image (f
, img
);
1681 /* If not found, create a new image and cache it. */
1685 img
= make_image (spec
, hash
);
1686 cache_image (f
, img
);
1687 img
->load_failed_p
= ! img
->type
->load (f
, img
);
1688 img
->frame_foreground
= FRAME_FOREGROUND_PIXEL (f
);
1689 img
->frame_background
= FRAME_BACKGROUND_PIXEL (f
);
1691 /* If we can't load the image, and we don't have a width and
1692 height, use some arbitrary width and height so that we can
1693 draw a rectangle for it. */
1694 if (img
->load_failed_p
)
1698 value
= image_spec_value (spec
, QCwidth
, NULL
);
1699 img
->width
= (INTEGERP (value
)
1700 ? XFASTINT (value
) : DEFAULT_IMAGE_WIDTH
);
1701 value
= image_spec_value (spec
, QCheight
, NULL
);
1702 img
->height
= (INTEGERP (value
)
1703 ? XFASTINT (value
) : DEFAULT_IMAGE_HEIGHT
);
1707 /* Handle image type independent image attributes
1708 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1709 `:background COLOR'. */
1710 Lisp_Object ascent
, margin
, relief
, bg
;
1713 ascent
= image_spec_value (spec
, QCascent
, NULL
);
1714 if (INTEGERP (ascent
))
1715 img
->ascent
= XFASTINT (ascent
);
1716 else if (EQ (ascent
, Qcenter
))
1717 img
->ascent
= CENTERED_IMAGE_ASCENT
;
1719 margin
= image_spec_value (spec
, QCmargin
, NULL
);
1720 if (INTEGERP (margin
))
1721 img
->vmargin
= img
->hmargin
= XFASTINT (margin
);
1722 else if (CONSP (margin
))
1724 img
->hmargin
= XFASTINT (XCAR (margin
));
1725 img
->vmargin
= XFASTINT (XCDR (margin
));
1728 relief
= image_spec_value (spec
, QCrelief
, NULL
);
1729 relief_bound
= INT_MAX
- max (img
->hmargin
, img
->vmargin
);
1730 if (RANGED_INTEGERP (- relief_bound
, relief
, relief_bound
))
1732 img
->relief
= XINT (relief
);
1733 img
->hmargin
+= eabs (img
->relief
);
1734 img
->vmargin
+= eabs (img
->relief
);
1737 if (! img
->background_valid
)
1739 bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
1743 = x_alloc_image_color (f
, img
, bg
,
1744 FRAME_BACKGROUND_PIXEL (f
));
1745 img
->background_valid
= 1;
1749 /* Do image transformations and compute masks, unless we
1750 don't have the image yet. */
1751 if (!EQ (builtin_lisp_symbol (img
->type
->type
), Qpostscript
))
1752 postprocess_image (f
, img
);
1758 /* We're using IMG, so set its timestamp to `now'. */
1759 img
->timestamp
= current_timespec ();
1761 /* Value is the image id. */
1766 /* Cache image IMG in the image cache of frame F. */
1769 cache_image (struct frame
*f
, struct image
*img
)
1771 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
1774 /* Find a free slot in c->images. */
1775 for (i
= 0; i
< c
->used
; ++i
)
1776 if (c
->images
[i
] == NULL
)
1779 /* If no free slot found, maybe enlarge c->images. */
1780 if (i
== c
->used
&& c
->used
== c
->size
)
1781 c
->images
= xpalloc (c
->images
, &c
->size
, 1, -1, sizeof *c
->images
);
1783 /* Add IMG to c->images, and assign IMG an id. */
1789 /* Add IMG to the cache's hash table. */
1790 i
= img
->hash
% IMAGE_CACHE_BUCKETS_SIZE
;
1791 img
->next
= c
->buckets
[i
];
1793 img
->next
->prev
= img
;
1795 c
->buckets
[i
] = img
;
1799 /* Call FN on every image in the image cache of frame F. Used to mark
1800 Lisp Objects in the image cache. */
1802 /* Mark Lisp objects in image IMG. */
1805 mark_image (struct image
*img
)
1807 mark_object (img
->spec
);
1808 mark_object (img
->dependencies
);
1810 if (!NILP (img
->lisp_data
))
1811 mark_object (img
->lisp_data
);
1816 mark_image_cache (struct image_cache
*c
)
1821 for (i
= 0; i
< c
->used
; ++i
)
1823 mark_image (c
->images
[i
]);
1829 /***********************************************************************
1830 X / NS / W32 support code
1831 ***********************************************************************/
1833 /* Return true if XIMG's size WIDTH x HEIGHT doesn't break the
1835 WIDTH and HEIGHT must both be positive.
1836 If XIMG is null, assume it is a bitmap. */
1838 x_check_image_size (XImagePtr ximg
, int width
, int height
)
1840 #ifdef HAVE_X_WINDOWS
1841 /* Respect Xlib's limits: it cannot deal with images that have more
1842 than INT_MAX (and/or UINT_MAX) bytes. And respect Emacs's limits
1843 of PTRDIFF_MAX (and/or SIZE_MAX) bytes for any object. */
1846 XLIB_BYTES_MAX
= min (INT_MAX
, UINT_MAX
),
1847 X_IMAGE_BYTES_MAX
= min (XLIB_BYTES_MAX
, min (PTRDIFF_MAX
, SIZE_MAX
))
1850 int bitmap_pad
, depth
, bytes_per_line
;
1853 bitmap_pad
= ximg
->bitmap_pad
;
1854 depth
= ximg
->depth
;
1855 bytes_per_line
= ximg
->bytes_per_line
;
1861 bytes_per_line
= (width
>> 3) + ((width
& 7) != 0);
1863 return (width
<= (INT_MAX
- (bitmap_pad
- 1)) / depth
1864 && height
<= X_IMAGE_BYTES_MAX
/ bytes_per_line
);
1866 /* FIXME: Implement this check for the HAVE_NS and HAVE_NTGUI cases.
1867 For now, assume that every image size is allowed on these systems. */
1872 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1873 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1874 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1875 via xmalloc. Print error messages via image_error if an error
1876 occurs. Value is true if successful.
1878 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1879 should indicate the bit depth of the image. */
1882 x_create_x_image_and_pixmap (struct frame
*f
, int width
, int height
, int depth
,
1883 XImagePtr
*ximg
, Pixmap
*pixmap
)
1885 #ifdef HAVE_X_WINDOWS
1886 Display
*display
= FRAME_X_DISPLAY (f
);
1887 Window window
= FRAME_X_WINDOW (f
);
1888 Screen
*screen
= FRAME_X_SCREEN (f
);
1890 eassert (input_blocked_p ());
1893 depth
= DefaultDepthOfScreen (screen
);
1894 *ximg
= XCreateImage (display
, DefaultVisualOfScreen (screen
),
1895 depth
, ZPixmap
, 0, NULL
, width
, height
,
1896 depth
> 16 ? 32 : depth
> 8 ? 16 : 8, 0);
1899 image_error ("Unable to allocate X image", Qnil
, Qnil
);
1903 if (! x_check_image_size (*ximg
, width
, height
))
1905 x_destroy_x_image (*ximg
);
1907 image_error ("Image too large (%dx%d)",
1908 make_number (width
), make_number (height
));
1912 /* Allocate image raster. */
1913 (*ximg
)->data
= xmalloc ((*ximg
)->bytes_per_line
* height
);
1915 /* Allocate a pixmap of the same size. */
1916 *pixmap
= XCreatePixmap (display
, window
, width
, height
, depth
);
1917 if (*pixmap
== NO_PIXMAP
)
1919 x_destroy_x_image (*ximg
);
1921 image_error ("Unable to create X pixmap", Qnil
, Qnil
);
1926 #endif /* HAVE_X_WINDOWS */
1930 BITMAPINFOHEADER
*header
;
1932 int scanline_width_bits
;
1934 int palette_colors
= 0;
1939 if (depth
!= 1 && depth
!= 4 && depth
!= 8
1940 && depth
!= 16 && depth
!= 24 && depth
!= 32)
1942 image_error ("Invalid image bit depth specified", Qnil
, Qnil
);
1946 scanline_width_bits
= width
* depth
;
1947 remainder
= scanline_width_bits
% 32;
1950 scanline_width_bits
+= 32 - remainder
;
1952 /* Bitmaps with a depth less than 16 need a palette. */
1953 /* BITMAPINFO structure already contains the first RGBQUAD. */
1955 palette_colors
= 1 << (depth
- 1);
1957 *ximg
= xmalloc (sizeof (XImage
) + palette_colors
* sizeof (RGBQUAD
));
1959 header
= &(*ximg
)->info
.bmiHeader
;
1960 memset (&(*ximg
)->info
, 0, sizeof (BITMAPINFO
));
1961 header
->biSize
= sizeof (*header
);
1962 header
->biWidth
= width
;
1963 header
->biHeight
= -height
; /* negative indicates a top-down bitmap. */
1964 header
->biPlanes
= 1;
1965 header
->biBitCount
= depth
;
1966 header
->biCompression
= BI_RGB
;
1967 header
->biClrUsed
= palette_colors
;
1969 /* TODO: fill in palette. */
1972 (*ximg
)->info
.bmiColors
[0].rgbBlue
= 0;
1973 (*ximg
)->info
.bmiColors
[0].rgbGreen
= 0;
1974 (*ximg
)->info
.bmiColors
[0].rgbRed
= 0;
1975 (*ximg
)->info
.bmiColors
[0].rgbReserved
= 0;
1976 (*ximg
)->info
.bmiColors
[1].rgbBlue
= 255;
1977 (*ximg
)->info
.bmiColors
[1].rgbGreen
= 255;
1978 (*ximg
)->info
.bmiColors
[1].rgbRed
= 255;
1979 (*ximg
)->info
.bmiColors
[1].rgbReserved
= 0;
1982 hdc
= get_frame_dc (f
);
1984 /* Create a DIBSection and raster array for the bitmap,
1985 and store its handle in *pixmap. */
1986 *pixmap
= CreateDIBSection (hdc
, &((*ximg
)->info
),
1987 (depth
< 16) ? DIB_PAL_COLORS
: DIB_RGB_COLORS
,
1988 /* casting avoids a GCC warning */
1989 (void **)&((*ximg
)->data
), NULL
, 0);
1991 /* Realize display palette and garbage all frames. */
1992 release_frame_dc (f
, hdc
);
1994 if (*pixmap
== NULL
)
1996 DWORD err
= GetLastError ();
1997 Lisp_Object errcode
;
1998 /* All system errors are < 10000, so the following is safe. */
1999 XSETINT (errcode
, err
);
2000 image_error ("Unable to create bitmap, error code %d", errcode
, Qnil
);
2001 x_destroy_x_image (*ximg
);
2008 #endif /* HAVE_NTGUI */
2011 *pixmap
= ns_image_for_XPM (width
, height
, depth
);
2015 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil
, Qnil
);
2024 /* Destroy XImage XIMG. Free XIMG->data. */
2027 x_destroy_x_image (XImagePtr ximg
)
2029 eassert (input_blocked_p ());
2032 #ifdef HAVE_X_WINDOWS
2035 XDestroyImage (ximg
);
2036 #endif /* HAVE_X_WINDOWS */
2038 /* Data will be freed by DestroyObject. */
2041 #endif /* HAVE_NTGUI */
2043 ns_release_object (ximg
);
2044 #endif /* HAVE_NS */
2049 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2050 are width and height of both the image and pixmap. */
2053 x_put_x_image (struct frame
*f
, XImagePtr ximg
, Pixmap pixmap
, int width
, int height
)
2055 #ifdef HAVE_X_WINDOWS
2058 eassert (input_blocked_p ());
2059 gc
= XCreateGC (FRAME_X_DISPLAY (f
), pixmap
, 0, NULL
);
2060 XPutImage (FRAME_X_DISPLAY (f
), pixmap
, gc
, ximg
, 0, 0, 0, 0, width
, height
);
2061 XFreeGC (FRAME_X_DISPLAY (f
), gc
);
2062 #endif /* HAVE_X_WINDOWS */
2065 #if 0 /* I don't think this is necessary looking at where it is used. */
2066 HDC hdc
= get_frame_dc (f
);
2067 SetDIBits (hdc
, pixmap
, 0, height
, ximg
->data
, &(ximg
->info
), DIB_RGB_COLORS
);
2068 release_frame_dc (f
, hdc
);
2070 #endif /* HAVE_NTGUI */
2073 eassert (ximg
== pixmap
);
2074 ns_retain_object (ximg
);
2078 /* Thin wrapper for x_create_x_image_and_pixmap, so that it matches
2079 with image_put_x_image. */
2082 image_create_x_image_and_pixmap (struct frame
*f
, struct image
*img
,
2083 int width
, int height
, int depth
,
2084 XImagePtr
*ximg
, bool mask_p
)
2086 eassert ((!mask_p
? img
->pixmap
: img
->mask
) == NO_PIXMAP
);
2088 return x_create_x_image_and_pixmap (f
, width
, height
, depth
, ximg
,
2089 !mask_p
? &img
->pixmap
: &img
->mask
);
2092 /* Put X image XIMG into image IMG on frame F, as a mask if and only
2093 if MASK_P. On X, this simply records XIMG on a member of IMG, so
2094 it can be put into the pixmap afterwards via image_sync_to_pixmaps.
2095 On the other platforms, it puts XIMG into the pixmap, then frees
2096 the X image and its buffer. */
2099 image_put_x_image (struct frame
*f
, struct image
*img
, XImagePtr ximg
,
2102 #ifdef HAVE_X_WINDOWS
2105 eassert (img
->ximg
== NULL
);
2110 eassert (img
->mask_img
== NULL
);
2111 img
->mask_img
= ximg
;
2114 x_put_x_image (f
, ximg
, !mask_p
? img
->pixmap
: img
->mask
,
2115 img
->width
, img
->height
);
2116 x_destroy_x_image (ximg
);
2120 #ifdef HAVE_X_WINDOWS
2121 /* Put the X images recorded in IMG on frame F into pixmaps, then free
2122 the X images and their buffers. */
2125 image_sync_to_pixmaps (struct frame
*f
, struct image
*img
)
2129 x_put_x_image (f
, img
->ximg
, img
->pixmap
, img
->width
, img
->height
);
2130 x_destroy_x_image (img
->ximg
);
2135 x_put_x_image (f
, img
->mask_img
, img
->mask
, img
->width
, img
->height
);
2136 x_destroy_x_image (img
->mask_img
);
2137 img
->mask_img
= NULL
;
2143 /* Create a memory device context for IMG on frame F. It stores the
2144 currently selected GDI object into *PREV for future restoration by
2145 image_unget_x_image_or_dc. */
2147 static XImagePtr_or_DC
2148 image_get_x_image_or_dc (struct frame
*f
, struct image
*img
, bool mask_p
,
2151 HDC frame_dc
= get_frame_dc (f
);
2152 XImagePtr_or_DC ximg
= CreateCompatibleDC (frame_dc
);
2154 release_frame_dc (f
, frame_dc
);
2155 *prev
= SelectObject (ximg
, !mask_p
? img
->pixmap
: img
->mask
);
2161 image_unget_x_image_or_dc (struct image
*img
, bool mask_p
,
2162 XImagePtr_or_DC ximg
, HGDIOBJ prev
)
2164 SelectObject (ximg
, prev
);
2167 #else /* !HAVE_NTGUI */
2168 /* Get the X image for IMG on frame F. The resulting X image data
2169 should be treated as read-only at least on X. */
2172 image_get_x_image (struct frame
*f
, struct image
*img
, bool mask_p
)
2174 #ifdef HAVE_X_WINDOWS
2175 XImagePtr ximg_in_img
= !mask_p
? img
->ximg
: img
->mask_img
;
2180 return XGetImage (FRAME_X_DISPLAY (f
), !mask_p
? img
->pixmap
: img
->mask
,
2181 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
2182 #elif defined (HAVE_NS)
2183 XImagePtr pixmap
= !mask_p
? img
->pixmap
: img
->mask
;
2185 ns_retain_object (pixmap
);
2191 image_unget_x_image (struct image
*img
, bool mask_p
, XImagePtr ximg
)
2193 #ifdef HAVE_X_WINDOWS
2194 XImagePtr ximg_in_img
= !mask_p
? img
->ximg
: img
->mask_img
;
2197 eassert (ximg
== ximg_in_img
);
2199 XDestroyImage (ximg
);
2200 #elif defined (HAVE_NS)
2201 ns_release_object (ximg
);
2204 #endif /* !HAVE_NTGUI */
2207 /***********************************************************************
2209 ***********************************************************************/
2211 /* Find image file FILE. Look in data-directory/images, then
2212 x-bitmap-file-path. Value is the encoded full name of the file
2213 found, or nil if not found. */
2216 x_find_image_file (Lisp_Object file
)
2218 Lisp_Object file_found
, search_path
;
2221 /* TODO I think this should use something like image-load-path
2222 instead. Unfortunately, that can contain non-string elements. */
2223 search_path
= Fcons (Fexpand_file_name (build_string ("images"),
2225 Vx_bitmap_file_path
);
2227 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2228 fd
= openp (search_path
, file
, Qnil
, &file_found
, Qnil
, false);
2234 file_found
= ENCODE_FILE (file_found
);
2243 /* Read FILE into memory. Value is a pointer to a buffer allocated
2244 with xmalloc holding FILE's contents. Value is null if an error
2245 occurred. *SIZE is set to the size of the file. */
2247 static unsigned char *
2248 slurp_file (char *file
, ptrdiff_t *size
)
2250 FILE *fp
= emacs_fopen (file
, "rb");
2251 unsigned char *buf
= NULL
;
2256 ptrdiff_t count
= SPECPDL_INDEX ();
2257 record_unwind_protect_ptr (fclose_unwind
, fp
);
2259 if (fstat (fileno (fp
), &st
) == 0
2260 && 0 <= st
.st_size
&& st
.st_size
< min (PTRDIFF_MAX
, SIZE_MAX
))
2262 /* Report an error if we read past the purported EOF.
2263 This can happen if the file grows as we read it. */
2264 ptrdiff_t buflen
= st
.st_size
;
2265 buf
= xmalloc (buflen
+ 1);
2266 if (fread (buf
, 1, buflen
+ 1, fp
) == buflen
)
2275 unbind_to (count
, Qnil
);
2283 /***********************************************************************
2285 ***********************************************************************/
2287 static bool xbm_load (struct frame
*f
, struct image
*img
);
2288 static bool xbm_image_p (Lisp_Object object
);
2289 static bool xbm_file_p (Lisp_Object
);
2292 /* Indices of image specification fields in xbm_format, below. */
2294 enum xbm_keyword_index
2312 /* Vector of image_keyword structures describing the format
2313 of valid XBM image specifications. */
2315 static const struct image_keyword xbm_format
[XBM_LAST
] =
2317 {":type", IMAGE_SYMBOL_VALUE
, 1},
2318 {":file", IMAGE_STRING_VALUE
, 0},
2319 {":width", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2320 {":height", IMAGE_POSITIVE_INTEGER_VALUE
, 0},
2321 {":data", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2322 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
2323 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
2324 {":ascent", IMAGE_ASCENT_VALUE
, 0},
2325 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
2326 {":relief", IMAGE_INTEGER_VALUE
, 0},
2327 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2328 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
2329 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
2332 /* Structure describing the image type XBM. */
2334 static struct image_type xbm_type
=
2336 SYMBOL_INDEX (Qxbm
),
2344 /* Tokens returned from xbm_scan. */
2353 /* Return true if OBJECT is a valid XBM-type image specification.
2354 A valid specification is a list starting with the symbol `image'
2355 The rest of the list is a property list which must contain an
2358 If the specification specifies a file to load, it must contain
2359 an entry `:file FILENAME' where FILENAME is a string.
2361 If the specification is for a bitmap loaded from memory it must
2362 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2363 WIDTH and HEIGHT are integers > 0. DATA may be:
2365 1. a string large enough to hold the bitmap data, i.e. it must
2366 have a size >= (WIDTH + 7) / 8 * HEIGHT
2368 2. a bool-vector of size >= WIDTH * HEIGHT
2370 3. a vector of strings or bool-vectors, one for each line of the
2373 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2374 may not be specified in this case because they are defined in the
2377 Both the file and data forms may contain the additional entries
2378 `:background COLOR' and `:foreground COLOR'. If not present,
2379 foreground and background of the frame on which the image is
2380 displayed is used. */
2383 xbm_image_p (Lisp_Object object
)
2385 struct image_keyword kw
[XBM_LAST
];
2387 memcpy (kw
, xbm_format
, sizeof kw
);
2388 if (!parse_image_spec (object
, kw
, XBM_LAST
, Qxbm
))
2391 eassert (EQ (kw
[XBM_TYPE
].value
, Qxbm
));
2393 if (kw
[XBM_FILE
].count
)
2395 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_DATA
].count
)
2398 else if (kw
[XBM_DATA
].count
&& xbm_file_p (kw
[XBM_DATA
].value
))
2400 /* In-memory XBM file. */
2401 if (kw
[XBM_WIDTH
].count
|| kw
[XBM_HEIGHT
].count
|| kw
[XBM_FILE
].count
)
2409 /* Entries for `:width', `:height' and `:data' must be present. */
2410 if (!kw
[XBM_WIDTH
].count
2411 || !kw
[XBM_HEIGHT
].count
2412 || !kw
[XBM_DATA
].count
)
2415 data
= kw
[XBM_DATA
].value
;
2416 width
= XFASTINT (kw
[XBM_WIDTH
].value
);
2417 height
= XFASTINT (kw
[XBM_HEIGHT
].value
);
2419 /* Check type of data, and width and height against contents of
2425 /* Number of elements of the vector must be >= height. */
2426 if (ASIZE (data
) < height
)
2429 /* Each string or bool-vector in data must be large enough
2430 for one line of the image. */
2431 for (i
= 0; i
< height
; ++i
)
2433 Lisp_Object elt
= AREF (data
, i
);
2438 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
)
2441 else if (BOOL_VECTOR_P (elt
))
2443 if (bool_vector_size (elt
) < width
)
2450 else if (STRINGP (data
))
2453 < (width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
* height
)
2456 else if (BOOL_VECTOR_P (data
))
2458 if (bool_vector_size (data
) / height
< width
)
2469 /* Scan a bitmap file. FP is the stream to read from. Value is
2470 either an enumerator from enum xbm_token, or a character for a
2471 single-character token, or 0 at end of file. If scanning an
2472 identifier, store the lexeme of the identifier in SVAL. If
2473 scanning a number, store its value in *IVAL. */
2476 xbm_scan (unsigned char **s
, unsigned char *end
, char *sval
, int *ival
)
2482 /* Skip white space. */
2483 while (*s
< end
&& (c
= *(*s
)++, c_isspace (c
)))
2488 else if (c_isdigit (c
))
2490 int value
= 0, digit
;
2492 if (c
== '0' && *s
< end
)
2495 if (c
== 'x' || c
== 'X')
2502 else if (c
>= 'a' && c
<= 'f')
2503 digit
= c
- 'a' + 10;
2504 else if (c
>= 'A' && c
<= 'F')
2505 digit
= c
- 'A' + 10;
2508 value
= 16 * value
+ digit
;
2511 else if (c_isdigit (c
))
2515 && (c
= *(*s
)++, c_isdigit (c
)))
2516 value
= 8 * value
+ c
- '0';
2523 && (c
= *(*s
)++, c_isdigit (c
)))
2524 value
= 10 * value
+ c
- '0';
2532 else if (c_isalpha (c
) || c
== '_')
2536 && (c
= *(*s
)++, (c_isalnum (c
) || c
== '_')))
2543 else if (c
== '/' && **s
== '*')
2545 /* C-style comment. */
2547 while (**s
&& (**s
!= '*' || *(*s
+ 1) != '/'))
2561 /* Create a Windows bitmap from X bitmap data. */
2563 w32_create_pixmap_from_bitmap_data (int width
, int height
, char *data
)
2565 static unsigned char swap_nibble
[16]
2566 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2567 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2568 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2569 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2571 unsigned char *bits
, *p
;
2574 w1
= (width
+ 7) / 8; /* nb of 8bits elt in X bitmap */
2575 w2
= ((width
+ 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2576 bits
= alloca (height
* w2
);
2577 memset (bits
, 0, height
* w2
);
2578 for (i
= 0; i
< height
; i
++)
2581 for (j
= 0; j
< w1
; j
++)
2583 /* Bitswap XBM bytes to match how Windows does things. */
2584 unsigned char c
= *data
++;
2585 *p
++ = (unsigned char)((swap_nibble
[c
& 0xf] << 4)
2586 | (swap_nibble
[(c
>>4) & 0xf]));
2589 bmp
= CreateBitmap (width
, height
, 1, 1, (char *) bits
);
2595 convert_mono_to_color_image (struct frame
*f
, struct image
*img
,
2596 COLORREF foreground
, COLORREF background
)
2598 HDC hdc
, old_img_dc
, new_img_dc
;
2599 HGDIOBJ old_prev
, new_prev
;
2602 hdc
= get_frame_dc (f
);
2603 old_img_dc
= CreateCompatibleDC (hdc
);
2604 new_img_dc
= CreateCompatibleDC (hdc
);
2605 new_pixmap
= CreateCompatibleBitmap (hdc
, img
->width
, img
->height
);
2606 release_frame_dc (f
, hdc
);
2607 old_prev
= SelectObject (old_img_dc
, img
->pixmap
);
2608 new_prev
= SelectObject (new_img_dc
, new_pixmap
);
2609 /* Windows convention for mono bitmaps is black = background,
2610 white = foreground. */
2611 SetTextColor (new_img_dc
, background
);
2612 SetBkColor (new_img_dc
, foreground
);
2614 BitBlt (new_img_dc
, 0, 0, img
->width
, img
->height
, old_img_dc
,
2617 SelectObject (old_img_dc
, old_prev
);
2618 SelectObject (new_img_dc
, new_prev
);
2619 DeleteDC (old_img_dc
);
2620 DeleteDC (new_img_dc
);
2621 DeleteObject (img
->pixmap
);
2622 if (new_pixmap
== 0)
2623 fprintf (stderr
, "Failed to convert image to color.\n");
2625 img
->pixmap
= new_pixmap
;
2628 #define XBM_BIT_SHUFFLE(b) (~(b))
2632 #define XBM_BIT_SHUFFLE(b) (b)
2634 #endif /* HAVE_NTGUI */
2638 Create_Pixmap_From_Bitmap_Data (struct frame
*f
, struct image
*img
, char *data
,
2639 RGB_PIXEL_COLOR fg
, RGB_PIXEL_COLOR bg
,
2640 bool non_default_colors
)
2644 = w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
, data
);
2646 /* If colors were specified, transfer the bitmap to a color one. */
2647 if (non_default_colors
)
2648 convert_mono_to_color_image (f
, img
, fg
, bg
);
2650 #elif defined (HAVE_NS)
2651 img
->pixmap
= ns_image_from_XBM (data
, img
->width
, img
->height
);
2655 (x_check_image_size (0, img
->width
, img
->height
)
2656 ? XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f
),
2659 img
->width
, img
->height
,
2661 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)))
2663 #endif /* !HAVE_NTGUI && !HAVE_NS */
2668 /* Replacement for XReadBitmapFileData which isn't available under old
2669 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2670 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2671 the image. Return in *DATA the bitmap data allocated with xmalloc.
2672 Value is true if successful. DATA null means just test if
2673 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR,
2674 inhibit the call to image_error when the image size is invalid (the
2675 bitmap remains unread). */
2678 xbm_read_bitmap_data (struct frame
*f
, unsigned char *contents
, unsigned char *end
,
2679 int *width
, int *height
, char **data
,
2680 bool inhibit_image_error
)
2682 unsigned char *s
= contents
;
2683 char buffer
[BUFSIZ
];
2686 int bytes_per_line
, i
, nbytes
;
2692 LA1 = xbm_scan (&s, end, buffer, &value)
2694 #define expect(TOKEN) \
2697 if (LA1 != (TOKEN)) \
2703 #define expect_ident(IDENT) \
2704 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2709 *width
= *height
= -1;
2712 LA1
= xbm_scan (&s
, end
, buffer
, &value
);
2714 /* Parse defines for width, height and hot-spots. */
2718 expect_ident ("define");
2719 expect (XBM_TK_IDENT
);
2721 if (LA1
== XBM_TK_NUMBER
)
2723 char *q
= strrchr (buffer
, '_');
2724 q
= q
? q
+ 1 : buffer
;
2725 if (strcmp (q
, "width") == 0)
2727 else if (strcmp (q
, "height") == 0)
2730 expect (XBM_TK_NUMBER
);
2733 if (!check_image_size (f
, *width
, *height
))
2735 if (!inhibit_image_error
)
2736 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
2739 else if (data
== NULL
)
2742 /* Parse bits. Must start with `static'. */
2743 expect_ident ("static");
2744 if (LA1
== XBM_TK_IDENT
)
2746 if (strcmp (buffer
, "unsigned") == 0)
2749 expect_ident ("char");
2751 else if (strcmp (buffer
, "short") == 0)
2755 if (*width
% 16 && *width
% 16 < 9)
2758 else if (strcmp (buffer
, "char") == 0)
2766 expect (XBM_TK_IDENT
);
2772 if (! x_check_image_size (0, *width
, *height
))
2774 if (!inhibit_image_error
)
2775 image_error ("Image too large (%dx%d)",
2776 make_number (*width
), make_number (*height
));
2779 bytes_per_line
= (*width
+ 7) / 8 + padding_p
;
2780 nbytes
= bytes_per_line
* *height
;
2781 p
= *data
= xmalloc (nbytes
);
2785 for (i
= 0; i
< nbytes
; i
+= 2)
2788 expect (XBM_TK_NUMBER
);
2790 *p
++ = XBM_BIT_SHUFFLE (val
);
2791 if (!padding_p
|| ((i
+ 2) % bytes_per_line
))
2792 *p
++ = XBM_BIT_SHUFFLE (value
>> 8);
2794 if (LA1
== ',' || LA1
== '}')
2802 for (i
= 0; i
< nbytes
; ++i
)
2805 expect (XBM_TK_NUMBER
);
2807 *p
++ = XBM_BIT_SHUFFLE (val
);
2809 if (LA1
== ',' || LA1
== '}')
2834 /* Load XBM image IMG which will be displayed on frame F from buffer
2835 CONTENTS. END is the end of the buffer. Value is true if
2839 xbm_load_image (struct frame
*f
, struct image
*img
, unsigned char *contents
,
2846 rc
= xbm_read_bitmap_data (f
, contents
, end
, &img
->width
, &img
->height
,
2850 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2851 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2852 bool non_default_colors
= 0;
2855 eassert (img
->width
> 0 && img
->height
> 0);
2857 /* Get foreground and background colors, maybe allocate colors. */
2858 value
= image_spec_value (img
->spec
, QCforeground
, NULL
);
2861 foreground
= x_alloc_image_color (f
, img
, value
, foreground
);
2862 non_default_colors
= 1;
2864 value
= image_spec_value (img
->spec
, QCbackground
, NULL
);
2867 background
= x_alloc_image_color (f
, img
, value
, background
);
2868 img
->background
= background
;
2869 img
->background_valid
= 1;
2870 non_default_colors
= 1;
2873 Create_Pixmap_From_Bitmap_Data (f
, img
, data
,
2874 foreground
, background
,
2875 non_default_colors
);
2878 if (img
->pixmap
== NO_PIXMAP
)
2880 x_clear_image (f
, img
);
2881 image_error ("Unable to create X pixmap for `%s'", img
->spec
, Qnil
);
2887 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2893 /* Value is true if DATA looks like an in-memory XBM file. */
2896 xbm_file_p (Lisp_Object data
)
2899 return (STRINGP (data
)
2900 && xbm_read_bitmap_data (NULL
, SDATA (data
),
2901 (SDATA (data
) + SBYTES (data
)),
2906 /* Fill image IMG which is used on frame F with pixmap data. Value is
2907 true if successful. */
2910 xbm_load (struct frame
*f
, struct image
*img
)
2913 Lisp_Object file_name
;
2915 eassert (xbm_image_p (img
->spec
));
2917 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2918 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
2919 if (STRINGP (file_name
))
2922 unsigned char *contents
;
2925 file
= x_find_image_file (file_name
);
2926 if (!STRINGP (file
))
2928 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
2932 contents
= slurp_file (SSDATA (file
), &size
);
2933 if (contents
== NULL
)
2935 image_error ("Error loading XBM image `%s'", img
->spec
, Qnil
);
2939 success_p
= xbm_load_image (f
, img
, contents
, contents
+ size
);
2944 struct image_keyword fmt
[XBM_LAST
];
2946 unsigned long foreground
= FRAME_FOREGROUND_PIXEL (f
);
2947 unsigned long background
= FRAME_BACKGROUND_PIXEL (f
);
2948 bool non_default_colors
= 0;
2951 bool in_memory_file_p
= 0;
2953 /* See if data looks like an in-memory XBM file. */
2954 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
2955 in_memory_file_p
= xbm_file_p (data
);
2957 /* Parse the image specification. */
2958 memcpy (fmt
, xbm_format
, sizeof fmt
);
2959 parsed_p
= parse_image_spec (img
->spec
, fmt
, XBM_LAST
, Qxbm
);
2962 /* Get specified width, and height. */
2963 if (!in_memory_file_p
)
2965 img
->width
= XFASTINT (fmt
[XBM_WIDTH
].value
);
2966 img
->height
= XFASTINT (fmt
[XBM_HEIGHT
].value
);
2967 eassert (img
->width
> 0 && img
->height
> 0);
2968 if (!check_image_size (f
, img
->width
, img
->height
))
2970 image_error ("Invalid image size (see `max-image-size')",
2976 /* Get foreground and background colors, maybe allocate colors. */
2977 if (fmt
[XBM_FOREGROUND
].count
2978 && STRINGP (fmt
[XBM_FOREGROUND
].value
))
2980 foreground
= x_alloc_image_color (f
, img
, fmt
[XBM_FOREGROUND
].value
,
2982 non_default_colors
= 1;
2985 if (fmt
[XBM_BACKGROUND
].count
2986 && STRINGP (fmt
[XBM_BACKGROUND
].value
))
2988 background
= x_alloc_image_color (f
, img
, fmt
[XBM_BACKGROUND
].value
,
2990 non_default_colors
= 1;
2993 if (in_memory_file_p
)
2994 success_p
= xbm_load_image (f
, img
, SDATA (data
),
3005 int nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
3007 SAFE_NALLOCA (bits
, nbytes
, img
->height
);
3009 for (i
= 0; i
< img
->height
; ++i
, p
+= nbytes
)
3011 Lisp_Object line
= AREF (data
, i
);
3013 memcpy (p
, SDATA (line
), nbytes
);
3015 memcpy (p
, bool_vector_data (line
), nbytes
);
3018 else if (STRINGP (data
))
3019 bits
= SSDATA (data
);
3021 bits
= (char *) bool_vector_data (data
);
3027 /* Windows mono bitmaps are reversed compared with X. */
3028 invertedBits
= bits
;
3029 nbytes
= (img
->width
+ BITS_PER_CHAR
- 1) / BITS_PER_CHAR
;
3030 SAFE_NALLOCA (bits
, nbytes
, img
->height
);
3031 for (i
= 0; i
< nbytes
; i
++)
3032 bits
[i
] = XBM_BIT_SHUFFLE (invertedBits
[i
]);
3035 /* Create the pixmap. */
3037 if (x_check_image_size (0, img
->width
, img
->height
))
3038 Create_Pixmap_From_Bitmap_Data (f
, img
, bits
,
3039 foreground
, background
,
3040 non_default_colors
);
3042 img
->pixmap
= NO_PIXMAP
;
3048 image_error ("Unable to create pixmap for XBM image `%s'",
3050 x_clear_image (f
, img
);
3062 /***********************************************************************
3064 ***********************************************************************/
3066 #if defined (HAVE_XPM) || defined (HAVE_NS)
3068 static bool xpm_image_p (Lisp_Object object
);
3069 static bool xpm_load (struct frame
*f
, struct image
*img
);
3071 #endif /* HAVE_XPM || HAVE_NS */
3075 /* Indicate to xpm.h that we don't have Xlib. */
3077 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
3078 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
3079 #define XColor xpm_XColor
3080 #define XImage xpm_XImage
3081 #define Display xpm_Display
3082 #define PIXEL_ALREADY_TYPEDEFED
3083 #include "X11/xpm.h"
3088 #undef PIXEL_ALREADY_TYPEDEFED
3090 #include "X11/xpm.h"
3091 #endif /* HAVE_NTGUI */
3092 #endif /* HAVE_XPM */
3094 #if defined (HAVE_XPM) || defined (HAVE_NS)
3096 /* Indices of image specification fields in xpm_format, below. */
3098 enum xpm_keyword_index
3114 /* Vector of image_keyword structures describing the format
3115 of valid XPM image specifications. */
3117 static const struct image_keyword xpm_format
[XPM_LAST
] =
3119 {":type", IMAGE_SYMBOL_VALUE
, 1},
3120 {":file", IMAGE_STRING_VALUE
, 0},
3121 {":data", IMAGE_STRING_VALUE
, 0},
3122 {":ascent", IMAGE_ASCENT_VALUE
, 0},
3123 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
3124 {":relief", IMAGE_INTEGER_VALUE
, 0},
3125 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3126 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3127 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3128 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
3129 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
3132 #if defined HAVE_NTGUI && defined WINDOWSNT
3133 static bool init_xpm_functions (void);
3135 #define init_xpm_functions NULL
3138 /* Structure describing the image type XPM. */
3140 static struct image_type xpm_type
=
3142 SYMBOL_INDEX (Qxpm
),
3150 #ifdef HAVE_X_WINDOWS
3152 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3153 functions for allocating image colors. Our own functions handle
3154 color allocation failures more gracefully than the ones on the XPM
3157 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3158 #define ALLOC_XPM_COLORS
3160 #endif /* HAVE_X_WINDOWS */
3162 #ifdef ALLOC_XPM_COLORS
3164 static struct xpm_cached_color
*xpm_cache_color (struct frame
*, char *,
3167 /* An entry in a hash table used to cache color definitions of named
3168 colors. This cache is necessary to speed up XPM image loading in
3169 case we do color allocations ourselves. Without it, we would need
3170 a call to XParseColor per pixel in the image. */
3172 struct xpm_cached_color
3174 /* Next in collision chain. */
3175 struct xpm_cached_color
*next
;
3177 /* Color definition (RGB and pixel color). */
3181 char name
[FLEXIBLE_ARRAY_MEMBER
];
3184 /* The hash table used for the color cache, and its bucket vector
3187 #define XPM_COLOR_CACHE_BUCKETS 1001
3188 static struct xpm_cached_color
**xpm_color_cache
;
3190 /* Initialize the color cache. */
3193 xpm_init_color_cache (struct frame
*f
, XpmAttributes
*attrs
)
3195 size_t nbytes
= XPM_COLOR_CACHE_BUCKETS
* sizeof *xpm_color_cache
;
3196 xpm_color_cache
= xzalloc (nbytes
);
3197 init_color_table ();
3199 if (attrs
->valuemask
& XpmColorSymbols
)
3204 for (i
= 0; i
< attrs
->numsymbols
; ++i
)
3205 if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3206 attrs
->colorsymbols
[i
].value
, &color
))
3208 color
.pixel
= lookup_rgb_color (f
, color
.red
, color
.green
,
3210 xpm_cache_color (f
, attrs
->colorsymbols
[i
].name
, &color
, -1);
3215 /* Free the color cache. */
3218 xpm_free_color_cache (void)
3220 struct xpm_cached_color
*p
, *next
;
3223 for (i
= 0; i
< XPM_COLOR_CACHE_BUCKETS
; ++i
)
3224 for (p
= xpm_color_cache
[i
]; p
; p
= next
)
3230 xfree (xpm_color_cache
);
3231 xpm_color_cache
= NULL
;
3232 free_color_table ();
3235 /* Return the bucket index for color named COLOR_NAME in the color
3239 xpm_color_bucket (char *color_name
)
3241 EMACS_UINT hash
= hash_string (color_name
, strlen (color_name
));
3242 return hash
% XPM_COLOR_CACHE_BUCKETS
;
3246 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3247 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3250 static struct xpm_cached_color
*
3251 xpm_cache_color (struct frame
*f
, char *color_name
, XColor
*color
, int bucket
)
3254 struct xpm_cached_color
*p
;
3257 bucket
= xpm_color_bucket (color_name
);
3259 nbytes
= offsetof (struct xpm_cached_color
, name
) + strlen (color_name
) + 1;
3260 p
= xmalloc (nbytes
);
3261 strcpy (p
->name
, color_name
);
3263 p
->next
= xpm_color_cache
[bucket
];
3264 xpm_color_cache
[bucket
] = p
;
3268 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3269 return the cached definition in *COLOR. Otherwise, make a new
3270 entry in the cache and allocate the color. Value is false if color
3271 allocation failed. */
3274 xpm_lookup_color (struct frame
*f
, char *color_name
, XColor
*color
)
3276 struct xpm_cached_color
*p
;
3277 int h
= xpm_color_bucket (color_name
);
3279 for (p
= xpm_color_cache
[h
]; p
; p
= p
->next
)
3280 if (strcmp (p
->name
, color_name
) == 0)
3285 else if (XParseColor (FRAME_X_DISPLAY (f
), FRAME_X_COLORMAP (f
),
3288 color
->pixel
= lookup_rgb_color (f
, color
->red
, color
->green
,
3290 p
= xpm_cache_color (f
, color_name
, color
, h
);
3292 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3293 with transparency, and it's useful. */
3294 else if (strcmp ("opaque", color_name
) == 0)
3296 memset (color
, 0, sizeof (XColor
)); /* Is this necessary/correct? */
3297 color
->pixel
= FRAME_FOREGROUND_PIXEL (f
);
3298 p
= xpm_cache_color (f
, color_name
, color
, h
);
3305 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3306 CLOSURE is a pointer to the frame on which we allocate the
3307 color. Return in *COLOR the allocated color. Value is non-zero
3311 xpm_alloc_color (Display
*dpy
, Colormap cmap
, char *color_name
, XColor
*color
,
3314 return xpm_lookup_color (closure
, color_name
, color
);
3318 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3319 is a pointer to the frame on which we allocate the color. Value is
3320 non-zero if successful. */
3323 xpm_free_colors (Display
*dpy
, Colormap cmap
, Pixel
*pixels
, int npixels
, void *closure
)
3328 #endif /* ALLOC_XPM_COLORS */
3333 /* XPM library details. */
3335 DEF_DLL_FN (void, XpmFreeAttributes
, (XpmAttributes
*));
3336 DEF_DLL_FN (int, XpmCreateImageFromBuffer
,
3337 (Display
*, char *, xpm_XImage
**,
3338 xpm_XImage
**, XpmAttributes
*));
3339 DEF_DLL_FN (int, XpmReadFileToImage
,
3340 (Display
*, char *, xpm_XImage
**,
3341 xpm_XImage
**, XpmAttributes
*));
3342 DEF_DLL_FN (void, XImageFree
, (xpm_XImage
*));
3345 init_xpm_functions (void)
3349 if (!(library
= w32_delayed_load (Qxpm
)))
3352 LOAD_DLL_FN (library
, XpmFreeAttributes
);
3353 LOAD_DLL_FN (library
, XpmCreateImageFromBuffer
);
3354 LOAD_DLL_FN (library
, XpmReadFileToImage
);
3355 LOAD_DLL_FN (library
, XImageFree
);
3360 # undef XpmCreateImageFromBuffer
3361 # undef XpmFreeAttributes
3362 # undef XpmReadFileToImage
3364 # define XImageFree fn_XImageFree
3365 # define XpmCreateImageFromBuffer fn_XpmCreateImageFromBuffer
3366 # define XpmFreeAttributes fn_XpmFreeAttributes
3367 # define XpmReadFileToImage fn_XpmReadFileToImage
3369 #endif /* WINDOWSNT */
3371 /* Value is true if COLOR_SYMBOLS is a valid color symbols list
3372 for XPM images. Such a list must consist of conses whose car and
3376 xpm_valid_color_symbols_p (Lisp_Object color_symbols
)
3378 while (CONSP (color_symbols
))
3380 Lisp_Object sym
= XCAR (color_symbols
);
3382 || !STRINGP (XCAR (sym
))
3383 || !STRINGP (XCDR (sym
)))
3385 color_symbols
= XCDR (color_symbols
);
3388 return NILP (color_symbols
);
3392 /* Value is true if OBJECT is a valid XPM image specification. */
3395 xpm_image_p (Lisp_Object object
)
3397 struct image_keyword fmt
[XPM_LAST
];
3398 memcpy (fmt
, xpm_format
, sizeof fmt
);
3399 return (parse_image_spec (object
, fmt
, XPM_LAST
, Qxpm
)
3400 /* Either `:file' or `:data' must be present. */
3401 && fmt
[XPM_FILE
].count
+ fmt
[XPM_DATA
].count
== 1
3402 /* Either no `:color-symbols' or it's a list of conses
3403 whose car and cdr are strings. */
3404 && (fmt
[XPM_COLOR_SYMBOLS
].count
== 0
3405 || xpm_valid_color_symbols_p (fmt
[XPM_COLOR_SYMBOLS
].value
)));
3408 #endif /* HAVE_XPM || HAVE_NS */
3410 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3412 x_create_bitmap_from_xpm_data (struct frame
*f
, const char **bits
)
3414 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
3417 XpmAttributes attrs
;
3418 Pixmap bitmap
, mask
;
3420 memset (&attrs
, 0, sizeof attrs
);
3422 attrs
.visual
= FRAME_X_VISUAL (f
);
3423 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3424 attrs
.valuemask
|= XpmVisual
;
3425 attrs
.valuemask
|= XpmColormap
;
3427 rc
= XpmCreatePixmapFromData (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3428 (char **) bits
, &bitmap
, &mask
, &attrs
);
3429 if (rc
!= XpmSuccess
)
3431 XpmFreeAttributes (&attrs
);
3435 id
= x_allocate_bitmap_record (f
);
3436 dpyinfo
->bitmaps
[id
- 1].pixmap
= bitmap
;
3437 dpyinfo
->bitmaps
[id
- 1].have_mask
= true;
3438 dpyinfo
->bitmaps
[id
- 1].mask
= mask
;
3439 dpyinfo
->bitmaps
[id
- 1].file
= NULL
;
3440 dpyinfo
->bitmaps
[id
- 1].height
= attrs
.height
;
3441 dpyinfo
->bitmaps
[id
- 1].width
= attrs
.width
;
3442 dpyinfo
->bitmaps
[id
- 1].depth
= attrs
.depth
;
3443 dpyinfo
->bitmaps
[id
- 1].refcount
= 1;
3445 XpmFreeAttributes (&attrs
);
3448 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3450 /* Load image IMG which will be displayed on frame F. Value is
3451 true if successful. */
3456 xpm_load (struct frame
*f
, struct image
*img
)
3459 XpmAttributes attrs
;
3460 Lisp_Object specified_file
, color_symbols
;
3465 xpm_XImage
* xpm_image
= NULL
, * xpm_mask
= NULL
;
3466 #endif /* HAVE_NTGUI */
3468 /* Configure the XPM lib. Use the visual of frame F. Allocate
3469 close colors. Return colors allocated. */
3470 memset (&attrs
, 0, sizeof attrs
);
3473 attrs
.visual
= FRAME_X_VISUAL (f
);
3474 attrs
.colormap
= FRAME_X_COLORMAP (f
);
3475 attrs
.valuemask
|= XpmVisual
;
3476 attrs
.valuemask
|= XpmColormap
;
3477 #endif /* HAVE_NTGUI */
3479 #ifdef ALLOC_XPM_COLORS
3480 /* Allocate colors with our own functions which handle
3481 failing color allocation more gracefully. */
3482 attrs
.color_closure
= f
;
3483 attrs
.alloc_color
= xpm_alloc_color
;
3484 attrs
.free_colors
= xpm_free_colors
;
3485 attrs
.valuemask
|= XpmAllocColor
| XpmFreeColors
| XpmColorClosure
;
3486 #else /* not ALLOC_XPM_COLORS */
3487 /* Let the XPM lib allocate colors. */
3488 attrs
.valuemask
|= XpmReturnAllocPixels
;
3489 #ifdef XpmAllocCloseColors
3490 attrs
.alloc_close_colors
= 1;
3491 attrs
.valuemask
|= XpmAllocCloseColors
;
3492 #else /* not XpmAllocCloseColors */
3493 attrs
.closeness
= 600;
3494 attrs
.valuemask
|= XpmCloseness
;
3495 #endif /* not XpmAllocCloseColors */
3496 #endif /* ALLOC_XPM_COLORS */
3498 /* If image specification contains symbolic color definitions, add
3499 these to `attrs'. */
3500 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
3501 if (CONSP (color_symbols
))
3504 XpmColorSymbol
*xpm_syms
;
3507 attrs
.valuemask
|= XpmColorSymbols
;
3509 /* Count number of symbols. */
3510 attrs
.numsymbols
= 0;
3511 for (tail
= color_symbols
; CONSP (tail
); tail
= XCDR (tail
))
3514 /* Allocate an XpmColorSymbol array. */
3515 SAFE_NALLOCA (xpm_syms
, 1, attrs
.numsymbols
);
3516 size
= attrs
.numsymbols
* sizeof *xpm_syms
;
3517 memset (xpm_syms
, 0, size
);
3518 attrs
.colorsymbols
= xpm_syms
;
3520 /* Fill the color symbol array. */
3521 for (tail
= color_symbols
, i
= 0;
3523 ++i
, tail
= XCDR (tail
))
3527 char *empty_string
= (char *) "";
3529 if (!CONSP (XCAR (tail
)))
3531 xpm_syms
[i
].name
= empty_string
;
3532 xpm_syms
[i
].value
= empty_string
;
3535 name
= XCAR (XCAR (tail
));
3536 color
= XCDR (XCAR (tail
));
3538 SAFE_ALLOCA_STRING (xpm_syms
[i
].name
, name
);
3540 xpm_syms
[i
].name
= empty_string
;
3541 if (STRINGP (color
))
3542 SAFE_ALLOCA_STRING (xpm_syms
[i
].value
, color
);
3544 xpm_syms
[i
].value
= empty_string
;
3548 /* Create a pixmap for the image, either from a file, or from a
3549 string buffer containing data in the same format as an XPM file. */
3550 #ifdef ALLOC_XPM_COLORS
3551 xpm_init_color_cache (f
, &attrs
);
3554 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
3558 HDC frame_dc
= get_frame_dc (f
);
3559 hdc
= CreateCompatibleDC (frame_dc
);
3560 release_frame_dc (f
, frame_dc
);
3562 #endif /* HAVE_NTGUI */
3564 if (STRINGP (specified_file
))
3566 Lisp_Object file
= x_find_image_file (specified_file
);
3567 if (!STRINGP (file
))
3569 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
3570 #ifdef ALLOC_XPM_COLORS
3571 xpm_free_color_cache ();
3579 /* FILE is encoded in UTF-8, but image libraries on Windows
3580 support neither UTF-8 nor UTF-16 encoded file names. So we
3581 need to re-encode it in ANSI. */
3582 file
= ansi_encode_filename (file
);
3584 /* XpmReadFileToPixmap is not available in the Windows port of
3585 libxpm. But XpmReadFileToImage almost does what we want. */
3586 rc
= XpmReadFileToImage (&hdc
, SDATA (file
),
3587 &xpm_image
, &xpm_mask
,
3590 rc
= XpmReadFileToImage (FRAME_X_DISPLAY (f
), SSDATA (file
),
3591 &img
->ximg
, &img
->mask_img
,
3593 #endif /* HAVE_NTGUI */
3597 Lisp_Object buffer
= image_spec_value (img
->spec
, QCdata
, NULL
);
3598 if (!STRINGP (buffer
))
3600 image_error ("Invalid image data `%s'", buffer
, Qnil
);
3601 #ifdef ALLOC_XPM_COLORS
3602 xpm_free_color_cache ();
3608 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3609 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3610 rc
= XpmCreateImageFromBuffer (&hdc
, SDATA (buffer
),
3611 &xpm_image
, &xpm_mask
,
3614 rc
= XpmCreateImageFromBuffer (FRAME_X_DISPLAY (f
), SSDATA (buffer
),
3615 &img
->ximg
, &img
->mask_img
,
3617 #endif /* HAVE_NTGUI */
3620 #ifdef HAVE_X_WINDOWS
3621 if (rc
== XpmSuccess
)
3623 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3624 img
->ximg
->width
, img
->ximg
->height
,
3626 if (img
->pixmap
== NO_PIXMAP
)
3628 x_clear_image (f
, img
);
3631 else if (img
->mask_img
)
3633 img
->mask
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
3634 img
->mask_img
->width
,
3635 img
->mask_img
->height
,
3636 img
->mask_img
->depth
);
3637 if (img
->mask
== NO_PIXMAP
)
3639 x_clear_image (f
, img
);
3646 if (rc
== XpmSuccess
)
3648 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3649 img
->colors
= colors_in_color_table (&img
->ncolors
);
3650 #else /* not ALLOC_XPM_COLORS */
3654 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3655 plus some duplicate attributes. */
3656 if (xpm_image
&& xpm_image
->bitmap
)
3658 img
->pixmap
= xpm_image
->bitmap
;
3659 /* XImageFree in libXpm frees XImage struct without destroying
3660 the bitmap, which is what we want. */
3661 XImageFree (xpm_image
);
3663 if (xpm_mask
&& xpm_mask
->bitmap
)
3665 /* The mask appears to be inverted compared with what we expect.
3666 TODO: invert our expectations. See other places where we
3667 have to invert bits because our idea of masks is backwards. */
3669 old_obj
= SelectObject (hdc
, xpm_mask
->bitmap
);
3671 PatBlt (hdc
, 0, 0, xpm_mask
->width
, xpm_mask
->height
, DSTINVERT
);
3672 SelectObject (hdc
, old_obj
);
3674 img
->mask
= xpm_mask
->bitmap
;
3675 XImageFree (xpm_mask
);
3680 #endif /* HAVE_NTGUI */
3682 /* Remember allocated colors. */
3683 img
->colors
= xnmalloc (attrs
.nalloc_pixels
, sizeof *img
->colors
);
3684 img
->ncolors
= attrs
.nalloc_pixels
;
3685 for (i
= 0; i
< attrs
.nalloc_pixels
; ++i
)
3687 img
->colors
[i
] = attrs
.alloc_pixels
[i
];
3688 #ifdef DEBUG_X_COLORS
3689 register_color (img
->colors
[i
]);
3692 #endif /* not ALLOC_XPM_COLORS */
3694 img
->width
= attrs
.width
;
3695 img
->height
= attrs
.height
;
3696 eassert (img
->width
> 0 && img
->height
> 0);
3698 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3699 XpmFreeAttributes (&attrs
);
3701 #ifdef HAVE_X_WINDOWS
3702 /* Maybe fill in the background field while we have ximg handy. */
3703 IMAGE_BACKGROUND (img
, f
, img
->ximg
);
3705 /* Fill in the background_transparent field while we have the
3707 image_background_transparent (img
, f
, img
->mask_img
);
3714 #endif /* HAVE_NTGUI */
3719 image_error ("Error opening XPM file (%s)", img
->spec
, Qnil
);
3722 case XpmFileInvalid
:
3723 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
3727 image_error ("Out of memory (%s)", img
->spec
, Qnil
);
3730 case XpmColorFailed
:
3731 image_error ("Color allocation error (%s)", img
->spec
, Qnil
);
3735 image_error ("Unknown error (%s)", img
->spec
, Qnil
);
3740 #ifdef ALLOC_XPM_COLORS
3741 xpm_free_color_cache ();
3744 return rc
== XpmSuccess
;
3747 #endif /* HAVE_XPM */
3749 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3751 /* XPM support functions for NS where libxpm is not available.
3752 Only XPM version 3 (without any extensions) is supported. */
3754 static void xpm_put_color_table_v (Lisp_Object
, const unsigned char *,
3756 static Lisp_Object
xpm_get_color_table_v (Lisp_Object
,
3757 const unsigned char *, int);
3758 static void xpm_put_color_table_h (Lisp_Object
, const unsigned char *,
3760 static Lisp_Object
xpm_get_color_table_h (Lisp_Object
,
3761 const unsigned char *, int);
3763 /* Tokens returned from xpm_scan. */
3772 /* Scan an XPM data and return a character (< 256) or a token defined
3773 by enum xpm_token above. *S and END are the start (inclusive) and
3774 the end (exclusive) addresses of the data, respectively. Advance
3775 *S while scanning. If token is either XPM_TK_IDENT or
3776 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3777 length of the corresponding token, respectively. */
3780 xpm_scan (const unsigned char **s
,
3781 const unsigned char *end
,
3782 const unsigned char **beg
,
3789 /* Skip white-space. */
3790 while (*s
< end
&& (c
= *(*s
)++, c_isspace (c
)))
3793 /* gnus-pointer.xpm uses '-' in its identifier.
3794 sb-dir-plus.xpm uses '+' in its identifier. */
3795 if (c_isalpha (c
) || c
== '_' || c
== '-' || c
== '+')
3799 && (c
= **s
, c_isalnum (c
)
3800 || c
== '_' || c
== '-' || c
== '+'))
3803 return XPM_TK_IDENT
;
3808 while (*s
< end
&& **s
!= '"')
3813 return XPM_TK_STRING
;
3817 if (*s
< end
&& **s
== '*')
3819 /* C-style comment. */
3823 while (*s
< end
&& *(*s
)++ != '*')
3826 while (*s
< end
&& **s
!= '/');
3840 /* Functions for color table lookup in XPM data. A key is a string
3841 specifying the color of each pixel in XPM data. A value is either
3842 an integer that specifies a pixel color, Qt that specifies
3843 transparency, or Qnil for the unspecified color. If the length of
3844 the key string is one, a vector is used as a table. Otherwise, a
3845 hash table is used. */
3848 xpm_make_color_table_v (void (**put_func
) (Lisp_Object
,
3849 const unsigned char *,
3852 Lisp_Object (**get_func
) (Lisp_Object
,
3853 const unsigned char *,
3856 *put_func
= xpm_put_color_table_v
;
3857 *get_func
= xpm_get_color_table_v
;
3858 return Fmake_vector (make_number (256), Qnil
);
3862 xpm_put_color_table_v (Lisp_Object color_table
,
3863 const unsigned char *chars_start
,
3867 ASET (color_table
, *chars_start
, color
);
3871 xpm_get_color_table_v (Lisp_Object color_table
,
3872 const unsigned char *chars_start
,
3875 return AREF (color_table
, *chars_start
);
3879 xpm_make_color_table_h (void (**put_func
) (Lisp_Object
,
3880 const unsigned char *,
3883 Lisp_Object (**get_func
) (Lisp_Object
,
3884 const unsigned char *,
3887 *put_func
= xpm_put_color_table_h
;
3888 *get_func
= xpm_get_color_table_h
;
3889 return make_hash_table (hashtest_equal
, make_number (DEFAULT_HASH_SIZE
),
3890 make_float (DEFAULT_REHASH_SIZE
),
3891 make_float (DEFAULT_REHASH_THRESHOLD
),
3896 xpm_put_color_table_h (Lisp_Object color_table
,
3897 const unsigned char *chars_start
,
3901 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3902 EMACS_UINT hash_code
;
3903 Lisp_Object chars
= make_unibyte_string (chars_start
, chars_len
);
3905 hash_lookup (table
, chars
, &hash_code
);
3906 hash_put (table
, chars
, color
, hash_code
);
3910 xpm_get_color_table_h (Lisp_Object color_table
,
3911 const unsigned char *chars_start
,
3914 struct Lisp_Hash_Table
*table
= XHASH_TABLE (color_table
);
3916 hash_lookup (table
, make_unibyte_string (chars_start
, chars_len
), NULL
);
3918 return i
>= 0 ? HASH_VALUE (table
, i
) : Qnil
;
3921 enum xpm_color_key
{
3929 static const char xpm_color_key_strings
[][4] = {"s", "m", "g4", "g", "c"};
3932 xpm_str_to_color_key (const char *s
)
3936 for (i
= 0; i
< ARRAYELTS (xpm_color_key_strings
); i
++)
3937 if (strcmp (xpm_color_key_strings
[i
], s
) == 0)
3943 xpm_load_image (struct frame
*f
,
3945 const unsigned char *contents
,
3946 const unsigned char *end
)
3948 const unsigned char *s
= contents
, *beg
, *str
;
3949 unsigned char buffer
[BUFSIZ
];
3950 int width
, height
, x
, y
;
3951 int num_colors
, chars_per_pixel
;
3954 void (*put_color_table
) (Lisp_Object
, const unsigned char *, int, Lisp_Object
);
3955 Lisp_Object (*get_color_table
) (Lisp_Object
, const unsigned char *, int);
3956 Lisp_Object frame
, color_symbols
, color_table
;
3958 bool have_mask
= false;
3959 XImagePtr ximg
= NULL
, mask_img
= NULL
;
3962 LA1 = xpm_scan (&s, end, &beg, &len)
3964 #define expect(TOKEN) \
3967 if (LA1 != (TOKEN)) \
3973 #define expect_ident(IDENT) \
3974 if (LA1 == XPM_TK_IDENT \
3975 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3980 if (!(end
- s
>= 9 && memcmp (s
, "/* XPM */", 9) == 0))
3984 expect_ident ("static");
3985 expect_ident ("char");
3987 expect (XPM_TK_IDENT
);
3992 expect (XPM_TK_STRING
);
3995 memcpy (buffer
, beg
, len
);
3997 if (sscanf (buffer
, "%d %d %d %d", &width
, &height
,
3998 &num_colors
, &chars_per_pixel
) != 4
3999 || width
<= 0 || height
<= 0
4000 || num_colors
<= 0 || chars_per_pixel
<= 0)
4003 if (!check_image_size (f
, width
, height
))
4005 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
4009 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0)
4011 || !image_create_x_image_and_pixmap (f
, img
, width
, height
, 1,
4016 image_error ("Image too large", Qnil
, Qnil
);
4022 XSETFRAME (frame
, f
);
4023 if (!NILP (Fxw_display_color_p (frame
)))
4024 best_key
= XPM_COLOR_KEY_C
;
4025 else if (!NILP (Fx_display_grayscale_p (frame
)))
4026 best_key
= (XFASTINT (Fx_display_planes (frame
)) > 2
4027 ? XPM_COLOR_KEY_G
: XPM_COLOR_KEY_G4
);
4029 best_key
= XPM_COLOR_KEY_M
;
4031 color_symbols
= image_spec_value (img
->spec
, QCcolor_symbols
, NULL
);
4032 if (chars_per_pixel
== 1)
4033 color_table
= xpm_make_color_table_v (&put_color_table
,
4036 color_table
= xpm_make_color_table_h (&put_color_table
,
4039 while (num_colors
-- > 0)
4041 char *color
, *max_color
;
4042 int key
, next_key
, max_key
= 0;
4043 Lisp_Object symbol_color
= Qnil
, color_val
;
4046 expect (XPM_TK_STRING
);
4047 if (len
<= chars_per_pixel
|| len
>= BUFSIZ
+ chars_per_pixel
)
4049 memcpy (buffer
, beg
+ chars_per_pixel
, len
- chars_per_pixel
);
4050 buffer
[len
- chars_per_pixel
] = '\0';
4052 str
= strtok (buffer
, " \t");
4055 key
= xpm_str_to_color_key (str
);
4060 color
= strtok (NULL
, " \t");
4064 while ((str
= strtok (NULL
, " \t")) != NULL
)
4066 next_key
= xpm_str_to_color_key (str
);
4069 color
[strlen (color
)] = ' ';
4072 if (key
== XPM_COLOR_KEY_S
)
4074 if (NILP (symbol_color
))
4075 symbol_color
= build_string (color
);
4077 else if (max_key
< key
&& key
<= best_key
)
4087 if (!NILP (color_symbols
) && !NILP (symbol_color
))
4089 Lisp_Object specified_color
= Fassoc (symbol_color
, color_symbols
);
4091 if (CONSP (specified_color
) && STRINGP (XCDR (specified_color
)))
4093 if (xstrcasecmp (SSDATA (XCDR (specified_color
)), "None") == 0)
4095 else if (x_defined_color (f
, SSDATA (XCDR (specified_color
)),
4097 color_val
= make_number (cdef
.pixel
);
4100 if (NILP (color_val
) && max_key
> 0)
4102 if (xstrcasecmp (max_color
, "None") == 0)
4104 else if (x_defined_color (f
, max_color
, &cdef
, 0))
4105 color_val
= make_number (cdef
.pixel
);
4107 if (!NILP (color_val
))
4108 (*put_color_table
) (color_table
, beg
, chars_per_pixel
, color_val
);
4113 for (y
= 0; y
< height
; y
++)
4115 expect (XPM_TK_STRING
);
4117 if (len
< width
* chars_per_pixel
)
4119 for (x
= 0; x
< width
; x
++, str
+= chars_per_pixel
)
4121 Lisp_Object color_val
=
4122 (*get_color_table
) (color_table
, str
, chars_per_pixel
);
4124 XPutPixel (ximg
, x
, y
,
4125 (INTEGERP (color_val
) ? XINT (color_val
)
4126 : FRAME_FOREGROUND_PIXEL (f
)));
4128 XPutPixel (mask_img
, x
, y
,
4129 (!EQ (color_val
, Qt
) ? PIX_MASK_DRAW
4130 : (have_mask
= true, PIX_MASK_RETAIN
)));
4132 if (EQ (color_val
, Qt
))
4133 ns_set_alpha (ximg
, x
, y
, 0);
4141 img
->height
= height
;
4143 /* Maybe fill in the background field while we have ximg handy. */
4144 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
4145 IMAGE_BACKGROUND (img
, f
, ximg
);
4147 image_put_x_image (f
, img
, ximg
, 0);
4151 /* Fill in the background_transparent field while we have the
4153 image_background_transparent (img
, f
, mask_img
);
4155 image_put_x_image (f
, img
, mask_img
, 1);
4159 x_destroy_x_image (mask_img
);
4160 x_clear_image_1 (f
, img
, CLEAR_IMAGE_MASK
);
4166 image_error ("Invalid XPM file (%s)", img
->spec
, Qnil
);
4167 x_destroy_x_image (ximg
);
4168 x_destroy_x_image (mask_img
);
4169 x_clear_image (f
, img
);
4178 xpm_load (struct frame
*f
,
4182 Lisp_Object file_name
;
4184 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4185 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
4186 if (STRINGP (file_name
))
4189 unsigned char *contents
;
4192 file
= x_find_image_file (file_name
);
4193 if (!STRINGP (file
))
4195 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
4199 contents
= slurp_file (SSDATA (file
), &size
);
4200 if (contents
== NULL
)
4202 image_error ("Error loading XPM image `%s'", img
->spec
, Qnil
);
4206 success_p
= xpm_load_image (f
, img
, contents
, contents
+ size
);
4213 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
4214 if (!STRINGP (data
))
4216 image_error ("Invalid image data `%s'", data
, Qnil
);
4219 success_p
= xpm_load_image (f
, img
, SDATA (data
),
4220 SDATA (data
) + SBYTES (data
));
4226 #endif /* HAVE_NS && !HAVE_XPM */
4230 /***********************************************************************
4232 ***********************************************************************/
4234 #ifdef COLOR_TABLE_SUPPORT
4236 /* An entry in the color table mapping an RGB color to a pixel color. */
4241 unsigned long pixel
;
4243 /* Next in color table collision list. */
4244 struct ct_color
*next
;
4247 /* The bucket vector size to use. Must be prime. */
4251 /* Value is a hash of the RGB color given by R, G, and B. */
4254 ct_hash_rgb (unsigned r
, unsigned g
, unsigned b
)
4256 return (r
<< 16) ^ (g
<< 8) ^ b
;
4259 /* The color hash table. */
4261 static struct ct_color
**ct_table
;
4263 /* Number of entries in the color table. */
4265 static int ct_colors_allocated
;
4268 ct_colors_allocated_max
=
4270 min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof (unsigned long))
4273 /* Initialize the color table. */
4276 init_color_table (void)
4278 int size
= CT_SIZE
* sizeof (*ct_table
);
4279 ct_table
= xzalloc (size
);
4280 ct_colors_allocated
= 0;
4284 /* Free memory associated with the color table. */
4287 free_color_table (void)
4290 struct ct_color
*p
, *next
;
4292 for (i
= 0; i
< CT_SIZE
; ++i
)
4293 for (p
= ct_table
[i
]; p
; p
= next
)
4304 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4305 entry for that color already is in the color table, return the
4306 pixel color of that entry. Otherwise, allocate a new color for R,
4307 G, B, and make an entry in the color table. */
4309 static unsigned long
4310 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4312 unsigned hash
= ct_hash_rgb (r
, g
, b
);
4313 int i
= hash
% CT_SIZE
;
4315 Display_Info
*dpyinfo
;
4317 /* Handle TrueColor visuals specially, which improves performance by
4318 two orders of magnitude. Freeing colors on TrueColor visuals is
4319 a nop, and pixel colors specify RGB values directly. See also
4320 the Xlib spec, chapter 3.1. */
4321 dpyinfo
= FRAME_DISPLAY_INFO (f
);
4322 if (dpyinfo
->red_bits
> 0)
4324 unsigned long pr
, pg
, pb
;
4326 /* Apply gamma-correction like normal color allocation does. */
4330 color
.red
= r
, color
.green
= g
, color
.blue
= b
;
4331 gamma_correct (f
, &color
);
4332 r
= color
.red
, g
= color
.green
, b
= color
.blue
;
4335 /* Scale down RGB values to the visual's bits per RGB, and shift
4336 them to the right position in the pixel color. Note that the
4337 original RGB values are 16-bit values, as usual in X. */
4338 pr
= (r
>> (16 - dpyinfo
->red_bits
)) << dpyinfo
->red_offset
;
4339 pg
= (g
>> (16 - dpyinfo
->green_bits
)) << dpyinfo
->green_offset
;
4340 pb
= (b
>> (16 - dpyinfo
->blue_bits
)) << dpyinfo
->blue_offset
;
4342 /* Assemble the pixel color. */
4343 return pr
| pg
| pb
;
4346 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4347 if (p
->r
== r
&& p
->g
== g
&& p
->b
== b
)
4353 #ifdef HAVE_X_WINDOWS
4361 if (ct_colors_allocated_max
<= ct_colors_allocated
)
4362 return FRAME_FOREGROUND_PIXEL (f
);
4364 #ifdef HAVE_X_WINDOWS
4369 cmap
= FRAME_X_COLORMAP (f
);
4370 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4373 ++ct_colors_allocated
;
4374 p
= xmalloc (sizeof *p
);
4378 p
->pixel
= color
.pixel
;
4379 p
->next
= ct_table
[i
];
4383 return FRAME_FOREGROUND_PIXEL (f
);
4387 color
= PALETTERGB (r
, g
, b
);
4389 color
= RGB_TO_ULONG (r
, g
, b
);
4390 #endif /* HAVE_NTGUI */
4391 ++ct_colors_allocated
;
4392 p
= xmalloc (sizeof *p
);
4397 p
->next
= ct_table
[i
];
4399 #endif /* HAVE_X_WINDOWS */
4407 /* Look up pixel color PIXEL which is used on frame F in the color
4408 table. If not already present, allocate it. Value is PIXEL. */
4410 static unsigned long
4411 lookup_pixel_color (struct frame
*f
, unsigned long pixel
)
4413 int i
= pixel
% CT_SIZE
;
4416 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4417 if (p
->pixel
== pixel
)
4426 if (ct_colors_allocated
>= ct_colors_allocated_max
)
4427 return FRAME_FOREGROUND_PIXEL (f
);
4429 #ifdef HAVE_X_WINDOWS
4430 cmap
= FRAME_X_COLORMAP (f
);
4431 color
.pixel
= pixel
;
4432 x_query_color (f
, &color
);
4433 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4436 cmap
= DefaultColormapOfScreen (FRAME_X_SCREEN (f
));
4437 color
.pixel
= pixel
;
4438 XQueryColor (NULL
, cmap
, &color
);
4439 rc
= x_alloc_nearest_color (f
, cmap
, &color
);
4441 #endif /* HAVE_X_WINDOWS */
4445 ++ct_colors_allocated
;
4447 p
= xmalloc (sizeof *p
);
4452 p
->next
= ct_table
[i
];
4456 return FRAME_FOREGROUND_PIXEL (f
);
4462 /* Value is a vector of all pixel colors contained in the color table,
4463 allocated via xmalloc. Set *N to the number of colors. */
4465 static unsigned long *
4466 colors_in_color_table (int *n
)
4470 unsigned long *colors
;
4472 if (ct_colors_allocated
== 0)
4479 colors
= xmalloc (ct_colors_allocated
* sizeof *colors
);
4480 *n
= ct_colors_allocated
;
4482 for (i
= j
= 0; i
< CT_SIZE
; ++i
)
4483 for (p
= ct_table
[i
]; p
; p
= p
->next
)
4484 colors
[j
++] = p
->pixel
;
4490 #else /* COLOR_TABLE_SUPPORT */
4492 static unsigned long
4493 lookup_rgb_color (struct frame
*f
, int r
, int g
, int b
)
4495 unsigned long pixel
;
4498 pixel
= PALETTERGB (r
>> 8, g
>> 8, b
>> 8);
4499 #endif /* HAVE_NTGUI */
4502 pixel
= RGB_TO_ULONG (r
>> 8, g
>> 8, b
>> 8);
4503 #endif /* HAVE_NS */
4508 init_color_table (void)
4511 #endif /* COLOR_TABLE_SUPPORT */
4514 /***********************************************************************
4516 ***********************************************************************/
4518 /* Edge detection matrices for different edge-detection
4521 static int emboss_matrix
[9] = {
4523 2, -1, 0, /* y - 1 */
4525 0, 1, -2 /* y + 1 */
4528 static int laplace_matrix
[9] = {
4530 1, 0, 0, /* y - 1 */
4532 0, 0, -1 /* y + 1 */
4535 /* Value is the intensity of the color whose red/green/blue values
4538 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4541 /* On frame F, return an array of XColor structures describing image
4542 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4543 means also fill the red/green/blue members of the XColor
4544 structures. Value is a pointer to the array of XColors structures,
4545 allocated with xmalloc; it must be freed by the caller. */
4548 x_to_xcolors (struct frame
*f
, struct image
*img
, bool rgb_p
)
4552 XImagePtr_or_DC ximg
;
4555 #endif /* HAVE_NTGUI */
4557 if (img
->height
> min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *colors
/ img
->width
)
4558 memory_full (SIZE_MAX
);
4559 colors
= xmalloc (sizeof *colors
* img
->width
* img
->height
);
4561 /* Get the X image or create a memory device context for IMG. */
4562 ximg
= image_get_x_image_or_dc (f
, img
, 0, &prev
);
4564 /* Fill the `pixel' members of the XColor array. I wished there
4565 were an easy and portable way to circumvent XGetPixel. */
4567 for (y
= 0; y
< img
->height
; ++y
)
4569 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4571 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4572 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4574 x_query_colors (f
, row
, img
->width
);
4578 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4580 /* W32_TODO: palette support needed here? */
4581 p
->pixel
= GET_PIXEL (ximg
, x
, y
);
4584 p
->red
= RED16_FROM_ULONG (p
->pixel
);
4585 p
->green
= GREEN16_FROM_ULONG (p
->pixel
);
4586 p
->blue
= BLUE16_FROM_ULONG (p
->pixel
);
4589 #endif /* HAVE_X_WINDOWS */
4592 image_unget_x_image_or_dc (img
, 0, ximg
, prev
);
4599 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4600 created with CreateDIBSection, with the pointer to the bit values
4601 stored in ximg->data. */
4604 XPutPixel (XImagePtr ximg
, int x
, int y
, COLORREF color
)
4606 int width
= ximg
->info
.bmiHeader
.biWidth
;
4607 unsigned char * pixel
;
4609 /* True color images. */
4610 if (ximg
->info
.bmiHeader
.biBitCount
== 24)
4612 int rowbytes
= width
* 3;
4613 /* Ensure scanlines are aligned on 4 byte boundaries. */
4615 rowbytes
+= 4 - (rowbytes
% 4);
4617 pixel
= ximg
->data
+ y
* rowbytes
+ x
* 3;
4618 /* Windows bitmaps are in BGR order. */
4619 *pixel
= GetBValue (color
);
4620 *(pixel
+ 1) = GetGValue (color
);
4621 *(pixel
+ 2) = GetRValue (color
);
4623 /* Monochrome images. */
4624 else if (ximg
->info
.bmiHeader
.biBitCount
== 1)
4626 int rowbytes
= width
/ 8;
4627 /* Ensure scanlines are aligned on 4 byte boundaries. */
4629 rowbytes
+= 4 - (rowbytes
% 4);
4630 pixel
= ximg
->data
+ y
* rowbytes
+ x
/ 8;
4631 /* Filter out palette info. */
4632 if (color
& 0x00ffffff)
4633 *pixel
= *pixel
| (1 << x
% 8);
4635 *pixel
= *pixel
& ~(1 << x
% 8);
4638 image_error ("XPutPixel: palette image not supported", Qnil
, Qnil
);
4641 #endif /* HAVE_NTGUI */
4643 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4644 RGB members are set. F is the frame on which this all happens.
4645 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4648 x_from_xcolors (struct frame
*f
, struct image
*img
, XColor
*colors
)
4651 XImagePtr oimg
= NULL
;
4654 init_color_table ();
4656 x_clear_image_1 (f
, img
, CLEAR_IMAGE_PIXMAP
| CLEAR_IMAGE_COLORS
);
4657 image_create_x_image_and_pixmap (f
, img
, img
->width
, img
->height
, 0,
4660 for (y
= 0; y
< img
->height
; ++y
)
4661 for (x
= 0; x
< img
->width
; ++x
, ++p
)
4663 unsigned long pixel
;
4664 pixel
= lookup_rgb_color (f
, p
->red
, p
->green
, p
->blue
);
4665 XPutPixel (oimg
, x
, y
, pixel
);
4670 image_put_x_image (f
, img
, oimg
, 0);
4671 #ifdef COLOR_TABLE_SUPPORT
4672 img
->colors
= colors_in_color_table (&img
->ncolors
);
4673 free_color_table ();
4674 #endif /* COLOR_TABLE_SUPPORT */
4678 /* On frame F, perform edge-detection on image IMG.
4680 MATRIX is a nine-element array specifying the transformation
4681 matrix. See emboss_matrix for an example.
4683 COLOR_ADJUST is a color adjustment added to each pixel of the
4687 x_detect_edges (struct frame
*f
, struct image
*img
, int *matrix
, int color_adjust
)
4689 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4693 for (i
= sum
= 0; i
< 9; ++i
)
4694 sum
+= eabs (matrix
[i
]);
4696 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4698 if (img
->height
> min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *new / img
->width
)
4699 memory_full (SIZE_MAX
);
4700 new = xmalloc (sizeof *new * img
->width
* img
->height
);
4702 for (y
= 0; y
< img
->height
; ++y
)
4704 p
= COLOR (new, 0, y
);
4705 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4706 p
= COLOR (new, img
->width
- 1, y
);
4707 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4710 for (x
= 1; x
< img
->width
- 1; ++x
)
4712 p
= COLOR (new, x
, 0);
4713 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4714 p
= COLOR (new, x
, img
->height
- 1);
4715 p
->red
= p
->green
= p
->blue
= 0xffff/2;
4718 for (y
= 1; y
< img
->height
- 1; ++y
)
4720 p
= COLOR (new, 1, y
);
4722 for (x
= 1; x
< img
->width
- 1; ++x
, ++p
)
4724 int r
, g
, b
, yy
, xx
;
4727 for (yy
= y
- 1; yy
< y
+ 2; ++yy
)
4728 for (xx
= x
- 1; xx
< x
+ 2; ++xx
, ++i
)
4731 XColor
*t
= COLOR (colors
, xx
, yy
);
4732 r
+= matrix
[i
] * t
->red
;
4733 g
+= matrix
[i
] * t
->green
;
4734 b
+= matrix
[i
] * t
->blue
;
4737 r
= (r
/ sum
+ color_adjust
) & 0xffff;
4738 g
= (g
/ sum
+ color_adjust
) & 0xffff;
4739 b
= (b
/ sum
+ color_adjust
) & 0xffff;
4740 p
->red
= p
->green
= p
->blue
= COLOR_INTENSITY (r
, g
, b
);
4745 x_from_xcolors (f
, img
, new);
4751 /* Perform the pre-defined `emboss' edge-detection on image IMG
4755 x_emboss (struct frame
*f
, struct image
*img
)
4757 x_detect_edges (f
, img
, emboss_matrix
, 0xffff / 2);
4761 /* Transform image IMG which is used on frame F with a Laplace
4762 edge-detection algorithm. The result is an image that can be used
4763 to draw disabled buttons, for example. */
4766 x_laplace (struct frame
*f
, struct image
*img
)
4768 x_detect_edges (f
, img
, laplace_matrix
, 45000);
4772 /* Perform edge-detection on image IMG on frame F, with specified
4773 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4775 MATRIX must be either
4777 - a list of at least 9 numbers in row-major form
4778 - a vector of at least 9 numbers
4780 COLOR_ADJUST nil means use a default; otherwise it must be a
4784 x_edge_detection (struct frame
*f
, struct image
*img
, Lisp_Object matrix
,
4785 Lisp_Object color_adjust
)
4793 i
< 9 && CONSP (matrix
) && NUMBERP (XCAR (matrix
));
4794 ++i
, matrix
= XCDR (matrix
))
4795 trans
[i
] = XFLOATINT (XCAR (matrix
));
4797 else if (VECTORP (matrix
) && ASIZE (matrix
) >= 9)
4799 for (i
= 0; i
< 9 && NUMBERP (AREF (matrix
, i
)); ++i
)
4800 trans
[i
] = XFLOATINT (AREF (matrix
, i
));
4803 if (NILP (color_adjust
))
4804 color_adjust
= make_number (0xffff / 2);
4806 if (i
== 9 && NUMBERP (color_adjust
))
4807 x_detect_edges (f
, img
, trans
, XFLOATINT (color_adjust
));
4811 /* Transform image IMG on frame F so that it looks disabled. */
4814 x_disable_image (struct frame
*f
, struct image
*img
)
4816 Display_Info
*dpyinfo
= FRAME_DISPLAY_INFO (f
);
4818 int n_planes
= dpyinfo
->n_planes
* dpyinfo
->n_cbits
;
4820 int n_planes
= dpyinfo
->n_planes
;
4821 #endif /* HAVE_NTGUI */
4825 /* Color (or grayscale). Convert to gray, and equalize. Just
4826 drawing such images with a stipple can look very odd, so
4827 we're using this method instead. */
4828 XColor
*colors
= x_to_xcolors (f
, img
, 1);
4830 const int h
= 15000;
4831 const int l
= 30000;
4833 for (p
= colors
, end
= colors
+ img
->width
* img
->height
;
4837 int i
= COLOR_INTENSITY (p
->red
, p
->green
, p
->blue
);
4838 int i2
= (0xffff - h
- l
) * i
/ 0xffff + l
;
4839 p
->red
= p
->green
= p
->blue
= i2
;
4842 x_from_xcolors (f
, img
, colors
);
4845 /* Draw a cross over the disabled image, if we must or if we
4847 if (n_planes
< 2 || cross_disabled_images
)
4850 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4852 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4854 Display
*dpy
= FRAME_X_DISPLAY (f
);
4857 image_sync_to_pixmaps (f
, img
);
4858 gc
= XCreateGC (dpy
, img
->pixmap
, 0, NULL
);
4859 XSetForeground (dpy
, gc
, BLACK_PIX_DEFAULT (f
));
4860 XDrawLine (dpy
, img
->pixmap
, gc
, 0, 0,
4861 img
->width
- 1, img
->height
- 1);
4862 XDrawLine (dpy
, img
->pixmap
, gc
, 0, img
->height
- 1,
4868 gc
= XCreateGC (dpy
, img
->mask
, 0, NULL
);
4869 XSetForeground (dpy
, gc
, MaskForeground (f
));
4870 XDrawLine (dpy
, img
->mask
, gc
, 0, 0,
4871 img
->width
- 1, img
->height
- 1);
4872 XDrawLine (dpy
, img
->mask
, gc
, 0, img
->height
- 1,
4876 #endif /* !HAVE_NS */
4881 hdc
= get_frame_dc (f
);
4882 bmpdc
= CreateCompatibleDC (hdc
);
4883 release_frame_dc (f
, hdc
);
4885 prev
= SelectObject (bmpdc
, img
->pixmap
);
4887 SetTextColor (bmpdc
, BLACK_PIX_DEFAULT (f
));
4888 MoveToEx (bmpdc
, 0, 0, NULL
);
4889 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4890 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4891 LineTo (bmpdc
, img
->width
- 1, 0);
4895 SelectObject (bmpdc
, img
->mask
);
4896 SetTextColor (bmpdc
, WHITE_PIX_DEFAULT (f
));
4897 MoveToEx (bmpdc
, 0, 0, NULL
);
4898 LineTo (bmpdc
, img
->width
- 1, img
->height
- 1);
4899 MoveToEx (bmpdc
, 0, img
->height
- 1, NULL
);
4900 LineTo (bmpdc
, img
->width
- 1, 0);
4902 SelectObject (bmpdc
, prev
);
4904 #endif /* HAVE_NTGUI */
4909 /* Build a mask for image IMG which is used on frame F. FILE is the
4910 name of an image file, for error messages. HOW determines how to
4911 determine the background color of IMG. If it is a list '(R G B)',
4912 with R, G, and B being integers >= 0, take that as the color of the
4913 background. Otherwise, determine the background color of IMG
4917 x_build_heuristic_mask (struct frame
*f
, struct image
*img
, Lisp_Object how
)
4919 XImagePtr_or_DC ximg
;
4926 #endif /* HAVE_NTGUI */
4928 bool use_img_background
;
4929 unsigned long bg
= 0;
4932 x_clear_image_1 (f
, img
, CLEAR_IMAGE_MASK
);
4936 /* Create an image and pixmap serving as mask. */
4937 if (! image_create_x_image_and_pixmap (f
, img
, img
->width
, img
->height
, 1,
4940 #endif /* !HAVE_NS */
4942 /* Create the bit array serving as mask. */
4943 row_width
= (img
->width
+ 7) / 8;
4944 mask_img
= xzalloc (row_width
* img
->height
);
4945 #endif /* HAVE_NTGUI */
4947 /* Get the X image or create a memory device context for IMG. */
4948 ximg
= image_get_x_image_or_dc (f
, img
, 0, &prev
);
4950 /* Determine the background color of ximg. If HOW is `(R G B)'
4951 take that as color. Otherwise, use the image's background color. */
4952 use_img_background
= 1;
4958 for (i
= 0; i
< 3 && CONSP (how
) && NATNUMP (XCAR (how
)); ++i
)
4960 rgb
[i
] = XFASTINT (XCAR (how
)) & 0xffff;
4964 if (i
== 3 && NILP (how
))
4966 char color_name
[30];
4967 sprintf (color_name
, "#%04x%04x%04x", rgb
[0], rgb
[1], rgb
[2]);
4970 0x00ffffff & /* Filter out palette info. */
4971 #endif /* HAVE_NTGUI */
4972 x_alloc_image_color (f
, img
, build_string (color_name
), 0));
4973 use_img_background
= 0;
4977 if (use_img_background
)
4978 bg
= four_corners_best (ximg
, img
->corners
, img
->width
, img
->height
);
4980 /* Set all bits in mask_img to 1 whose color in ximg is different
4981 from the background color bg. */
4983 for (y
= 0; y
< img
->height
; ++y
)
4984 for (x
= 0; x
< img
->width
; ++x
)
4986 XPutPixel (mask_img
, x
, y
, (XGetPixel (ximg
, x
, y
) != bg
4987 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
));
4989 if (XGetPixel (ximg
, x
, y
) == bg
)
4990 ns_set_alpha (ximg
, x
, y
, 0);
4991 #endif /* HAVE_NS */
4993 /* Fill in the background_transparent field while we have the mask handy. */
4994 image_background_transparent (img
, f
, mask_img
);
4996 /* Put mask_img into the image. */
4997 image_put_x_image (f
, img
, mask_img
, 1);
4998 #endif /* !HAVE_NS */
5000 for (y
= 0; y
< img
->height
; ++y
)
5001 for (x
= 0; x
< img
->width
; ++x
)
5003 COLORREF p
= GetPixel (ximg
, x
, y
);
5005 mask_img
[y
* row_width
+ x
/ 8] |= 1 << (x
% 8);
5008 /* Create the mask image. */
5009 img
->mask
= w32_create_pixmap_from_bitmap_data (img
->width
, img
->height
,
5011 /* Fill in the background_transparent field while we have the mask handy. */
5012 SelectObject (ximg
, img
->mask
);
5013 image_background_transparent (img
, f
, ximg
);
5015 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
5017 #endif /* HAVE_NTGUI */
5019 image_unget_x_image_or_dc (img
, 0, ximg
, prev
);
5023 /***********************************************************************
5024 PBM (mono, gray, color)
5025 ***********************************************************************/
5027 static bool pbm_image_p (Lisp_Object object
);
5028 static bool pbm_load (struct frame
*f
, struct image
*img
);
5030 /* Indices of image specification fields in gs_format, below. */
5032 enum pbm_keyword_index
5048 /* Vector of image_keyword structures describing the format
5049 of valid user-defined image specifications. */
5051 static const struct image_keyword pbm_format
[PBM_LAST
] =
5053 {":type", IMAGE_SYMBOL_VALUE
, 1},
5054 {":file", IMAGE_STRING_VALUE
, 0},
5055 {":data", IMAGE_STRING_VALUE
, 0},
5056 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5057 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
5058 {":relief", IMAGE_INTEGER_VALUE
, 0},
5059 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5060 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5061 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5062 {":foreground", IMAGE_STRING_OR_NIL_VALUE
, 0},
5063 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5066 /* Structure describing the image type `pbm'. */
5068 static struct image_type pbm_type
=
5070 SYMBOL_INDEX (Qpbm
),
5079 /* Return true if OBJECT is a valid PBM image specification. */
5082 pbm_image_p (Lisp_Object object
)
5084 struct image_keyword fmt
[PBM_LAST
];
5086 memcpy (fmt
, pbm_format
, sizeof fmt
);
5088 if (!parse_image_spec (object
, fmt
, PBM_LAST
, Qpbm
))
5091 /* Must specify either :data or :file. */
5092 return fmt
[PBM_DATA
].count
+ fmt
[PBM_FILE
].count
== 1;
5096 /* Get next char skipping comments in Netpbm header. Returns -1 at
5100 pbm_next_char (unsigned char **s
, unsigned char *end
)
5104 while (*s
< end
&& (c
= *(*s
)++, c
== '#'))
5106 /* Skip to the next line break. */
5107 while (*s
< end
&& (c
= *(*s
)++, c
!= '\n' && c
!= '\r'))
5117 /* Scan a decimal number from *S and return it. Advance *S while
5118 reading the number. END is the end of the string. Value is -1 at
5122 pbm_scan_number (unsigned char **s
, unsigned char *end
)
5124 int c
= 0, val
= -1;
5126 /* Skip white-space. */
5127 while ((c
= pbm_next_char (s
, end
)) != -1 && c_isspace (c
))
5132 /* Read decimal number. */
5134 while ((c
= pbm_next_char (s
, end
)) != -1 && c_isdigit (c
))
5135 val
= 10 * val
+ c
- '0';
5142 /* Load PBM image IMG for use on frame F. */
5145 pbm_load (struct frame
*f
, struct image
*img
)
5149 int width
, height
, max_color_idx
= 0;
5151 Lisp_Object file
, specified_file
;
5152 enum {PBM_MONO
, PBM_GRAY
, PBM_COLOR
} type
;
5153 unsigned char *contents
= NULL
;
5154 unsigned char *end
, *p
;
5157 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5159 if (STRINGP (specified_file
))
5161 file
= x_find_image_file (specified_file
);
5162 if (!STRINGP (file
))
5164 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5168 contents
= slurp_file (SSDATA (file
), &size
);
5169 if (contents
== NULL
)
5171 image_error ("Error reading `%s'", file
, Qnil
);
5176 end
= contents
+ size
;
5181 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5182 if (!STRINGP (data
))
5184 image_error ("Invalid image data `%s'", data
, Qnil
);
5188 end
= p
+ SBYTES (data
);
5191 /* Check magic number. */
5192 if (end
- p
< 2 || *p
++ != 'P')
5194 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5197 img
->pixmap
= NO_PIXMAP
;
5204 raw_p
= 0, type
= PBM_MONO
;
5208 raw_p
= 0, type
= PBM_GRAY
;
5212 raw_p
= 0, type
= PBM_COLOR
;
5216 raw_p
= 1, type
= PBM_MONO
;
5220 raw_p
= 1, type
= PBM_GRAY
;
5224 raw_p
= 1, type
= PBM_COLOR
;
5228 image_error ("Not a PBM image: `%s'", img
->spec
, Qnil
);
5232 /* Read width, height, maximum color-component. Characters
5233 starting with `#' up to the end of a line are ignored. */
5234 width
= pbm_scan_number (&p
, end
);
5235 height
= pbm_scan_number (&p
, end
);
5237 if (type
!= PBM_MONO
)
5239 max_color_idx
= pbm_scan_number (&p
, end
);
5240 if (max_color_idx
> 65535 || max_color_idx
< 0)
5242 image_error ("Unsupported maximum PBM color value", Qnil
, Qnil
);
5247 if (!check_image_size (f
, width
, height
))
5249 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5253 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0))
5256 /* Initialize the color hash table. */
5257 init_color_table ();
5259 if (type
== PBM_MONO
)
5262 struct image_keyword fmt
[PBM_LAST
];
5263 unsigned long fg
= FRAME_FOREGROUND_PIXEL (f
);
5264 unsigned long bg
= FRAME_BACKGROUND_PIXEL (f
);
5266 /* Parse the image specification. */
5267 memcpy (fmt
, pbm_format
, sizeof fmt
);
5268 parse_image_spec (img
->spec
, fmt
, PBM_LAST
, Qpbm
);
5270 /* Get foreground and background colors, maybe allocate colors. */
5271 if (fmt
[PBM_FOREGROUND
].count
5272 && STRINGP (fmt
[PBM_FOREGROUND
].value
))
5273 fg
= x_alloc_image_color (f
, img
, fmt
[PBM_FOREGROUND
].value
, fg
);
5274 if (fmt
[PBM_BACKGROUND
].count
5275 && STRINGP (fmt
[PBM_BACKGROUND
].value
))
5277 bg
= x_alloc_image_color (f
, img
, fmt
[PBM_BACKGROUND
].value
, bg
);
5278 img
->background
= bg
;
5279 img
->background_valid
= 1;
5282 for (y
= 0; y
< height
; ++y
)
5283 for (x
= 0; x
< width
; ++x
)
5291 x_destroy_x_image (ximg
);
5292 x_clear_image (f
, img
);
5293 image_error ("Invalid image size in image `%s'",
5303 g
= pbm_scan_number (&p
, end
);
5305 XPutPixel (ximg
, x
, y
, g
? fg
: bg
);
5310 int expected_size
= height
* width
;
5311 if (max_color_idx
> 255)
5313 if (type
== PBM_COLOR
)
5316 if (raw_p
&& p
+ expected_size
> end
)
5318 x_destroy_x_image (ximg
);
5319 x_clear_image (f
, img
);
5320 image_error ("Invalid image size in image `%s'",
5325 for (y
= 0; y
< height
; ++y
)
5326 for (x
= 0; x
< width
; ++x
)
5330 if (type
== PBM_GRAY
&& raw_p
)
5333 if (max_color_idx
> 255)
5334 r
= g
= b
= r
* 256 + *p
++;
5336 else if (type
== PBM_GRAY
)
5337 r
= g
= b
= pbm_scan_number (&p
, end
);
5341 if (max_color_idx
> 255)
5344 if (max_color_idx
> 255)
5347 if (max_color_idx
> 255)
5352 r
= pbm_scan_number (&p
, end
);
5353 g
= pbm_scan_number (&p
, end
);
5354 b
= pbm_scan_number (&p
, end
);
5357 if (r
< 0 || g
< 0 || b
< 0)
5359 x_destroy_x_image (ximg
);
5360 image_error ("Invalid pixel value in image `%s'",
5365 /* RGB values are now in the range 0..max_color_idx.
5366 Scale this to the range 0..0xffff supported by X. */
5367 r
= (double) r
* 65535 / max_color_idx
;
5368 g
= (double) g
* 65535 / max_color_idx
;
5369 b
= (double) b
* 65535 / max_color_idx
;
5370 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5374 #ifdef COLOR_TABLE_SUPPORT
5375 /* Store in IMG->colors the colors allocated for the image, and
5376 free the color table. */
5377 img
->colors
= colors_in_color_table (&img
->ncolors
);
5378 free_color_table ();
5379 #endif /* COLOR_TABLE_SUPPORT */
5382 img
->height
= height
;
5384 /* Maybe fill in the background field while we have ximg handy. */
5386 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5387 /* Casting avoids a GCC warning. */
5388 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
5390 /* Put ximg into the image. */
5391 image_put_x_image (f
, img
, ximg
, 0);
5393 /* X and W32 versions did it here, MAC version above. ++kfs
5395 img->height = height; */
5402 /***********************************************************************
5404 ***********************************************************************/
5406 #if defined (HAVE_PNG) || defined (HAVE_NS)
5408 /* Function prototypes. */
5410 static bool png_image_p (Lisp_Object object
);
5411 static bool png_load (struct frame
*f
, struct image
*img
);
5413 /* Indices of image specification fields in png_format, below. */
5415 enum png_keyword_index
5430 /* Vector of image_keyword structures describing the format
5431 of valid user-defined image specifications. */
5433 static const struct image_keyword png_format
[PNG_LAST
] =
5435 {":type", IMAGE_SYMBOL_VALUE
, 1},
5436 {":data", IMAGE_STRING_VALUE
, 0},
5437 {":file", IMAGE_STRING_VALUE
, 0},
5438 {":ascent", IMAGE_ASCENT_VALUE
, 0},
5439 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
5440 {":relief", IMAGE_INTEGER_VALUE
, 0},
5441 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5442 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5443 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
5444 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
5447 #if defined HAVE_NTGUI && defined WINDOWSNT
5448 static bool init_png_functions (void);
5450 #define init_png_functions NULL
5453 /* Structure describing the image type `png'. */
5455 static struct image_type png_type
=
5457 SYMBOL_INDEX (Qpng
),
5465 /* Return true if OBJECT is a valid PNG image specification. */
5468 png_image_p (Lisp_Object object
)
5470 struct image_keyword fmt
[PNG_LAST
];
5471 memcpy (fmt
, png_format
, sizeof fmt
);
5473 if (!parse_image_spec (object
, fmt
, PNG_LAST
, Qpng
))
5476 /* Must specify either the :data or :file keyword. */
5477 return fmt
[PNG_FILE
].count
+ fmt
[PNG_DATA
].count
== 1;
5480 #endif /* HAVE_PNG || HAVE_NS */
5483 #if defined HAVE_PNG && !defined HAVE_NS
5486 /* PNG library details. */
5488 DEF_DLL_FN (png_voidp
, png_get_io_ptr
, (png_structp
));
5489 DEF_DLL_FN (int, png_sig_cmp
, (png_bytep
, png_size_t
, png_size_t
));
5490 DEF_DLL_FN (png_structp
, png_create_read_struct
,
5491 (png_const_charp
, png_voidp
, png_error_ptr
, png_error_ptr
));
5492 DEF_DLL_FN (png_infop
, png_create_info_struct
, (png_structp
));
5493 DEF_DLL_FN (void, png_destroy_read_struct
,
5494 (png_structpp
, png_infopp
, png_infopp
));
5495 DEF_DLL_FN (void, png_set_read_fn
, (png_structp
, png_voidp
, png_rw_ptr
));
5496 DEF_DLL_FN (void, png_set_sig_bytes
, (png_structp
, int));
5497 DEF_DLL_FN (void, png_read_info
, (png_structp
, png_infop
));
5498 DEF_DLL_FN (png_uint_32
, png_get_IHDR
,
5499 (png_structp
, png_infop
, png_uint_32
*, png_uint_32
*,
5500 int *, int *, int *, int *, int *));
5501 DEF_DLL_FN (png_uint_32
, png_get_valid
, (png_structp
, png_infop
, png_uint_32
));
5502 DEF_DLL_FN (void, png_set_strip_16
, (png_structp
));
5503 DEF_DLL_FN (void, png_set_expand
, (png_structp
));
5504 DEF_DLL_FN (void, png_set_gray_to_rgb
, (png_structp
));
5505 DEF_DLL_FN (void, png_set_background
,
5506 (png_structp
, png_color_16p
, int, int, double));
5507 DEF_DLL_FN (png_uint_32
, png_get_bKGD
,
5508 (png_structp
, png_infop
, png_color_16p
*));
5509 DEF_DLL_FN (void, png_read_update_info
, (png_structp
, png_infop
));
5510 DEF_DLL_FN (png_byte
, png_get_channels
, (png_structp
, png_infop
));
5511 DEF_DLL_FN (png_size_t
, png_get_rowbytes
, (png_structp
, png_infop
));
5512 DEF_DLL_FN (void, png_read_image
, (png_structp
, png_bytepp
));
5513 DEF_DLL_FN (void, png_read_end
, (png_structp
, png_infop
));
5514 DEF_DLL_FN (void, png_error
, (png_structp
, png_const_charp
));
5516 # if (PNG_LIBPNG_VER >= 10500)
5517 DEF_DLL_FN (void, png_longjmp
, (png_structp
, int)) PNG_NORETURN
;
5518 DEF_DLL_FN (jmp_buf *, png_set_longjmp_fn
,
5519 (png_structp
, png_longjmp_ptr
, size_t));
5520 # endif /* libpng version >= 1.5 */
5523 init_png_functions (void)
5527 if (!(library
= w32_delayed_load (Qpng
)))
5530 LOAD_DLL_FN (library
, png_get_io_ptr
);
5531 LOAD_DLL_FN (library
, png_sig_cmp
);
5532 LOAD_DLL_FN (library
, png_create_read_struct
);
5533 LOAD_DLL_FN (library
, png_create_info_struct
);
5534 LOAD_DLL_FN (library
, png_destroy_read_struct
);
5535 LOAD_DLL_FN (library
, png_set_read_fn
);
5536 LOAD_DLL_FN (library
, png_set_sig_bytes
);
5537 LOAD_DLL_FN (library
, png_read_info
);
5538 LOAD_DLL_FN (library
, png_get_IHDR
);
5539 LOAD_DLL_FN (library
, png_get_valid
);
5540 LOAD_DLL_FN (library
, png_set_strip_16
);
5541 LOAD_DLL_FN (library
, png_set_expand
);
5542 LOAD_DLL_FN (library
, png_set_gray_to_rgb
);
5543 LOAD_DLL_FN (library
, png_set_background
);
5544 LOAD_DLL_FN (library
, png_get_bKGD
);
5545 LOAD_DLL_FN (library
, png_read_update_info
);
5546 LOAD_DLL_FN (library
, png_get_channels
);
5547 LOAD_DLL_FN (library
, png_get_rowbytes
);
5548 LOAD_DLL_FN (library
, png_read_image
);
5549 LOAD_DLL_FN (library
, png_read_end
);
5550 LOAD_DLL_FN (library
, png_error
);
5552 # if (PNG_LIBPNG_VER >= 10500)
5553 LOAD_DLL_FN (library
, png_longjmp
);
5554 LOAD_DLL_FN (library
, png_set_longjmp_fn
);
5555 # endif /* libpng version >= 1.5 */
5560 # undef png_create_info_struct
5561 # undef png_create_read_struct
5562 # undef png_destroy_read_struct
5564 # undef png_get_bKGD
5565 # undef png_get_channels
5566 # undef png_get_IHDR
5567 # undef png_get_io_ptr
5568 # undef png_get_rowbytes
5569 # undef png_get_valid
5571 # undef png_read_end
5572 # undef png_read_image
5573 # undef png_read_info
5574 # undef png_read_update_info
5575 # undef png_set_background
5576 # undef png_set_expand
5577 # undef png_set_gray_to_rgb
5578 # undef png_set_longjmp_fn
5579 # undef png_set_read_fn
5580 # undef png_set_sig_bytes
5581 # undef png_set_strip_16
5584 # define png_create_info_struct fn_png_create_info_struct
5585 # define png_create_read_struct fn_png_create_read_struct
5586 # define png_destroy_read_struct fn_png_destroy_read_struct
5587 # define png_error fn_png_error
5588 # define png_get_bKGD fn_png_get_bKGD
5589 # define png_get_channels fn_png_get_channels
5590 # define png_get_IHDR fn_png_get_IHDR
5591 # define png_get_io_ptr fn_png_get_io_ptr
5592 # define png_get_rowbytes fn_png_get_rowbytes
5593 # define png_get_valid fn_png_get_valid
5594 # define png_longjmp fn_png_longjmp
5595 # define png_read_end fn_png_read_end
5596 # define png_read_image fn_png_read_image
5597 # define png_read_info fn_png_read_info
5598 # define png_read_update_info fn_png_read_update_info
5599 # define png_set_background fn_png_set_background
5600 # define png_set_expand fn_png_set_expand
5601 # define png_set_gray_to_rgb fn_png_set_gray_to_rgb
5602 # define png_set_longjmp_fn fn_png_set_longjmp_fn
5603 # define png_set_read_fn fn_png_set_read_fn
5604 # define png_set_sig_bytes fn_png_set_sig_bytes
5605 # define png_set_strip_16 fn_png_set_strip_16
5606 # define png_sig_cmp fn_png_sig_cmp
5608 # endif /* WINDOWSNT */
5610 /* Fast implementations of setjmp and longjmp. Although setjmp and longjmp
5611 will do, POSIX _setjmp and _longjmp (if available) are often faster.
5612 Do not use sys_setjmp, as PNG supports only jmp_buf.
5613 It's OK if the longjmp substitute restores the signal mask. */
5614 # ifdef HAVE__SETJMP
5615 # define FAST_SETJMP(j) _setjmp (j)
5616 # define FAST_LONGJMP _longjmp
5618 # define FAST_SETJMP(j) setjmp (j)
5619 # define FAST_LONGJMP longjmp
5622 # if PNG_LIBPNG_VER < 10500
5623 # define PNG_LONGJMP(ptr) FAST_LONGJMP ((ptr)->jmpbuf, 1)
5624 # define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5626 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5627 # define PNG_LONGJMP(ptr) png_longjmp (ptr, 1)
5628 # define PNG_JMPBUF(ptr) \
5629 (*png_set_longjmp_fn (ptr, FAST_LONGJMP, sizeof (jmp_buf)))
5632 /* Error and warning handlers installed when the PNG library
5635 static _Noreturn
void
5636 my_png_error (png_struct
*png_ptr
, const char *msg
)
5638 eassert (png_ptr
!= NULL
);
5639 /* Avoid compiler warning about deprecated direct access to
5640 png_ptr's fields in libpng versions 1.4.x. */
5641 image_error ("PNG error: %s", build_string (msg
), Qnil
);
5642 PNG_LONGJMP (png_ptr
);
5647 my_png_warning (png_struct
*png_ptr
, const char *msg
)
5649 eassert (png_ptr
!= NULL
);
5650 image_error ("PNG warning: %s", build_string (msg
), Qnil
);
5653 /* Memory source for PNG decoding. */
5655 struct png_memory_storage
5657 unsigned char *bytes
; /* The data */
5658 ptrdiff_t len
; /* How big is it? */
5659 ptrdiff_t index
; /* Where are we? */
5663 /* Function set as reader function when reading PNG image from memory.
5664 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5665 bytes from the input to DATA. */
5668 png_read_from_memory (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5670 struct png_memory_storage
*tbr
= png_get_io_ptr (png_ptr
);
5672 if (length
> tbr
->len
- tbr
->index
)
5673 png_error (png_ptr
, "Read error");
5675 memcpy (data
, tbr
->bytes
+ tbr
->index
, length
);
5676 tbr
->index
= tbr
->index
+ length
;
5680 /* Function set as reader function when reading PNG image from a file.
5681 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5682 bytes from the input to DATA. */
5685 png_read_from_file (png_structp png_ptr
, png_bytep data
, png_size_t length
)
5687 FILE *fp
= png_get_io_ptr (png_ptr
);
5689 if (fread (data
, 1, length
, fp
) < length
)
5690 png_error (png_ptr
, "Read error");
5694 /* Load PNG image IMG for use on frame F. Value is true if
5697 struct png_load_context
5699 /* These are members so that longjmp doesn't munge local variables. */
5700 png_struct
*png_ptr
;
5709 png_load_body (struct frame
*f
, struct image
*img
, struct png_load_context
*c
)
5711 Lisp_Object file
, specified_file
;
5712 Lisp_Object specified_data
;
5715 XImagePtr ximg
, mask_img
= NULL
;
5716 png_struct
*png_ptr
;
5717 png_info
*info_ptr
= NULL
, *end_info
= NULL
;
5720 png_byte
*pixels
= NULL
;
5721 png_byte
**rows
= NULL
;
5722 png_uint_32 width
, height
;
5723 int bit_depth
, color_type
, interlace_type
;
5725 png_uint_32 row_bytes
;
5727 struct png_memory_storage tbr
; /* Data to be read */
5729 /* Find out what file to load. */
5730 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
5731 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
5733 if (NILP (specified_data
))
5735 file
= x_find_image_file (specified_file
);
5736 if (!STRINGP (file
))
5738 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
5742 /* Open the image file. */
5743 fp
= emacs_fopen (SSDATA (file
), "rb");
5746 image_error ("Cannot open image file `%s'", file
, Qnil
);
5750 /* Check PNG signature. */
5751 if (fread (sig
, 1, sizeof sig
, fp
) != sizeof sig
5752 || png_sig_cmp (sig
, 0, sizeof sig
))
5755 image_error ("Not a PNG file: `%s'", file
, Qnil
);
5761 if (!STRINGP (specified_data
))
5763 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
5767 /* Read from memory. */
5768 tbr
.bytes
= SDATA (specified_data
);
5769 tbr
.len
= SBYTES (specified_data
);
5772 /* Check PNG signature. */
5773 if (tbr
.len
< sizeof sig
5774 || png_sig_cmp (tbr
.bytes
, 0, sizeof sig
))
5776 image_error ("Not a PNG image: `%s'", img
->spec
, Qnil
);
5780 /* Need to skip past the signature. */
5781 tbr
.bytes
+= sizeof (sig
);
5784 /* Initialize read and info structs for PNG lib. */
5785 png_ptr
= png_create_read_struct (PNG_LIBPNG_VER_STRING
,
5790 info_ptr
= png_create_info_struct (png_ptr
);
5791 end_info
= png_create_info_struct (png_ptr
);
5794 c
->png_ptr
= png_ptr
;
5795 c
->info_ptr
= info_ptr
;
5796 c
->end_info
= end_info
;
5801 if (! (info_ptr
&& end_info
))
5803 png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
5808 if (fp
) fclose (fp
);
5812 /* Set error jump-back. We come back here when the PNG library
5813 detects an error. */
5814 if (FAST_SETJMP (PNG_JMPBUF (png_ptr
)))
5818 png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
5826 /* Silence a bogus diagnostic; see GCC bug 54561. */
5827 IF_LINT (fp
= c
->fp
);
5829 /* Read image info. */
5830 if (!NILP (specified_data
))
5831 png_set_read_fn (png_ptr
, &tbr
, png_read_from_memory
);
5833 png_set_read_fn (png_ptr
, fp
, png_read_from_file
);
5835 png_set_sig_bytes (png_ptr
, sizeof sig
);
5836 png_read_info (png_ptr
, info_ptr
);
5837 png_get_IHDR (png_ptr
, info_ptr
, &width
, &height
, &bit_depth
, &color_type
,
5838 &interlace_type
, NULL
, NULL
);
5840 if (! (width
<= INT_MAX
&& height
<= INT_MAX
5841 && check_image_size (f
, width
, height
)))
5843 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
5847 /* Create the X image and pixmap now, so that the work below can be
5848 omitted if the image is too large for X. */
5849 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0))
5852 /* If image contains simply transparency data, we prefer to
5853 construct a clipping mask. */
5854 if (png_get_valid (png_ptr
, info_ptr
, PNG_INFO_tRNS
))
5859 /* This function is easier to write if we only have to handle
5860 one data format: RGB or RGBA with 8 bits per channel. Let's
5861 transform other formats into that format. */
5863 /* Strip more than 8 bits per channel. */
5864 if (bit_depth
== 16)
5865 png_set_strip_16 (png_ptr
);
5867 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5869 png_set_expand (png_ptr
);
5871 /* Convert grayscale images to RGB. */
5872 if (color_type
== PNG_COLOR_TYPE_GRAY
5873 || color_type
== PNG_COLOR_TYPE_GRAY_ALPHA
)
5874 png_set_gray_to_rgb (png_ptr
);
5876 /* Handle alpha channel by combining the image with a background
5877 color. Do this only if a real alpha channel is supplied. For
5878 simple transparency, we prefer a clipping mask. */
5881 /* png_color_16 *image_bg; */
5882 Lisp_Object specified_bg
5883 = image_spec_value (img
->spec
, QCbackground
, NULL
);
5886 /* If the user specified a color, try to use it; if not, use the
5887 current frame background, ignoring any default background
5888 color set by the image. */
5889 if (STRINGP (specified_bg
)
5890 ? x_defined_color (f
, SSDATA (specified_bg
), &color
, false)
5891 : (x_query_frame_background_color (f
, &color
), true))
5892 /* The user specified `:background', use that. */
5894 int shift
= bit_depth
== 16 ? 0 : 8;
5895 png_color_16 bg
= { 0 };
5896 bg
.red
= color
.red
>> shift
;
5897 bg
.green
= color
.green
>> shift
;
5898 bg
.blue
= color
.blue
>> shift
;
5900 png_set_background (png_ptr
, &bg
,
5901 PNG_BACKGROUND_GAMMA_SCREEN
, 0, 1.0);
5905 /* Update info structure. */
5906 png_read_update_info (png_ptr
, info_ptr
);
5908 /* Get number of channels. Valid values are 1 for grayscale images
5909 and images with a palette, 2 for grayscale images with transparency
5910 information (alpha channel), 3 for RGB images, and 4 for RGB
5911 images with alpha channel, i.e. RGBA. If conversions above were
5912 sufficient we should only have 3 or 4 channels here. */
5913 channels
= png_get_channels (png_ptr
, info_ptr
);
5914 eassert (channels
== 3 || channels
== 4);
5916 /* Number of bytes needed for one row of the image. */
5917 row_bytes
= png_get_rowbytes (png_ptr
, info_ptr
);
5919 /* Allocate memory for the image. */
5920 if (height
> min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *rows
5921 || row_bytes
> min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *pixels
/ height
)
5922 memory_full (SIZE_MAX
);
5923 c
->pixels
= pixels
= xmalloc (sizeof *pixels
* row_bytes
* height
);
5924 c
->rows
= rows
= xmalloc (height
* sizeof *rows
);
5925 for (i
= 0; i
< height
; ++i
)
5926 rows
[i
] = pixels
+ i
* row_bytes
;
5928 /* Read the entire image. */
5929 png_read_image (png_ptr
, rows
);
5930 png_read_end (png_ptr
, info_ptr
);
5937 /* Create an image and pixmap serving as mask if the PNG image
5938 contains an alpha channel. */
5941 && !image_create_x_image_and_pixmap (f
, img
, width
, height
, 1,
5944 x_destroy_x_image (ximg
);
5945 x_clear_image_1 (f
, img
, CLEAR_IMAGE_PIXMAP
);
5949 /* Fill the X image and mask from PNG data. */
5950 init_color_table ();
5952 for (y
= 0; y
< height
; ++y
)
5954 png_byte
*p
= rows
[y
];
5956 for (x
= 0; x
< width
; ++x
)
5963 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, r
, g
, b
));
5964 /* An alpha channel, aka mask channel, associates variable
5965 transparency with an image. Where other image formats
5966 support binary transparency---fully transparent or fully
5967 opaque---PNG allows up to 254 levels of partial transparency.
5968 The PNG library implements partial transparency by combining
5969 the image with a specified background color.
5971 I'm not sure how to handle this here nicely: because the
5972 background on which the image is displayed may change, for
5973 real alpha channel support, it would be necessary to create
5974 a new image for each possible background.
5976 What I'm doing now is that a mask is created if we have
5977 boolean transparency information. Otherwise I'm using
5978 the frame's background color to combine the image with. */
5983 XPutPixel (mask_img
, x
, y
, *p
> 0 ? PIX_MASK_DRAW
: PIX_MASK_RETAIN
);
5989 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
5990 /* Set IMG's background color from the PNG image, unless the user
5994 if (png_get_bKGD (png_ptr
, info_ptr
, &bg
))
5996 img
->background
= lookup_rgb_color (f
, bg
->red
, bg
->green
, bg
->blue
);
5997 img
->background_valid
= 1;
6001 # ifdef COLOR_TABLE_SUPPORT
6002 /* Remember colors allocated for this image. */
6003 img
->colors
= colors_in_color_table (&img
->ncolors
);
6004 free_color_table ();
6005 # endif /* COLOR_TABLE_SUPPORT */
6008 png_destroy_read_struct (&c
->png_ptr
, &c
->info_ptr
, &c
->end_info
);
6013 img
->height
= height
;
6015 /* Maybe fill in the background field while we have ximg handy.
6016 Casting avoids a GCC warning. */
6017 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6019 /* Put ximg into the image. */
6020 image_put_x_image (f
, img
, ximg
, 0);
6022 /* Same for the mask. */
6025 /* Fill in the background_transparent field while we have the
6026 mask handy. Casting avoids a GCC warning. */
6027 image_background_transparent (img
, f
, (XImagePtr_or_DC
)mask_img
);
6029 image_put_x_image (f
, img
, mask_img
, 1);
6036 png_load (struct frame
*f
, struct image
*img
)
6038 struct png_load_context c
;
6039 return png_load_body (f
, img
, &c
);
6042 #elif defined HAVE_NS
6045 png_load (struct frame
*f
, struct image
*img
)
6047 return ns_load_image (f
, img
,
6048 image_spec_value (img
->spec
, QCfile
, NULL
),
6049 image_spec_value (img
->spec
, QCdata
, NULL
));
6052 #endif /* HAVE_NS */
6056 /***********************************************************************
6058 ***********************************************************************/
6060 #if defined (HAVE_JPEG) || defined (HAVE_NS)
6062 static bool jpeg_image_p (Lisp_Object object
);
6063 static bool jpeg_load (struct frame
*f
, struct image
*img
);
6065 /* Indices of image specification fields in gs_format, below. */
6067 enum jpeg_keyword_index
6076 JPEG_HEURISTIC_MASK
,
6082 /* Vector of image_keyword structures describing the format
6083 of valid user-defined image specifications. */
6085 static const struct image_keyword jpeg_format
[JPEG_LAST
] =
6087 {":type", IMAGE_SYMBOL_VALUE
, 1},
6088 {":data", IMAGE_STRING_VALUE
, 0},
6089 {":file", IMAGE_STRING_VALUE
, 0},
6090 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6091 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
6092 {":relief", IMAGE_INTEGER_VALUE
, 0},
6093 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6094 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6095 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6096 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
6099 #if defined HAVE_NTGUI && defined WINDOWSNT
6100 static bool init_jpeg_functions (void);
6102 #define init_jpeg_functions NULL
6105 /* Structure describing the image type `jpeg'. */
6107 static struct image_type jpeg_type
=
6109 SYMBOL_INDEX (Qjpeg
),
6113 init_jpeg_functions
,
6117 /* Return true if OBJECT is a valid JPEG image specification. */
6120 jpeg_image_p (Lisp_Object object
)
6122 struct image_keyword fmt
[JPEG_LAST
];
6124 memcpy (fmt
, jpeg_format
, sizeof fmt
);
6126 if (!parse_image_spec (object
, fmt
, JPEG_LAST
, Qjpeg
))
6129 /* Must specify either the :data or :file keyword. */
6130 return fmt
[JPEG_FILE
].count
+ fmt
[JPEG_DATA
].count
== 1;
6133 #endif /* HAVE_JPEG || HAVE_NS */
6137 /* Work around a warning about HAVE_STDLIB_H being redefined in
6139 # ifdef HAVE_STDLIB_H
6140 # undef HAVE_STDLIB_H
6143 # if defined (HAVE_NTGUI) && !defined (__WIN32__)
6144 /* In older releases of the jpeg library, jpeglib.h will define boolean
6145 differently depending on __WIN32__, so make sure it is defined. */
6146 # define __WIN32__ 1
6149 /* rpcndr.h (via windows.h) and jpeglib.h both define boolean types.
6150 Some versions of jpeglib try to detect whether rpcndr.h is loaded,
6151 using the Windows boolean type instead of the jpeglib boolean type
6152 if so. Cygwin jpeglib, however, doesn't try to detect whether its
6153 headers are included along with windows.h, so under Cygwin, jpeglib
6154 attempts to define a conflicting boolean type. Worse, forcing
6155 Cygwin jpeglib headers to use the Windows boolean type doesn't work
6156 because it created an ABI incompatibility between the
6157 already-compiled jpeg library and the header interface definition.
6159 The best we can do is to define jpeglib's boolean type to a
6160 different name. This name, jpeg_boolean, remains in effect through
6161 the rest of image.c.
6163 # if defined CYGWIN && defined HAVE_NTGUI
6164 # define boolean jpeg_boolean
6166 # include <jpeglib.h>
6167 # include <jerror.h>
6171 /* JPEG library details. */
6172 DEF_DLL_FN (void, jpeg_CreateDecompress
, (j_decompress_ptr
, int, size_t));
6173 DEF_DLL_FN (boolean
, jpeg_start_decompress
, (j_decompress_ptr
));
6174 DEF_DLL_FN (boolean
, jpeg_finish_decompress
, (j_decompress_ptr
));
6175 DEF_DLL_FN (void, jpeg_destroy_decompress
, (j_decompress_ptr
));
6176 DEF_DLL_FN (int, jpeg_read_header
, (j_decompress_ptr
, boolean
));
6177 DEF_DLL_FN (JDIMENSION
, jpeg_read_scanlines
,
6178 (j_decompress_ptr
, JSAMPARRAY
, JDIMENSION
));
6179 DEF_DLL_FN (struct jpeg_error_mgr
*, jpeg_std_error
,
6180 (struct jpeg_error_mgr
*));
6181 DEF_DLL_FN (boolean
, jpeg_resync_to_restart
, (j_decompress_ptr
, int));
6184 init_jpeg_functions (void)
6188 if (!(library
= w32_delayed_load (Qjpeg
)))
6191 LOAD_DLL_FN (library
, jpeg_finish_decompress
);
6192 LOAD_DLL_FN (library
, jpeg_read_scanlines
);
6193 LOAD_DLL_FN (library
, jpeg_start_decompress
);
6194 LOAD_DLL_FN (library
, jpeg_read_header
);
6195 LOAD_DLL_FN (library
, jpeg_CreateDecompress
);
6196 LOAD_DLL_FN (library
, jpeg_destroy_decompress
);
6197 LOAD_DLL_FN (library
, jpeg_std_error
);
6198 LOAD_DLL_FN (library
, jpeg_resync_to_restart
);
6202 # undef jpeg_CreateDecompress
6203 # undef jpeg_destroy_decompress
6204 # undef jpeg_finish_decompress
6205 # undef jpeg_read_header
6206 # undef jpeg_read_scanlines
6207 # undef jpeg_resync_to_restart
6208 # undef jpeg_start_decompress
6209 # undef jpeg_std_error
6211 # define jpeg_CreateDecompress fn_jpeg_CreateDecompress
6212 # define jpeg_destroy_decompress fn_jpeg_destroy_decompress
6213 # define jpeg_finish_decompress fn_jpeg_finish_decompress
6214 # define jpeg_read_header fn_jpeg_read_header
6215 # define jpeg_read_scanlines fn_jpeg_read_scanlines
6216 # define jpeg_resync_to_restart fn_jpeg_resync_to_restart
6217 # define jpeg_start_decompress fn_jpeg_start_decompress
6218 # define jpeg_std_error fn_jpeg_std_error
6220 /* Wrapper since we can't directly assign the function pointer
6221 to another function pointer that was declared more completely easily. */
6223 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo
, int desired
)
6225 return jpeg_resync_to_restart (cinfo
, desired
);
6227 # undef jpeg_resync_to_restart
6228 # define jpeg_resync_to_restart jpeg_resync_to_restart_wrapper
6230 # endif /* WINDOWSNT */
6232 struct my_jpeg_error_mgr
6234 struct jpeg_error_mgr pub
;
6235 sys_jmp_buf setjmp_buffer
;
6237 /* The remaining members are so that longjmp doesn't munge local
6239 struct jpeg_decompress_struct cinfo
;
6243 MY_JPEG_INVALID_IMAGE_SIZE
,
6244 MY_JPEG_CANNOT_CREATE_X
6249 static _Noreturn
void
6250 my_error_exit (j_common_ptr cinfo
)
6252 struct my_jpeg_error_mgr
*mgr
= (struct my_jpeg_error_mgr
*) cinfo
->err
;
6253 mgr
->failure_code
= MY_JPEG_ERROR_EXIT
;
6254 sys_longjmp (mgr
->setjmp_buffer
, 1);
6258 /* Init source method for JPEG data source manager. Called by
6259 jpeg_read_header() before any data is actually read. See
6260 libjpeg.doc from the JPEG lib distribution. */
6263 our_common_init_source (j_decompress_ptr cinfo
)
6268 /* Method to terminate data source. Called by
6269 jpeg_finish_decompress() after all data has been processed. */
6272 our_common_term_source (j_decompress_ptr cinfo
)
6277 /* Fill input buffer method for JPEG data source manager. Called
6278 whenever more data is needed. We read the whole image in one step,
6279 so this only adds a fake end of input marker at the end. */
6281 static JOCTET our_memory_buffer
[2];
6284 our_memory_fill_input_buffer (j_decompress_ptr cinfo
)
6286 /* Insert a fake EOI marker. */
6287 struct jpeg_source_mgr
*src
= cinfo
->src
;
6289 our_memory_buffer
[0] = (JOCTET
) 0xFF;
6290 our_memory_buffer
[1] = (JOCTET
) JPEG_EOI
;
6292 src
->next_input_byte
= our_memory_buffer
;
6293 src
->bytes_in_buffer
= 2;
6298 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6299 is the JPEG data source manager. */
6302 our_memory_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6304 struct jpeg_source_mgr
*src
= cinfo
->src
;
6308 if (num_bytes
> src
->bytes_in_buffer
)
6309 ERREXIT (cinfo
, JERR_INPUT_EOF
);
6311 src
->bytes_in_buffer
-= num_bytes
;
6312 src
->next_input_byte
+= num_bytes
;
6317 /* Set up the JPEG lib for reading an image from DATA which contains
6318 LEN bytes. CINFO is the decompression info structure created for
6319 reading the image. */
6322 jpeg_memory_src (j_decompress_ptr cinfo
, JOCTET
*data
, ptrdiff_t len
)
6324 struct jpeg_source_mgr
*src
= cinfo
->src
;
6328 /* First time for this JPEG object? */
6329 src
= cinfo
->mem
->alloc_small ((j_common_ptr
) cinfo
,
6330 JPOOL_PERMANENT
, sizeof *src
);
6332 src
->next_input_byte
= data
;
6335 src
->init_source
= our_common_init_source
;
6336 src
->fill_input_buffer
= our_memory_fill_input_buffer
;
6337 src
->skip_input_data
= our_memory_skip_input_data
;
6338 src
->resync_to_restart
= jpeg_resync_to_restart
; /* Use default method. */
6339 src
->term_source
= our_common_term_source
;
6340 src
->bytes_in_buffer
= len
;
6341 src
->next_input_byte
= data
;
6345 struct jpeg_stdio_mgr
6347 struct jpeg_source_mgr mgr
;
6354 /* Size of buffer to read JPEG from file.
6355 Not too big, as we want to use alloc_small. */
6356 #define JPEG_STDIO_BUFFER_SIZE 8192
6359 /* Fill input buffer method for JPEG data source manager. Called
6360 whenever more data is needed. The data is read from a FILE *. */
6363 our_stdio_fill_input_buffer (j_decompress_ptr cinfo
)
6365 struct jpeg_stdio_mgr
*src
;
6367 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6372 bytes
= fread (src
->buffer
, 1, JPEG_STDIO_BUFFER_SIZE
, src
->file
);
6374 src
->mgr
.bytes_in_buffer
= bytes
;
6377 WARNMS (cinfo
, JWRN_JPEG_EOF
);
6379 src
->buffer
[0] = (JOCTET
) 0xFF;
6380 src
->buffer
[1] = (JOCTET
) JPEG_EOI
;
6381 src
->mgr
.bytes_in_buffer
= 2;
6383 src
->mgr
.next_input_byte
= src
->buffer
;
6390 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6391 is the JPEG data source manager. */
6394 our_stdio_skip_input_data (j_decompress_ptr cinfo
, long int num_bytes
)
6396 struct jpeg_stdio_mgr
*src
;
6397 src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6399 while (num_bytes
> 0 && !src
->finished
)
6401 if (num_bytes
<= src
->mgr
.bytes_in_buffer
)
6403 src
->mgr
.bytes_in_buffer
-= num_bytes
;
6404 src
->mgr
.next_input_byte
+= num_bytes
;
6409 num_bytes
-= src
->mgr
.bytes_in_buffer
;
6410 src
->mgr
.bytes_in_buffer
= 0;
6411 src
->mgr
.next_input_byte
= NULL
;
6413 our_stdio_fill_input_buffer (cinfo
);
6419 /* Set up the JPEG lib for reading an image from a FILE *.
6420 CINFO is the decompression info structure created for
6421 reading the image. */
6424 jpeg_file_src (j_decompress_ptr cinfo
, FILE *fp
)
6426 struct jpeg_stdio_mgr
*src
= (struct jpeg_stdio_mgr
*) cinfo
->src
;
6430 /* First time for this JPEG object? */
6431 src
= cinfo
->mem
->alloc_small ((j_common_ptr
) cinfo
,
6432 JPOOL_PERMANENT
, sizeof *src
);
6433 cinfo
->src
= (struct jpeg_source_mgr
*) src
;
6434 src
->buffer
= cinfo
->mem
->alloc_small ((j_common_ptr
) cinfo
,
6436 JPEG_STDIO_BUFFER_SIZE
);
6441 src
->mgr
.init_source
= our_common_init_source
;
6442 src
->mgr
.fill_input_buffer
= our_stdio_fill_input_buffer
;
6443 src
->mgr
.skip_input_data
= our_stdio_skip_input_data
;
6444 src
->mgr
.resync_to_restart
= jpeg_resync_to_restart
; /* Use default. */
6445 src
->mgr
.term_source
= our_common_term_source
;
6446 src
->mgr
.bytes_in_buffer
= 0;
6447 src
->mgr
.next_input_byte
= NULL
;
6450 /* Load image IMG for use on frame F. Patterned after example.c
6451 from the JPEG lib. */
6454 jpeg_load_body (struct frame
*f
, struct image
*img
,
6455 struct my_jpeg_error_mgr
*mgr
)
6457 Lisp_Object file
, specified_file
;
6458 Lisp_Object specified_data
;
6459 /* The 'volatile' silences a bogus diagnostic; see GCC bug 54561. */
6460 FILE * IF_LINT (volatile) fp
= NULL
;
6462 int row_stride
, x
, y
;
6463 XImagePtr ximg
= NULL
;
6464 unsigned long *colors
;
6467 /* Open the JPEG file. */
6468 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6469 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6471 if (NILP (specified_data
))
6473 file
= x_find_image_file (specified_file
);
6474 if (!STRINGP (file
))
6476 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6480 fp
= emacs_fopen (SSDATA (file
), "rb");
6483 image_error ("Cannot open `%s'", file
, Qnil
);
6487 else if (!STRINGP (specified_data
))
6489 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6493 /* Customize libjpeg's error handling to call my_error_exit when an
6494 error is detected. This function will perform a longjmp. */
6495 mgr
->cinfo
.err
= jpeg_std_error (&mgr
->pub
);
6496 mgr
->pub
.error_exit
= my_error_exit
;
6497 if (sys_setjmp (mgr
->setjmp_buffer
))
6499 switch (mgr
->failure_code
)
6501 case MY_JPEG_ERROR_EXIT
:
6503 char buf
[JMSG_LENGTH_MAX
];
6504 mgr
->cinfo
.err
->format_message ((j_common_ptr
) &mgr
->cinfo
, buf
);
6505 image_error ("Error reading JPEG image `%s': %s", img
->spec
,
6506 build_string (buf
));
6510 case MY_JPEG_INVALID_IMAGE_SIZE
:
6511 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
6514 case MY_JPEG_CANNOT_CREATE_X
:
6518 /* Close the input file and destroy the JPEG object. */
6521 jpeg_destroy_decompress (&mgr
->cinfo
);
6523 /* If we already have an XImage, free that. */
6524 x_destroy_x_image (ximg
);
6526 /* Free pixmap and colors. */
6527 x_clear_image (f
, img
);
6531 /* Create the JPEG decompression object. Let it read from fp.
6532 Read the JPEG image header. */
6533 jpeg_CreateDecompress (&mgr
->cinfo
, JPEG_LIB_VERSION
, sizeof *&mgr
->cinfo
);
6535 if (NILP (specified_data
))
6536 jpeg_file_src (&mgr
->cinfo
, fp
);
6538 jpeg_memory_src (&mgr
->cinfo
, SDATA (specified_data
),
6539 SBYTES (specified_data
));
6541 jpeg_read_header (&mgr
->cinfo
, 1);
6543 /* Customize decompression so that color quantization will be used.
6544 Start decompression. */
6545 mgr
->cinfo
.quantize_colors
= 1;
6546 jpeg_start_decompress (&mgr
->cinfo
);
6547 width
= img
->width
= mgr
->cinfo
.output_width
;
6548 height
= img
->height
= mgr
->cinfo
.output_height
;
6550 if (!check_image_size (f
, width
, height
))
6552 mgr
->failure_code
= MY_JPEG_INVALID_IMAGE_SIZE
;
6553 sys_longjmp (mgr
->setjmp_buffer
, 1);
6556 /* Create X image and pixmap. */
6557 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0))
6559 mgr
->failure_code
= MY_JPEG_CANNOT_CREATE_X
;
6560 sys_longjmp (mgr
->setjmp_buffer
, 1);
6563 /* Allocate colors. When color quantization is used,
6564 mgr->cinfo.actual_number_of_colors has been set with the number of
6565 colors generated, and mgr->cinfo.colormap is a two-dimensional array
6566 of color indices in the range 0..mgr->cinfo.actual_number_of_colors.
6567 No more than 255 colors will be generated. */
6572 if (mgr
->cinfo
.out_color_components
> 2)
6573 ir
= 0, ig
= 1, ib
= 2;
6574 else if (mgr
->cinfo
.out_color_components
> 1)
6575 ir
= 0, ig
= 1, ib
= 0;
6577 ir
= 0, ig
= 0, ib
= 0;
6579 /* Use the color table mechanism because it handles colors that
6580 cannot be allocated nicely. Such colors will be replaced with
6581 a default color, and we don't have to care about which colors
6582 can be freed safely, and which can't. */
6583 init_color_table ();
6584 SAFE_NALLOCA (colors
, 1, mgr
->cinfo
.actual_number_of_colors
);
6586 for (i
= 0; i
< mgr
->cinfo
.actual_number_of_colors
; ++i
)
6588 /* Multiply RGB values with 255 because X expects RGB values
6589 in the range 0..0xffff. */
6590 int r
= mgr
->cinfo
.colormap
[ir
][i
] << 8;
6591 int g
= mgr
->cinfo
.colormap
[ig
][i
] << 8;
6592 int b
= mgr
->cinfo
.colormap
[ib
][i
] << 8;
6593 colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
6596 #ifdef COLOR_TABLE_SUPPORT
6597 /* Remember those colors actually allocated. */
6598 img
->colors
= colors_in_color_table (&img
->ncolors
);
6599 free_color_table ();
6600 #endif /* COLOR_TABLE_SUPPORT */
6604 row_stride
= width
* mgr
->cinfo
.output_components
;
6605 buffer
= mgr
->cinfo
.mem
->alloc_sarray ((j_common_ptr
) &mgr
->cinfo
,
6606 JPOOL_IMAGE
, row_stride
, 1);
6607 for (y
= 0; y
< height
; ++y
)
6609 jpeg_read_scanlines (&mgr
->cinfo
, buffer
, 1);
6610 for (x
= 0; x
< mgr
->cinfo
.output_width
; ++x
)
6611 XPutPixel (ximg
, x
, y
, colors
[buffer
[0][x
]]);
6615 jpeg_finish_decompress (&mgr
->cinfo
);
6616 jpeg_destroy_decompress (&mgr
->cinfo
);
6620 /* Maybe fill in the background field while we have ximg handy. */
6621 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
6622 /* Casting avoids a GCC warning. */
6623 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
6625 /* Put ximg into the image. */
6626 image_put_x_image (f
, img
, ximg
, 0);
6632 jpeg_load (struct frame
*f
, struct image
*img
)
6634 struct my_jpeg_error_mgr mgr
;
6635 return jpeg_load_body (f
, img
, &mgr
);
6638 #else /* HAVE_JPEG */
6642 jpeg_load (struct frame
*f
, struct image
*img
)
6644 return ns_load_image (f
, img
,
6645 image_spec_value (img
->spec
, QCfile
, NULL
),
6646 image_spec_value (img
->spec
, QCdata
, NULL
));
6648 #endif /* HAVE_NS */
6650 #endif /* !HAVE_JPEG */
6654 /***********************************************************************
6656 ***********************************************************************/
6658 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6660 static bool tiff_image_p (Lisp_Object object
);
6661 static bool tiff_load (struct frame
*f
, struct image
*img
);
6663 /* Indices of image specification fields in tiff_format, below. */
6665 enum tiff_keyword_index
6674 TIFF_HEURISTIC_MASK
,
6681 /* Vector of image_keyword structures describing the format
6682 of valid user-defined image specifications. */
6684 static const struct image_keyword tiff_format
[TIFF_LAST
] =
6686 {":type", IMAGE_SYMBOL_VALUE
, 1},
6687 {":data", IMAGE_STRING_VALUE
, 0},
6688 {":file", IMAGE_STRING_VALUE
, 0},
6689 {":ascent", IMAGE_ASCENT_VALUE
, 0},
6690 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
6691 {":relief", IMAGE_INTEGER_VALUE
, 0},
6692 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6693 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6694 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
6695 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
6696 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0}
6699 #if defined HAVE_NTGUI && defined WINDOWSNT
6700 static bool init_tiff_functions (void);
6702 #define init_tiff_functions NULL
6705 /* Structure describing the image type `tiff'. */
6707 static struct image_type tiff_type
=
6709 SYMBOL_INDEX (Qtiff
),
6713 init_tiff_functions
,
6717 /* Return true if OBJECT is a valid TIFF image specification. */
6720 tiff_image_p (Lisp_Object object
)
6722 struct image_keyword fmt
[TIFF_LAST
];
6723 memcpy (fmt
, tiff_format
, sizeof fmt
);
6725 if (!parse_image_spec (object
, fmt
, TIFF_LAST
, Qtiff
))
6728 /* Must specify either the :data or :file keyword. */
6729 return fmt
[TIFF_FILE
].count
+ fmt
[TIFF_DATA
].count
== 1;
6732 #endif /* HAVE_TIFF || HAVE_NS */
6736 # include <tiffio.h>
6740 /* TIFF library details. */
6741 DEF_DLL_FN (TIFFErrorHandler
, TIFFSetErrorHandler
, (TIFFErrorHandler
));
6742 DEF_DLL_FN (TIFFErrorHandler
, TIFFSetWarningHandler
, (TIFFErrorHandler
));
6743 DEF_DLL_FN (TIFF
*, TIFFOpen
, (const char *, const char *));
6744 DEF_DLL_FN (TIFF
*, TIFFClientOpen
,
6745 (const char *, const char *, thandle_t
, TIFFReadWriteProc
,
6746 TIFFReadWriteProc
, TIFFSeekProc
, TIFFCloseProc
, TIFFSizeProc
,
6747 TIFFMapFileProc
, TIFFUnmapFileProc
));
6748 DEF_DLL_FN (int, TIFFGetField
, (TIFF
*, ttag_t
, ...));
6749 DEF_DLL_FN (int, TIFFReadRGBAImage
, (TIFF
*, uint32
, uint32
, uint32
*, int));
6750 DEF_DLL_FN (void, TIFFClose
, (TIFF
*));
6751 DEF_DLL_FN (int, TIFFSetDirectory
, (TIFF
*, tdir_t
));
6754 init_tiff_functions (void)
6758 if (!(library
= w32_delayed_load (Qtiff
)))
6761 LOAD_DLL_FN (library
, TIFFSetErrorHandler
);
6762 LOAD_DLL_FN (library
, TIFFSetWarningHandler
);
6763 LOAD_DLL_FN (library
, TIFFOpen
);
6764 LOAD_DLL_FN (library
, TIFFClientOpen
);
6765 LOAD_DLL_FN (library
, TIFFGetField
);
6766 LOAD_DLL_FN (library
, TIFFReadRGBAImage
);
6767 LOAD_DLL_FN (library
, TIFFClose
);
6768 LOAD_DLL_FN (library
, TIFFSetDirectory
);
6772 # undef TIFFClientOpen
6774 # undef TIFFGetField
6776 # undef TIFFReadRGBAImage
6777 # undef TIFFSetDirectory
6778 # undef TIFFSetErrorHandler
6779 # undef TIFFSetWarningHandler
6781 # define TIFFClientOpen fn_TIFFClientOpen
6782 # define TIFFClose fn_TIFFClose
6783 # define TIFFGetField fn_TIFFGetField
6784 # define TIFFOpen fn_TIFFOpen
6785 # define TIFFReadRGBAImage fn_TIFFReadRGBAImage
6786 # define TIFFSetDirectory fn_TIFFSetDirectory
6787 # define TIFFSetErrorHandler fn_TIFFSetErrorHandler
6788 # define TIFFSetWarningHandler fn_TIFFSetWarningHandler
6790 # endif /* WINDOWSNT */
6793 /* Reading from a memory buffer for TIFF images Based on the PNG
6794 memory source, but we have to provide a lot of extra functions.
6797 We really only need to implement read and seek, but I am not
6798 convinced that the TIFF library is smart enough not to destroy
6799 itself if we only hand it the function pointers we need to
6804 unsigned char *bytes
;
6811 tiff_read_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6813 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6815 size
= min (size
, src
->len
- src
->index
);
6816 memcpy (buf
, src
->bytes
+ src
->index
, size
);
6822 tiff_write_from_memory (thandle_t data
, tdata_t buf
, tsize_t size
)
6828 tiff_seek_in_memory (thandle_t data
, toff_t off
, int whence
)
6830 tiff_memory_source
*src
= (tiff_memory_source
*) data
;
6835 case SEEK_SET
: /* Go from beginning of source. */
6839 case SEEK_END
: /* Go from end of source. */
6840 idx
= src
->len
+ off
;
6843 case SEEK_CUR
: /* Go from current position. */
6844 idx
= src
->index
+ off
;
6847 default: /* Invalid `whence'. */
6851 if (idx
> src
->len
|| idx
< 0)
6859 tiff_close_memory (thandle_t data
)
6866 tiff_mmap_memory (thandle_t data
, tdata_t
*pbase
, toff_t
*psize
)
6868 /* It is already _IN_ memory. */
6873 tiff_unmap_memory (thandle_t data
, tdata_t base
, toff_t size
)
6875 /* We don't need to do this. */
6879 tiff_size_of_memory (thandle_t data
)
6881 return ((tiff_memory_source
*) data
)->len
;
6884 /* GCC 3.x on x86 Windows targets has a bug that triggers an internal
6885 compiler error compiling tiff_handler, see Bugzilla bug #17406
6886 (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17406). Declaring
6887 this function as external works around that problem. */
6888 # if defined (__MINGW32__) && __GNUC__ == 3
6889 # define MINGW_STATIC
6891 # define MINGW_STATIC static
6895 tiff_handler (const char *, const char *, const char *, va_list)
6896 ATTRIBUTE_FORMAT_PRINTF (3, 0);
6898 tiff_handler (const char *log_format
, const char *title
,
6899 const char *format
, va_list ap
)
6901 /* doprnt is not suitable here, as TIFF handlers are called from
6902 libtiff and are passed arbitrary printf directives. Instead, use
6903 vsnprintf, taking care to be portable to nonstandard environments
6904 where vsnprintf returns -1 on buffer overflow. Since it's just a
6905 log entry, it's OK to truncate it. */
6907 int len
= vsnprintf (buf
, sizeof buf
, format
, ap
);
6908 add_to_log (log_format
, build_string (title
),
6909 make_string (buf
, max (0, min (len
, sizeof buf
- 1))));
6911 # undef MINGW_STATIC
6913 static void tiff_error_handler (const char *, const char *, va_list)
6914 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6916 tiff_error_handler (const char *title
, const char *format
, va_list ap
)
6918 tiff_handler ("TIFF error: %s %s", title
, format
, ap
);
6922 static void tiff_warning_handler (const char *, const char *, va_list)
6923 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6925 tiff_warning_handler (const char *title
, const char *format
, va_list ap
)
6927 tiff_handler ("TIFF warning: %s %s", title
, format
, ap
);
6931 /* Load TIFF image IMG for use on frame F. Value is true if
6935 tiff_load (struct frame
*f
, struct image
*img
)
6937 Lisp_Object file
, specified_file
;
6938 Lisp_Object specified_data
;
6940 int width
, height
, x
, y
, count
;
6944 tiff_memory_source memsrc
;
6947 specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
6948 specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
6950 TIFFSetErrorHandler ((TIFFErrorHandler
) tiff_error_handler
);
6951 TIFFSetWarningHandler ((TIFFErrorHandler
) tiff_warning_handler
);
6953 if (NILP (specified_data
))
6955 /* Read from a file */
6956 file
= x_find_image_file (specified_file
);
6957 if (!STRINGP (file
))
6959 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
6963 file
= ansi_encode_filename (file
);
6966 /* Try to open the image file. */
6967 tiff
= TIFFOpen (SSDATA (file
), "r");
6970 image_error ("Cannot open `%s'", file
, Qnil
);
6976 if (!STRINGP (specified_data
))
6978 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
6982 /* Memory source! */
6983 memsrc
.bytes
= SDATA (specified_data
);
6984 memsrc
.len
= SBYTES (specified_data
);
6987 tiff
= TIFFClientOpen ("memory_source", "r", (thandle_t
)&memsrc
,
6988 tiff_read_from_memory
,
6989 tiff_write_from_memory
,
6990 tiff_seek_in_memory
,
6992 tiff_size_of_memory
,
6998 image_error ("Cannot open memory source for `%s'", img
->spec
, Qnil
);
7003 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
7004 if (INTEGERP (image
))
7006 EMACS_INT ino
= XFASTINT (image
);
7007 if (! (TYPE_MINIMUM (tdir_t
) <= ino
&& ino
<= TYPE_MAXIMUM (tdir_t
)
7008 && TIFFSetDirectory (tiff
, ino
)))
7010 image_error ("Invalid image number `%s' in image `%s'",
7017 /* Get width and height of the image, and allocate a raster buffer
7018 of width x height 32-bit values. */
7019 TIFFGetField (tiff
, TIFFTAG_IMAGEWIDTH
, &width
);
7020 TIFFGetField (tiff
, TIFFTAG_IMAGELENGTH
, &height
);
7022 if (!check_image_size (f
, width
, height
))
7024 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7029 /* Create the X image and pixmap. */
7030 if (! (height
<= min (PTRDIFF_MAX
, SIZE_MAX
) / sizeof *buf
/ width
7031 && image_create_x_image_and_pixmap (f
, img
, width
, height
, 0,
7038 buf
= xmalloc (sizeof *buf
* width
* height
);
7040 rc
= TIFFReadRGBAImage (tiff
, width
, height
, buf
, 0);
7042 /* Count the number of images in the file. */
7043 for (count
= 1; TIFFSetDirectory (tiff
, count
); count
++)
7047 img
->lisp_data
= Fcons (Qcount
,
7048 Fcons (make_number (count
),
7054 image_error ("Error reading TIFF image `%s'", img
->spec
, Qnil
);
7059 /* Initialize the color table. */
7060 init_color_table ();
7062 /* Process the pixel raster. Origin is in the lower-left corner. */
7063 for (y
= 0; y
< height
; ++y
)
7065 uint32
*row
= buf
+ y
* width
;
7067 for (x
= 0; x
< width
; ++x
)
7069 uint32 abgr
= row
[x
];
7070 int r
= TIFFGetR (abgr
) << 8;
7071 int g
= TIFFGetG (abgr
) << 8;
7072 int b
= TIFFGetB (abgr
) << 8;
7073 XPutPixel (ximg
, x
, height
- 1 - y
, lookup_rgb_color (f
, r
, g
, b
));
7077 # ifdef COLOR_TABLE_SUPPORT
7078 /* Remember the colors allocated for the image. Free the color table. */
7079 img
->colors
= colors_in_color_table (&img
->ncolors
);
7080 free_color_table ();
7081 # endif /* COLOR_TABLE_SUPPORT */
7084 img
->height
= height
;
7086 /* Maybe fill in the background field while we have ximg handy. */
7087 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7088 /* Casting avoids a GCC warning on W32. */
7089 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7091 /* Put ximg into the image. */
7092 image_put_x_image (f
, img
, ximg
, 0);
7098 #elif defined HAVE_NS
7101 tiff_load (struct frame
*f
, struct image
*img
)
7103 return ns_load_image (f
, img
,
7104 image_spec_value (img
->spec
, QCfile
, NULL
),
7105 image_spec_value (img
->spec
, QCdata
, NULL
));
7112 /***********************************************************************
7114 ***********************************************************************/
7116 #if defined (HAVE_GIF) || defined (HAVE_NS)
7118 static bool gif_image_p (Lisp_Object object
);
7119 static bool gif_load (struct frame
*f
, struct image
*img
);
7120 static void gif_clear_image (struct frame
*f
, struct image
*img
);
7122 /* Indices of image specification fields in gif_format, below. */
7124 enum gif_keyword_index
7140 /* Vector of image_keyword structures describing the format
7141 of valid user-defined image specifications. */
7143 static const struct image_keyword gif_format
[GIF_LAST
] =
7145 {":type", IMAGE_SYMBOL_VALUE
, 1},
7146 {":data", IMAGE_STRING_VALUE
, 0},
7147 {":file", IMAGE_STRING_VALUE
, 0},
7148 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7149 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
7150 {":relief", IMAGE_INTEGER_VALUE
, 0},
7151 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7152 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7153 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7154 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE
, 0},
7155 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
7158 #if defined HAVE_NTGUI && defined WINDOWSNT
7159 static bool init_gif_functions (void);
7161 #define init_gif_functions NULL
7164 /* Structure describing the image type `gif'. */
7166 static struct image_type gif_type
=
7168 SYMBOL_INDEX (Qgif
),
7176 /* Free X resources of GIF image IMG which is used on frame F. */
7179 gif_clear_image (struct frame
*f
, struct image
*img
)
7181 img
->lisp_data
= Qnil
;
7182 x_clear_image (f
, img
);
7185 /* Return true if OBJECT is a valid GIF image specification. */
7188 gif_image_p (Lisp_Object object
)
7190 struct image_keyword fmt
[GIF_LAST
];
7191 memcpy (fmt
, gif_format
, sizeof fmt
);
7193 if (!parse_image_spec (object
, fmt
, GIF_LAST
, Qgif
))
7196 /* Must specify either the :data or :file keyword. */
7197 return fmt
[GIF_FILE
].count
+ fmt
[GIF_DATA
].count
== 1;
7200 #endif /* HAVE_GIF */
7206 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7207 Undefine before redefining to avoid a preprocessor warning. */
7211 /* avoid conflict with QuickdrawText.h */
7212 # define DrawText gif_DrawText
7213 # include <gif_lib.h>
7216 /* Giflib before 5.0 didn't define these macros (used only if HAVE_NTGUI). */
7217 # ifndef GIFLIB_MINOR
7218 # define GIFLIB_MINOR 0
7220 # ifndef GIFLIB_RELEASE
7221 # define GIFLIB_RELEASE 0
7224 # else /* HAVE_NTGUI */
7226 # include <gif_lib.h>
7228 # endif /* HAVE_NTGUI */
7230 /* Giflib before 5.0 didn't define these macros. */
7231 # ifndef GIFLIB_MAJOR
7232 # define GIFLIB_MAJOR 4
7237 /* GIF library details. */
7238 # if GIFLIB_MAJOR + (GIFLIB_MINOR >= 1) > 5
7239 DEF_DLL_FN (int, DGifCloseFile
, (GifFileType
*, int *));
7241 DEF_DLL_FN (int, DGifCloseFile
, (GifFileType
*));
7243 DEF_DLL_FN (int, DGifSlurp
, (GifFileType
*));
7244 # if GIFLIB_MAJOR < 5
7245 DEF_DLL_FN (GifFileType
*, DGifOpen
, (void *, InputFunc
));
7246 DEF_DLL_FN (GifFileType
*, DGifOpenFileName
, (const char *));
7248 DEF_DLL_FN (GifFileType
*, DGifOpen
, (void *, InputFunc
, int *));
7249 DEF_DLL_FN (GifFileType
*, DGifOpenFileName
, (const char *, int *));
7250 DEF_DLL_FN (char *, GifErrorString
, (int));
7254 init_gif_functions (void)
7258 if (!(library
= w32_delayed_load (Qgif
)))
7261 LOAD_DLL_FN (library
, DGifCloseFile
);
7262 LOAD_DLL_FN (library
, DGifSlurp
);
7263 LOAD_DLL_FN (library
, DGifOpen
);
7264 LOAD_DLL_FN (library
, DGifOpenFileName
);
7265 # if GIFLIB_MAJOR >= 5
7266 LOAD_DLL_FN (library
, GifErrorString
);
7271 # undef DGifCloseFile
7273 # undef DGifOpenFileName
7275 # undef GifErrorString
7277 # define DGifCloseFile fn_DGifCloseFile
7278 # define DGifOpen fn_DGifOpen
7279 # define DGifOpenFileName fn_DGifOpenFileName
7280 # define DGifSlurp fn_DGifSlurp
7281 # define GifErrorString fn_GifErrorString
7283 # endif /* WINDOWSNT */
7285 /* Reading a GIF image from memory
7286 Based on the PNG memory stuff to a certain extent. */
7290 unsigned char *bytes
;
7296 /* Make the current memory source available to gif_read_from_memory.
7297 It's done this way because not all versions of libungif support
7298 a UserData field in the GifFileType structure. */
7299 static gif_memory_source
*current_gif_memory_src
;
7302 gif_read_from_memory (GifFileType
*file
, GifByteType
*buf
, int len
)
7304 gif_memory_source
*src
= current_gif_memory_src
;
7306 if (len
> src
->len
- src
->index
)
7309 memcpy (buf
, src
->bytes
+ src
->index
, len
);
7315 gif_close (GifFileType
*gif
, int *err
)
7319 #if GIFLIB_MAJOR + (GIFLIB_MINOR >= 1) > 5
7320 retval
= DGifCloseFile (gif
, err
);
7322 retval
= DGifCloseFile (gif
);
7323 #if GIFLIB_MAJOR >= 5
7331 /* Load GIF image IMG for use on frame F. Value is true if
7334 static const int interlace_start
[] = {0, 4, 2, 1};
7335 static const int interlace_increment
[] = {8, 8, 4, 2};
7337 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7340 gif_load (struct frame
*f
, struct image
*img
)
7343 int rc
, width
, height
, x
, y
, i
, j
;
7345 ColorMapObject
*gif_color_map
;
7346 unsigned long pixel_colors
[256];
7348 gif_memory_source memsrc
;
7349 Lisp_Object specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
7350 Lisp_Object specified_file
= image_spec_value (img
->spec
, QCfile
, NULL
);
7351 Lisp_Object specified_data
= image_spec_value (img
->spec
, QCdata
, NULL
);
7352 unsigned long bgcolor
= 0;
7356 if (NILP (specified_data
))
7358 file
= x_find_image_file (specified_file
);
7359 if (!STRINGP (file
))
7361 image_error ("Cannot find image file `%s'", specified_file
, Qnil
);
7365 file
= ansi_encode_filename (file
);
7368 /* Open the GIF file. */
7369 #if GIFLIB_MAJOR < 5
7370 gif
= DGifOpenFileName (SSDATA (file
));
7373 image_error ("Cannot open `%s'", file
, Qnil
);
7377 gif
= DGifOpenFileName (SSDATA (file
), &gif_err
);
7380 image_error ("Cannot open `%s': %s",
7381 file
, build_string (GifErrorString (gif_err
)));
7388 if (!STRINGP (specified_data
))
7390 image_error ("Invalid image data `%s'", specified_data
, Qnil
);
7394 /* Read from memory! */
7395 current_gif_memory_src
= &memsrc
;
7396 memsrc
.bytes
= SDATA (specified_data
);
7397 memsrc
.len
= SBYTES (specified_data
);
7400 #if GIFLIB_MAJOR < 5
7401 gif
= DGifOpen (&memsrc
, gif_read_from_memory
);
7404 image_error ("Cannot open memory source `%s'", img
->spec
, Qnil
);
7408 gif
= DGifOpen (&memsrc
, gif_read_from_memory
, &gif_err
);
7411 image_error ("Cannot open memory source `%s': %s",
7412 img
->spec
, build_string (GifErrorString (gif_err
)));
7418 /* Before reading entire contents, check the declared image size. */
7419 if (!check_image_size (f
, gif
->SWidth
, gif
->SHeight
))
7421 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7422 gif_close (gif
, NULL
);
7426 /* Read entire contents. */
7427 rc
= DGifSlurp (gif
);
7428 if (rc
== GIF_ERROR
|| gif
->ImageCount
<= 0)
7430 image_error ("Error reading `%s'", img
->spec
, Qnil
);
7431 gif_close (gif
, NULL
);
7435 /* Which sub-image are we to display? */
7437 Lisp_Object image_number
= image_spec_value (img
->spec
, QCindex
, NULL
);
7438 idx
= INTEGERP (image_number
) ? XFASTINT (image_number
) : 0;
7439 if (idx
< 0 || idx
>= gif
->ImageCount
)
7441 image_error ("Invalid image number `%s' in image `%s'",
7442 image_number
, img
->spec
);
7443 gif_close (gif
, NULL
);
7448 width
= img
->width
= gif
->SWidth
;
7449 height
= img
->height
= gif
->SHeight
;
7451 img
->corners
[TOP_CORNER
] = gif
->SavedImages
[0].ImageDesc
.Top
;
7452 img
->corners
[LEFT_CORNER
] = gif
->SavedImages
[0].ImageDesc
.Left
;
7453 img
->corners
[BOT_CORNER
]
7454 = img
->corners
[TOP_CORNER
] + gif
->SavedImages
[0].ImageDesc
.Height
;
7455 img
->corners
[RIGHT_CORNER
]
7456 = img
->corners
[LEFT_CORNER
] + gif
->SavedImages
[0].ImageDesc
.Width
;
7458 if (!check_image_size (f
, width
, height
))
7460 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
7461 gif_close (gif
, NULL
);
7465 /* Check that the selected subimages fit. It's not clear whether
7466 the GIF spec requires this, but Emacs can crash if they don't fit. */
7467 for (j
= 0; j
<= idx
; ++j
)
7469 struct SavedImage
*subimage
= gif
->SavedImages
+ j
;
7470 int subimg_width
= subimage
->ImageDesc
.Width
;
7471 int subimg_height
= subimage
->ImageDesc
.Height
;
7472 int subimg_top
= subimage
->ImageDesc
.Top
;
7473 int subimg_left
= subimage
->ImageDesc
.Left
;
7474 if (! (subimg_width
>= 0 && subimg_height
>= 0
7475 && 0 <= subimg_top
&& subimg_top
<= height
- subimg_height
7476 && 0 <= subimg_left
&& subimg_left
<= width
- subimg_width
))
7478 image_error ("Subimage does not fit in image", Qnil
, Qnil
);
7479 gif_close (gif
, NULL
);
7484 /* Create the X image and pixmap. */
7485 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0))
7487 gif_close (gif
, NULL
);
7491 /* Clear the part of the screen image not covered by the image.
7492 Full animated GIF support requires more here (see the gif89 spec,
7493 disposal methods). Let's simply assume that the part not covered
7494 by a sub-image is in the frame's background color. */
7495 for (y
= 0; y
< img
->corners
[TOP_CORNER
]; ++y
)
7496 for (x
= 0; x
< width
; ++x
)
7497 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7499 for (y
= img
->corners
[BOT_CORNER
]; y
< height
; ++y
)
7500 for (x
= 0; x
< width
; ++x
)
7501 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7503 for (y
= img
->corners
[TOP_CORNER
]; y
< img
->corners
[BOT_CORNER
]; ++y
)
7505 for (x
= 0; x
< img
->corners
[LEFT_CORNER
]; ++x
)
7506 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7507 for (x
= img
->corners
[RIGHT_CORNER
]; x
< width
; ++x
)
7508 XPutPixel (ximg
, x
, y
, FRAME_BACKGROUND_PIXEL (f
));
7511 /* Read the GIF image into the X image. */
7513 /* FIXME: With the current implementation, loading an animated gif
7514 is quadratic in the number of animation frames, since each frame
7515 is a separate struct image. We must provide a way for a single
7516 gif_load call to construct and save all animation frames. */
7518 init_color_table ();
7519 if (STRINGP (specified_bg
))
7520 bgcolor
= x_alloc_image_color (f
, img
, specified_bg
,
7521 FRAME_BACKGROUND_PIXEL (f
));
7522 for (j
= 0; j
<= idx
; ++j
)
7524 /* We use a local variable `raster' here because RasterBits is a
7525 char *, which invites problems with bytes >= 0x80. */
7526 struct SavedImage
*subimage
= gif
->SavedImages
+ j
;
7527 unsigned char *raster
= (unsigned char *) subimage
->RasterBits
;
7528 int transparency_color_index
= -1;
7530 int subimg_width
= subimage
->ImageDesc
.Width
;
7531 int subimg_height
= subimage
->ImageDesc
.Height
;
7532 int subimg_top
= subimage
->ImageDesc
.Top
;
7533 int subimg_left
= subimage
->ImageDesc
.Left
;
7535 /* Find the Graphic Control Extension block for this sub-image.
7536 Extract the disposal method and transparency color. */
7537 for (i
= 0; i
< subimage
->ExtensionBlockCount
; i
++)
7539 ExtensionBlock
*extblock
= subimage
->ExtensionBlocks
+ i
;
7541 if ((extblock
->Function
== GIF_LOCAL_DESCRIPTOR_EXTENSION
)
7542 && extblock
->ByteCount
== 4
7543 && extblock
->Bytes
[0] & 1)
7545 /* From gif89a spec: 1 = "keep in place", 2 = "restore
7546 to background". Treat any other value like 2. */
7547 disposal
= (extblock
->Bytes
[0] >> 2) & 7;
7548 transparency_color_index
= (unsigned char) extblock
->Bytes
[3];
7553 /* We can't "keep in place" the first subimage. */
7557 /* For disposal == 0, the spec says "No disposal specified. The
7558 decoder is not required to take any action." In practice, it
7559 seems we need to treat this like "keep in place", see e.g.
7560 http://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */
7564 /* Allocate subimage colors. */
7565 memset (pixel_colors
, 0, sizeof pixel_colors
);
7566 gif_color_map
= subimage
->ImageDesc
.ColorMap
;
7568 gif_color_map
= gif
->SColorMap
;
7571 for (i
= 0; i
< gif_color_map
->ColorCount
; ++i
)
7573 if (transparency_color_index
== i
)
7574 pixel_colors
[i
] = STRINGP (specified_bg
)
7575 ? bgcolor
: FRAME_BACKGROUND_PIXEL (f
);
7578 int r
= gif_color_map
->Colors
[i
].Red
<< 8;
7579 int g
= gif_color_map
->Colors
[i
].Green
<< 8;
7580 int b
= gif_color_map
->Colors
[i
].Blue
<< 8;
7581 pixel_colors
[i
] = lookup_rgb_color (f
, r
, g
, b
);
7585 /* Apply the pixel values. */
7586 if (GIFLIB_MAJOR
< 5 && gif
->SavedImages
[j
].ImageDesc
.Interlace
)
7590 for (y
= 0, row
= interlace_start
[0], pass
= 0;
7592 y
++, row
+= interlace_increment
[pass
])
7594 while (subimg_height
<= row
)
7595 row
= interlace_start
[++pass
];
7597 for (x
= 0; x
< subimg_width
; x
++)
7599 int c
= raster
[y
* subimg_width
+ x
];
7600 if (transparency_color_index
!= c
|| disposal
!= 1)
7601 XPutPixel (ximg
, x
+ subimg_left
, row
+ subimg_top
,
7608 for (y
= 0; y
< subimg_height
; ++y
)
7609 for (x
= 0; x
< subimg_width
; ++x
)
7611 int c
= raster
[y
* subimg_width
+ x
];
7612 if (transparency_color_index
!= c
|| disposal
!= 1)
7613 XPutPixel (ximg
, x
+ subimg_left
, y
+ subimg_top
,
7619 #ifdef COLOR_TABLE_SUPPORT
7620 img
->colors
= colors_in_color_table (&img
->ncolors
);
7621 free_color_table ();
7622 #endif /* COLOR_TABLE_SUPPORT */
7624 /* Save GIF image extension data for `image-metadata'.
7625 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7626 img
->lisp_data
= Qnil
;
7627 if (gif
->SavedImages
[idx
].ExtensionBlockCount
> 0)
7630 ExtensionBlock
*ext
= gif
->SavedImages
[idx
].ExtensionBlocks
;
7631 for (i
= 0; i
< gif
->SavedImages
[idx
].ExtensionBlockCount
; i
++, ext
++)
7632 /* Append (... FUNCTION "BYTES") */
7635 = Fcons (make_number (ext
->Function
),
7636 Fcons (make_unibyte_string (ext
->Bytes
, ext
->ByteCount
),
7638 if (ext
->Function
== GIF_LOCAL_DESCRIPTOR_EXTENSION
7639 && ext
->ByteCount
== 4)
7641 delay
= ext
->Bytes
[2] << CHAR_BIT
;
7642 delay
|= ext
->Bytes
[1];
7645 img
->lisp_data
= list2 (Qextension_data
, img
->lisp_data
);
7649 Fcons (make_float (delay
/ 100.0),
7653 if (gif
->ImageCount
> 1)
7654 img
->lisp_data
= Fcons (Qcount
,
7655 Fcons (make_number (gif
->ImageCount
),
7658 if (gif_close (gif
, &gif_err
) == GIF_ERROR
)
7660 #if 5 <= GIFLIB_MAJOR
7661 char *error_text
= GifErrorString (gif_err
);
7664 image_error ("Error closing `%s': %s",
7665 img
->spec
, build_string (error_text
));
7667 image_error ("Error closing `%s'", img
->spec
, Qnil
);
7671 /* Maybe fill in the background field while we have ximg handy. */
7672 if (NILP (image_spec_value (img
->spec
, QCbackground
, NULL
)))
7673 /* Casting avoids a GCC warning. */
7674 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
7676 /* Put ximg into the image. */
7677 image_put_x_image (f
, img
, ximg
, 0);
7682 #else /* !HAVE_GIF */
7686 gif_load (struct frame
*f
, struct image
*img
)
7688 return ns_load_image (f
, img
,
7689 image_spec_value (img
->spec
, QCfile
, NULL
),
7690 image_spec_value (img
->spec
, QCdata
, NULL
));
7692 #endif /* HAVE_NS */
7694 #endif /* HAVE_GIF */
7697 #ifdef HAVE_IMAGEMAGICK
7699 /***********************************************************************
7701 ***********************************************************************/
7703 /* Scale an image size by returning SIZE / DIVISOR * MULTIPLIER,
7704 safely rounded and clipped to int range. */
7707 scale_image_size (int size
, size_t divisor
, size_t multiplier
)
7712 double scaled
= s
* multiplier
/ divisor
+ 0.5;
7713 if (scaled
< INT_MAX
)
7719 /* Compute the desired size of an image with native size WIDTH x HEIGHT.
7720 Use SPEC to deduce the size. Store the desired size into
7721 *D_WIDTH x *D_HEIGHT. Store -1 x -1 if the native size is OK. */
7723 compute_image_size (size_t width
, size_t height
,
7725 int *d_width
, int *d_height
)
7728 int desired_width
, desired_height
;
7730 /* If width and/or height is set in the display spec assume we want
7731 to scale to those values. If either h or w is unspecified, the
7732 unspecified should be calculated from the specified to preserve
7734 value
= image_spec_value (spec
, QCwidth
, NULL
);
7735 desired_width
= NATNUMP (value
) ? min (XFASTINT (value
), INT_MAX
) : -1;
7736 value
= image_spec_value (spec
, QCheight
, NULL
);
7737 desired_height
= NATNUMP (value
) ? min (XFASTINT (value
), INT_MAX
) : -1;
7739 if (desired_width
== -1)
7741 value
= image_spec_value (spec
, QCmax_width
, NULL
);
7742 if (NATNUMP (value
))
7744 int max_width
= min (XFASTINT (value
), INT_MAX
);
7745 if (max_width
< width
)
7747 /* The image is wider than :max-width. */
7748 desired_width
= max_width
;
7749 if (desired_height
== -1)
7751 desired_height
= scale_image_size (desired_width
,
7753 value
= image_spec_value (spec
, QCmax_height
, NULL
);
7754 if (NATNUMP (value
))
7756 int max_height
= min (XFASTINT (value
), INT_MAX
);
7757 if (max_height
< desired_height
)
7759 desired_height
= max_height
;
7760 desired_width
= scale_image_size (desired_height
,
7769 if (desired_height
== -1)
7771 value
= image_spec_value (spec
, QCmax_height
, NULL
);
7772 if (NATNUMP (value
))
7774 int max_height
= min (XFASTINT (value
), INT_MAX
);
7775 if (max_height
< height
)
7776 desired_height
= max_height
;
7780 if (desired_width
!= -1 && desired_height
== -1)
7781 /* w known, calculate h. */
7782 desired_height
= scale_image_size (desired_width
, width
, height
);
7784 if (desired_width
== -1 && desired_height
!= -1)
7785 /* h known, calculate w. */
7786 desired_width
= scale_image_size (desired_height
, height
, width
);
7788 *d_width
= desired_width
;
7789 *d_height
= desired_height
;
7792 static bool imagemagick_image_p (Lisp_Object
);
7793 static bool imagemagick_load (struct frame
*, struct image
*);
7794 static void imagemagick_clear_image (struct frame
*, struct image
*);
7796 /* Indices of image specification fields in imagemagick_format. */
7798 enum imagemagick_keyword_index
7806 IMAGEMAGICK_ALGORITHM
,
7807 IMAGEMAGICK_HEURISTIC_MASK
,
7809 IMAGEMAGICK_BACKGROUND
,
7812 IMAGEMAGICK_MAX_HEIGHT
,
7813 IMAGEMAGICK_MAX_WIDTH
,
7815 IMAGEMAGICK_ROTATION
,
7820 /* Vector of image_keyword structures describing the format
7821 of valid user-defined image specifications. */
7823 static struct image_keyword imagemagick_format
[IMAGEMAGICK_LAST
] =
7825 {":type", IMAGE_SYMBOL_VALUE
, 1},
7826 {":data", IMAGE_STRING_VALUE
, 0},
7827 {":file", IMAGE_STRING_VALUE
, 0},
7828 {":ascent", IMAGE_ASCENT_VALUE
, 0},
7829 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
7830 {":relief", IMAGE_INTEGER_VALUE
, 0},
7831 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7832 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7833 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
7834 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0},
7835 {":height", IMAGE_INTEGER_VALUE
, 0},
7836 {":width", IMAGE_INTEGER_VALUE
, 0},
7837 {":max-height", IMAGE_INTEGER_VALUE
, 0},
7838 {":max-width", IMAGE_INTEGER_VALUE
, 0},
7839 {":format", IMAGE_SYMBOL_VALUE
, 0},
7840 {":rotation", IMAGE_NUMBER_VALUE
, 0},
7841 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE
, 0}
7844 #if defined HAVE_NTGUI && defined WINDOWSNT
7845 static bool init_imagemagick_functions (void);
7847 #define init_imagemagick_functions NULL
7850 /* Structure describing the image type for any image handled via
7853 static struct image_type imagemagick_type
=
7855 SYMBOL_INDEX (Qimagemagick
),
7856 imagemagick_image_p
,
7858 imagemagick_clear_image
,
7859 init_imagemagick_functions
,
7863 /* Free X resources of imagemagick image IMG which is used on frame F. */
7866 imagemagick_clear_image (struct frame
*f
,
7869 x_clear_image (f
, img
);
7872 /* Return true if OBJECT is a valid IMAGEMAGICK image specification. Do
7873 this by calling parse_image_spec and supplying the keywords that
7874 identify the IMAGEMAGICK format. */
7877 imagemagick_image_p (Lisp_Object object
)
7879 struct image_keyword fmt
[IMAGEMAGICK_LAST
];
7880 memcpy (fmt
, imagemagick_format
, sizeof fmt
);
7882 if (!parse_image_spec (object
, fmt
, IMAGEMAGICK_LAST
, Qimagemagick
))
7885 /* Must specify either the :data or :file keyword. */
7886 return fmt
[IMAGEMAGICK_FILE
].count
+ fmt
[IMAGEMAGICK_DATA
].count
== 1;
7889 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7890 Therefore rename the function so it doesn't collide with ImageMagick. */
7891 #define DrawRectangle DrawRectangleGif
7892 #include <wand/MagickWand.h>
7894 /* ImageMagick 6.5.3 through 6.6.5 hid PixelGetMagickColor for some reason.
7895 Emacs seems to work fine with the hidden version, so unhide it. */
7896 #include <magick/version.h>
7897 #if 0x653 <= MagickLibVersion && MagickLibVersion <= 0x665
7898 extern WandExport
void PixelGetMagickColor (const PixelWand
*,
7899 MagickPixelPacket
*);
7902 /* Log ImageMagick error message.
7903 Useful when a ImageMagick function returns the status `MagickFalse'. */
7906 imagemagick_error (MagickWand
*wand
)
7909 ExceptionType severity
;
7911 description
= MagickGetException (wand
, &severity
);
7912 image_error ("ImageMagick error: %s",
7913 build_string (description
),
7915 MagickRelinquishMemory (description
);
7918 /* Possibly give ImageMagick some extra help to determine the image
7919 type by supplying a "dummy" filename based on the Content-Type. */
7922 imagemagick_filename_hint (Lisp_Object spec
, char hint_buffer
[MaxTextExtent
])
7924 Lisp_Object symbol
= intern ("image-format-suffixes");
7925 Lisp_Object val
= find_symbol_value (symbol
);
7931 format
= image_spec_value (spec
, intern (":format"), NULL
);
7932 val
= Fcar_safe (Fcdr_safe (Fassq (format
, val
)));
7933 if (! STRINGP (val
))
7936 /* It's OK to truncate the hint if it has MaxTextExtent or more bytes,
7937 as ImageMagick would ignore the extra bytes anyway. */
7938 snprintf (hint_buffer
, MaxTextExtent
, "/tmp/foo.%s", SSDATA (val
));
7942 /* Animated images (e.g., GIF89a) are composed from one "master image"
7943 (which is the first one, and then there's a number of images that
7944 follow. If following images have non-transparent colors, these are
7945 composed "on top" of the master image. So, in general, one has to
7946 compute ann the preceding images to be able to display a particular
7949 Computing all the preceding images is too slow, so we maintain a
7950 cache of previously computed images. We have to maintain a cache
7951 separate from the image cache, because the images may be scaled
7954 struct animation_cache
7958 struct timespec update_time
;
7959 struct animation_cache
*next
;
7960 char signature
[FLEXIBLE_ARRAY_MEMBER
];
7963 static struct animation_cache
*animation_cache
= NULL
;
7965 static struct animation_cache
*
7966 imagemagick_create_cache (char *signature
)
7968 struct animation_cache
*cache
7969 = xmalloc (offsetof (struct animation_cache
, signature
)
7970 + strlen (signature
) + 1);
7974 strcpy (cache
->signature
, signature
);
7978 /* Discard cached images that haven't been used for a minute. */
7980 imagemagick_prune_animation_cache (void)
7982 struct animation_cache
**pcache
= &animation_cache
;
7983 struct timespec old
= timespec_sub (current_timespec (),
7984 make_timespec (60, 0));
7988 struct animation_cache
*cache
= *pcache
;
7989 if (timespec_cmp (old
, cache
->update_time
) <= 0)
7990 pcache
= &cache
->next
;
7994 DestroyMagickWand (cache
->wand
);
7995 *pcache
= cache
->next
;
8001 static struct animation_cache
*
8002 imagemagick_get_animation_cache (MagickWand
*wand
)
8004 char *signature
= MagickGetImageSignature (wand
);
8005 struct animation_cache
*cache
;
8006 struct animation_cache
**pcache
= &animation_cache
;
8008 imagemagick_prune_animation_cache ();
8015 *pcache
= cache
= imagemagick_create_cache (signature
);
8018 if (strcmp (signature
, cache
->signature
) == 0)
8020 pcache
= &cache
->next
;
8023 DestroyString (signature
);
8024 cache
->update_time
= current_timespec ();
8029 imagemagick_compute_animated_image (MagickWand
*super_wand
, int ino
)
8032 MagickWand
*composite_wand
;
8033 size_t dest_width
, dest_height
;
8034 struct animation_cache
*cache
= imagemagick_get_animation_cache (super_wand
);
8036 MagickSetIteratorIndex (super_wand
, 0);
8038 if (ino
== 0 || cache
->wand
== NULL
|| cache
->index
> ino
)
8040 composite_wand
= MagickGetImage (super_wand
);
8042 DestroyMagickWand (cache
->wand
);
8045 composite_wand
= cache
->wand
;
8047 dest_height
= MagickGetImageHeight (composite_wand
);
8049 for (i
= max (1, cache
->index
+ 1); i
<= ino
; i
++)
8051 MagickWand
*sub_wand
;
8052 PixelIterator
*source_iterator
, *dest_iterator
;
8053 PixelWand
**source
, **dest
;
8054 size_t source_width
, source_height
;
8055 ssize_t source_left
, source_top
;
8056 MagickPixelPacket pixel
;
8057 DisposeType dispose
;
8058 ptrdiff_t lines
= 0;
8060 MagickSetIteratorIndex (super_wand
, i
);
8061 sub_wand
= MagickGetImage (super_wand
);
8063 MagickGetImagePage (sub_wand
, &source_width
, &source_height
,
8064 &source_left
, &source_top
);
8066 /* This flag says how to handle transparent pixels. */
8067 dispose
= MagickGetImageDispose (sub_wand
);
8069 source_iterator
= NewPixelIterator (sub_wand
);
8070 if (! source_iterator
)
8072 DestroyMagickWand (composite_wand
);
8073 DestroyMagickWand (sub_wand
);
8075 image_error ("Imagemagick pixel iterator creation failed",
8080 dest_iterator
= NewPixelIterator (composite_wand
);
8081 if (! dest_iterator
)
8083 DestroyMagickWand (composite_wand
);
8084 DestroyMagickWand (sub_wand
);
8085 DestroyPixelIterator (source_iterator
);
8087 image_error ("Imagemagick pixel iterator creation failed",
8092 /* The sub-image may not start at origin, so move the destination
8093 iterator to where the sub-image should start. */
8096 PixelSetIteratorRow (dest_iterator
, source_top
);
8100 while ((source
= PixelGetNextIteratorRow (source_iterator
, &source_width
))
8105 /* Sanity check. This shouldn't happen, but apparently
8106 does in some pictures. */
8107 if (++lines
>= dest_height
)
8110 dest
= PixelGetNextIteratorRow (dest_iterator
, &dest_width
);
8111 for (x
= 0; x
< source_width
; x
++)
8113 /* Sanity check. This shouldn't happen, but apparently
8114 also does in some pictures. */
8115 if (x
+ source_left
>= dest_width
)
8117 /* Normally we only copy over non-transparent pixels,
8118 but if the disposal method is "Background", then we
8119 copy over all pixels. */
8120 if (dispose
== BackgroundDispose
|| PixelGetAlpha (source
[x
]))
8122 PixelGetMagickColor (source
[x
], &pixel
);
8123 PixelSetMagickColor (dest
[x
+ source_left
], &pixel
);
8126 PixelSyncIterator (dest_iterator
);
8129 DestroyPixelIterator (source_iterator
);
8130 DestroyPixelIterator (dest_iterator
);
8131 DestroyMagickWand (sub_wand
);
8134 /* Cache a copy for the next iteration. The current wand will be
8135 destroyed by the caller. */
8136 cache
->wand
= CloneMagickWand (composite_wand
);
8139 return composite_wand
;
8143 /* Helper function for imagemagick_load, which does the actual loading
8144 given contents and size, apart from frame and image structures,
8145 passed from imagemagick_load. Uses librimagemagick to do most of
8146 the image processing.
8148 F is a pointer to the Emacs frame; IMG to the image structure to
8149 prepare; CONTENTS is the string containing the IMAGEMAGICK data to
8150 be parsed; SIZE is the number of bytes of data; and FILENAME is
8151 either the file name or the image data.
8153 Return true if successful. */
8156 imagemagick_load_image (struct frame
*f
, struct image
*img
,
8157 unsigned char *contents
, unsigned int size
,
8161 size_t image_width
, image_height
;
8162 MagickBooleanType status
;
8165 MagickWand
*image_wand
;
8166 PixelIterator
*iterator
;
8167 PixelWand
**pixels
, *bg_wand
= NULL
;
8168 MagickPixelPacket pixel
;
8173 int desired_width
, desired_height
;
8176 char hint_buffer
[MaxTextExtent
];
8177 char *filename_hint
= NULL
;
8179 /* Handle image index for image types who can contain more than one image.
8180 Interface :index is same as for GIF. First we "ping" the image to see how
8181 many sub-images it contains. Pinging is faster than loading the image to
8182 find out things about it. */
8184 /* Initialize the imagemagick environment. */
8185 MagickWandGenesis ();
8186 image
= image_spec_value (img
->spec
, QCindex
, NULL
);
8187 ino
= INTEGERP (image
) ? XFASTINT (image
) : 0;
8188 image_wand
= NewMagickWand ();
8191 status
= MagickReadImage (image_wand
, filename
);
8194 filename_hint
= imagemagick_filename_hint (img
->spec
, hint_buffer
);
8195 MagickSetFilename (image_wand
, filename_hint
);
8196 status
= MagickReadImageBlob (image_wand
, contents
, size
);
8199 if (status
== MagickFalse
)
8201 imagemagick_error (image_wand
);
8202 DestroyMagickWand (image_wand
);
8206 if (ino
< 0 || ino
>= MagickGetNumberImages (image_wand
))
8208 image_error ("Invalid image number `%s' in image `%s'",
8210 DestroyMagickWand (image_wand
);
8214 if (MagickGetImageDelay (image_wand
) > 0)
8217 Fcons (make_float (MagickGetImageDelay (image_wand
) / 100.0),
8220 if (MagickGetNumberImages (image_wand
) > 1)
8223 Fcons (make_number (MagickGetNumberImages (image_wand
)),
8226 /* If we have an animated image, get the new wand based on the
8228 if (MagickGetNumberImages (image_wand
) > 1)
8230 MagickWand
*super_wand
= image_wand
;
8231 image_wand
= imagemagick_compute_animated_image (super_wand
, ino
);
8233 image_wand
= super_wand
;
8235 DestroyMagickWand (super_wand
);
8238 /* Retrieve the frame's background color, for use later. */
8241 Lisp_Object specified_bg
;
8243 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
8244 if (!STRINGP (specified_bg
)
8245 || !x_defined_color (f
, SSDATA (specified_bg
), &bgcolor
, 0))
8246 x_query_frame_background_color (f
, &bgcolor
);
8248 bg_wand
= NewPixelWand ();
8249 PixelSetRed (bg_wand
, (double) bgcolor
.red
/ 65535);
8250 PixelSetGreen (bg_wand
, (double) bgcolor
.green
/ 65535);
8251 PixelSetBlue (bg_wand
, (double) bgcolor
.blue
/ 65535);
8254 compute_image_size (MagickGetImageWidth (image_wand
),
8255 MagickGetImageHeight (image_wand
),
8256 img
->spec
, &desired_width
, &desired_height
);
8258 if (desired_width
!= -1 && desired_height
!= -1)
8260 status
= MagickScaleImage (image_wand
, desired_width
, desired_height
);
8261 if (status
== MagickFalse
)
8263 image_error ("Imagemagick scale failed", Qnil
, Qnil
);
8264 imagemagick_error (image_wand
);
8265 goto imagemagick_error
;
8269 /* crop behaves similar to image slicing in Emacs but is more memory
8271 crop
= image_spec_value (img
->spec
, QCcrop
, NULL
);
8273 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop
)))
8275 /* After some testing, it seems MagickCropImage is the fastest crop
8276 function in ImageMagick. This crop function seems to do less copying
8277 than the alternatives, but it still reads the entire image into memory
8278 before cropping, which is apparently difficult to avoid when using
8280 size_t crop_width
= XINT (XCAR (crop
));
8282 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop
)))
8284 size_t crop_height
= XINT (XCAR (crop
));
8286 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (ssize_t
, XCAR (crop
)))
8288 ssize_t crop_x
= XINT (XCAR (crop
));
8290 if (CONSP (crop
) && TYPE_RANGED_INTEGERP (ssize_t
, XCAR (crop
)))
8292 ssize_t crop_y
= XINT (XCAR (crop
));
8293 MagickCropImage (image_wand
, crop_width
, crop_height
,
8300 /* Furthermore :rotation. we need background color and angle for
8303 TODO background handling for rotation specified_bg =
8304 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
8306 value
= image_spec_value (img
->spec
, QCrotation
, NULL
);
8309 rotation
= extract_float (value
);
8310 status
= MagickRotateImage (image_wand
, bg_wand
, rotation
);
8311 if (status
== MagickFalse
)
8313 image_error ("Imagemagick image rotate failed", Qnil
, Qnil
);
8314 imagemagick_error (image_wand
);
8315 goto imagemagick_error
;
8319 /* Set the canvas background color to the frame or specified
8320 background, and flatten the image. Note: as of ImageMagick
8321 6.6.0, SVG image transparency is not handled properly
8322 (e.g. etc/images/splash.svg shows a white background always). */
8324 MagickWand
*new_wand
;
8325 MagickSetImageBackgroundColor (image_wand
, bg_wand
);
8326 #ifdef HAVE_MAGICKMERGEIMAGELAYERS
8327 new_wand
= MagickMergeImageLayers (image_wand
, MergeLayer
);
8329 new_wand
= MagickFlattenImages (image_wand
);
8331 DestroyMagickWand (image_wand
);
8332 image_wand
= new_wand
;
8335 /* Finally we are done manipulating the image. Figure out the
8336 resulting width/height and transfer ownership to Emacs. */
8337 image_height
= MagickGetImageHeight (image_wand
);
8338 image_width
= MagickGetImageWidth (image_wand
);
8340 if (! (image_width
<= INT_MAX
&& image_height
<= INT_MAX
8341 && check_image_size (f
, image_width
, image_height
)))
8343 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8344 goto imagemagick_error
;
8347 width
= image_width
;
8348 height
= image_height
;
8350 /* We can now get a valid pixel buffer from the imagemagick file, if all
8353 init_color_table ();
8355 #if defined (HAVE_MAGICKEXPORTIMAGEPIXELS) && ! defined (HAVE_NS)
8356 if (imagemagick_render_type
!= 0)
8358 /* Magicexportimage is normally faster than pixelpushing. This
8359 method is also well tested. Some aspects of this method are
8360 ad-hoc and needs to be more researched. */
8361 int imagedepth
= 24; /*MagickGetImageDepth(image_wand);*/
8362 const char *exportdepth
= imagedepth
<= 8 ? "I" : "BGRP"; /*"RGBP";*/
8363 /* Try to create a x pixmap to hold the imagemagick pixmap. */
8364 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, imagedepth
,
8367 #ifdef COLOR_TABLE_SUPPORT
8368 free_color_table ();
8370 image_error ("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
8371 goto imagemagick_error
;
8374 /* Oddly, the below code doesn't seem to work:*/
8375 /* switch(ximg->bitmap_unit){ */
8377 /* pixelwidth=CharPixel; */
8380 /* pixelwidth=ShortPixel; */
8383 /* pixelwidth=LongPixel; */
8387 Here im just guessing the format of the bitmap.
8388 happens to work fine for:
8391 seems about 3 times as fast as pixel pushing(not carefully measured)
8393 pixelwidth
= CharPixel
; /*??? TODO figure out*/
8394 MagickExportImagePixels (image_wand
, 0, 0, width
, height
,
8395 exportdepth
, pixelwidth
, ximg
->data
);
8398 #endif /* HAVE_MAGICKEXPORTIMAGEPIXELS */
8400 size_t image_height
;
8401 MagickRealType color_scale
= 65535.0 / QuantumRange
;
8403 /* Try to create a x pixmap to hold the imagemagick pixmap. */
8404 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0,
8407 #ifdef COLOR_TABLE_SUPPORT
8408 free_color_table ();
8410 image_error ("Imagemagick X bitmap allocation failure", Qnil
, Qnil
);
8411 goto imagemagick_error
;
8414 /* Copy imagemagick image to x with primitive yet robust pixel
8415 pusher loop. This has been tested a lot with many different
8418 /* Copy pixels from the imagemagick image structure to the x image map. */
8419 iterator
= NewPixelIterator (image_wand
);
8422 #ifdef COLOR_TABLE_SUPPORT
8423 free_color_table ();
8425 x_destroy_x_image (ximg
);
8426 image_error ("Imagemagick pixel iterator creation failed",
8428 goto imagemagick_error
;
8431 image_height
= MagickGetImageHeight (image_wand
);
8432 for (y
= 0; y
< image_height
; y
++)
8435 pixels
= PixelGetNextIteratorRow (iterator
, &row_width
);
8438 int xlim
= min (row_width
, width
);
8439 for (x
= 0; x
< xlim
; x
++)
8441 PixelGetMagickColor (pixels
[x
], &pixel
);
8442 XPutPixel (ximg
, x
, y
,
8443 lookup_rgb_color (f
,
8444 color_scale
* pixel
.red
,
8445 color_scale
* pixel
.green
,
8446 color_scale
* pixel
.blue
));
8449 DestroyPixelIterator (iterator
);
8452 #ifdef COLOR_TABLE_SUPPORT
8453 /* Remember colors allocated for this image. */
8454 img
->colors
= colors_in_color_table (&img
->ncolors
);
8455 free_color_table ();
8456 #endif /* COLOR_TABLE_SUPPORT */
8459 img
->height
= height
;
8461 /* Put ximg into the image. */
8462 image_put_x_image (f
, img
, ximg
, 0);
8464 /* Final cleanup. image_wand should be the only resource left. */
8465 DestroyMagickWand (image_wand
);
8466 if (bg_wand
) DestroyPixelWand (bg_wand
);
8468 /* `MagickWandTerminus' terminates the imagemagick environment. */
8469 MagickWandTerminus ();
8474 DestroyMagickWand (image_wand
);
8475 if (bg_wand
) DestroyPixelWand (bg_wand
);
8477 MagickWandTerminus ();
8478 /* TODO more cleanup. */
8479 image_error ("Error parsing IMAGEMAGICK image `%s'", img
->spec
, Qnil
);
8484 /* Load IMAGEMAGICK image IMG for use on frame F. Value is true if
8485 successful. this function will go into the imagemagick_type structure, and
8486 the prototype thus needs to be compatible with that structure. */
8489 imagemagick_load (struct frame
*f
, struct image
*img
)
8492 Lisp_Object file_name
;
8494 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8495 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
8496 if (STRINGP (file_name
))
8500 file
= x_find_image_file (file_name
);
8501 if (!STRINGP (file
))
8503 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
8507 file
= ansi_encode_filename (file
);
8509 success_p
= imagemagick_load_image (f
, img
, 0, 0, SSDATA (file
));
8511 /* Else its not a file, its a lisp object. Load the image from a
8512 lisp object rather than a file. */
8517 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8518 if (!STRINGP (data
))
8520 image_error ("Invalid image data `%s'", data
, Qnil
);
8523 success_p
= imagemagick_load_image (f
, img
, SDATA (data
),
8524 SBYTES (data
), NULL
);
8530 DEFUN ("imagemagick-types", Fimagemagick_types
, Simagemagick_types
, 0, 0, 0,
8531 doc
: /* Return a list of image types supported by ImageMagick.
8532 Each entry in this list is a symbol named after an ImageMagick format
8533 tag. See the ImageMagick manual for a list of ImageMagick formats and
8534 their descriptions (http://www.imagemagick.org/script/formats.php).
8535 You can also try the shell command: `identify -list format'.
8537 Note that ImageMagick recognizes many file-types that Emacs does not
8538 recognize as images, such as C. See `imagemagick-types-enable'
8539 and `imagemagick-types-inhibit'. */)
8542 Lisp_Object typelist
= Qnil
;
8548 GetExceptionInfo(&ex
);
8549 imtypes
= GetMagickList ("*", &numf
, &ex
);
8550 DestroyExceptionInfo(&ex
);
8552 for (i
= 0; i
< numf
; i
++)
8554 Lisp_Object imagemagicktype
= intern (imtypes
[i
]);
8555 typelist
= Fcons (imagemagicktype
, typelist
);
8556 imtypes
[i
] = MagickRelinquishMemory (imtypes
[i
]);
8559 MagickRelinquishMemory (imtypes
);
8560 return Fnreverse (typelist
);
8563 #endif /* defined (HAVE_IMAGEMAGICK) */
8567 /***********************************************************************
8569 ***********************************************************************/
8573 /* Function prototypes. */
8575 static bool svg_image_p (Lisp_Object object
);
8576 static bool svg_load (struct frame
*f
, struct image
*img
);
8578 static bool svg_load_image (struct frame
*, struct image
*,
8579 unsigned char *, ptrdiff_t, char *);
8581 /* Indices of image specification fields in svg_format, below. */
8583 enum svg_keyword_index
8598 /* Vector of image_keyword structures describing the format
8599 of valid user-defined image specifications. */
8601 static const struct image_keyword svg_format
[SVG_LAST
] =
8603 {":type", IMAGE_SYMBOL_VALUE
, 1},
8604 {":data", IMAGE_STRING_VALUE
, 0},
8605 {":file", IMAGE_STRING_VALUE
, 0},
8606 {":ascent", IMAGE_ASCENT_VALUE
, 0},
8607 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
8608 {":relief", IMAGE_INTEGER_VALUE
, 0},
8609 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8610 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8611 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
8612 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
8615 # if defined HAVE_NTGUI && defined WINDOWSNT
8616 static bool init_svg_functions (void);
8618 #define init_svg_functions NULL
8621 /* Structure describing the image type `svg'. Its the same type of
8622 structure defined for all image formats, handled by emacs image
8623 functions. See struct image_type in dispextern.h. */
8625 static struct image_type svg_type
=
8627 SYMBOL_INDEX (Qsvg
),
8636 /* Return true if OBJECT is a valid SVG image specification. Do
8637 this by calling parse_image_spec and supplying the keywords that
8638 identify the SVG format. */
8641 svg_image_p (Lisp_Object object
)
8643 struct image_keyword fmt
[SVG_LAST
];
8644 memcpy (fmt
, svg_format
, sizeof fmt
);
8646 if (!parse_image_spec (object
, fmt
, SVG_LAST
, Qsvg
))
8649 /* Must specify either the :data or :file keyword. */
8650 return fmt
[SVG_FILE
].count
+ fmt
[SVG_DATA
].count
== 1;
8653 # include <librsvg/rsvg.h>
8657 /* SVG library functions. */
8658 DEF_DLL_FN (RsvgHandle
*, rsvg_handle_new
, (void));
8659 DEF_DLL_FN (void, rsvg_handle_get_dimensions
,
8660 (RsvgHandle
*, RsvgDimensionData
*));
8661 DEF_DLL_FN (gboolean
, rsvg_handle_write
,
8662 (RsvgHandle
*, const guchar
*, gsize
, GError
**));
8663 DEF_DLL_FN (gboolean
, rsvg_handle_close
, (RsvgHandle
*, GError
**));
8664 DEF_DLL_FN (GdkPixbuf
*, rsvg_handle_get_pixbuf
, (RsvgHandle
*));
8665 DEF_DLL_FN (void, rsvg_handle_set_base_uri
, (RsvgHandle
*, const char *));
8667 DEF_DLL_FN (int, gdk_pixbuf_get_width
, (const GdkPixbuf
*));
8668 DEF_DLL_FN (int, gdk_pixbuf_get_height
, (const GdkPixbuf
*));
8669 DEF_DLL_FN (guchar
*, gdk_pixbuf_get_pixels
, (const GdkPixbuf
*));
8670 DEF_DLL_FN (int, gdk_pixbuf_get_rowstride
, (const GdkPixbuf
*));
8671 DEF_DLL_FN (GdkColorspace
, gdk_pixbuf_get_colorspace
, (const GdkPixbuf
*));
8672 DEF_DLL_FN (int, gdk_pixbuf_get_n_channels
, (const GdkPixbuf
*));
8673 DEF_DLL_FN (gboolean
, gdk_pixbuf_get_has_alpha
, (const GdkPixbuf
*));
8674 DEF_DLL_FN (int, gdk_pixbuf_get_bits_per_sample
, (const GdkPixbuf
*));
8676 # if ! GLIB_CHECK_VERSION (2, 36, 0)
8677 DEF_DLL_FN (void, g_type_init
, (void));
8679 DEF_DLL_FN (void, g_object_unref
, (gpointer
));
8680 DEF_DLL_FN (void, g_error_free
, (GError
*));
8683 init_svg_functions (void)
8685 HMODULE library
, gdklib
= NULL
, glib
= NULL
, gobject
= NULL
;
8687 if (!(glib
= w32_delayed_load (Qglib
))
8688 || !(gobject
= w32_delayed_load (Qgobject
))
8689 || !(gdklib
= w32_delayed_load (Qgdk_pixbuf
))
8690 || !(library
= w32_delayed_load (Qsvg
)))
8692 if (gdklib
) FreeLibrary (gdklib
);
8693 if (gobject
) FreeLibrary (gobject
);
8694 if (glib
) FreeLibrary (glib
);
8698 LOAD_DLL_FN (library
, rsvg_handle_new
);
8699 LOAD_DLL_FN (library
, rsvg_handle_get_dimensions
);
8700 LOAD_DLL_FN (library
, rsvg_handle_write
);
8701 LOAD_DLL_FN (library
, rsvg_handle_close
);
8702 LOAD_DLL_FN (library
, rsvg_handle_get_pixbuf
);
8703 LOAD_DLL_FN (library
, rsvg_handle_set_base_uri
);
8705 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_width
);
8706 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_height
);
8707 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_pixels
);
8708 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_rowstride
);
8709 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_colorspace
);
8710 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_n_channels
);
8711 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_has_alpha
);
8712 LOAD_DLL_FN (gdklib
, gdk_pixbuf_get_bits_per_sample
);
8714 # if ! GLIB_CHECK_VERSION (2, 36, 0)
8715 LOAD_DLL_FN (gobject
, g_type_init
);
8717 LOAD_DLL_FN (gobject
, g_object_unref
);
8718 LOAD_DLL_FN (glib
, g_error_free
);
8723 /* The following aliases for library functions allow dynamic loading
8724 to be used on some platforms. */
8726 # undef gdk_pixbuf_get_bits_per_sample
8727 # undef gdk_pixbuf_get_colorspace
8728 # undef gdk_pixbuf_get_has_alpha
8729 # undef gdk_pixbuf_get_height
8730 # undef gdk_pixbuf_get_n_channels
8731 # undef gdk_pixbuf_get_pixels
8732 # undef gdk_pixbuf_get_rowstride
8733 # undef gdk_pixbuf_get_width
8734 # undef g_error_free
8735 # undef g_object_unref
8737 # undef rsvg_handle_close
8738 # undef rsvg_handle_get_dimensions
8739 # undef rsvg_handle_get_pixbuf
8740 # undef rsvg_handle_new
8741 # undef rsvg_handle_set_base_uri
8742 # undef rsvg_handle_write
8744 # define gdk_pixbuf_get_bits_per_sample fn_gdk_pixbuf_get_bits_per_sample
8745 # define gdk_pixbuf_get_colorspace fn_gdk_pixbuf_get_colorspace
8746 # define gdk_pixbuf_get_has_alpha fn_gdk_pixbuf_get_has_alpha
8747 # define gdk_pixbuf_get_height fn_gdk_pixbuf_get_height
8748 # define gdk_pixbuf_get_n_channels fn_gdk_pixbuf_get_n_channels
8749 # define gdk_pixbuf_get_pixels fn_gdk_pixbuf_get_pixels
8750 # define gdk_pixbuf_get_rowstride fn_gdk_pixbuf_get_rowstride
8751 # define gdk_pixbuf_get_width fn_gdk_pixbuf_get_width
8752 # define g_error_free fn_g_error_free
8753 # define g_object_unref fn_g_object_unref
8754 # define g_type_init fn_g_type_init
8755 # define rsvg_handle_close fn_rsvg_handle_close
8756 # define rsvg_handle_get_dimensions fn_rsvg_handle_get_dimensions
8757 # define rsvg_handle_get_pixbuf fn_rsvg_handle_get_pixbuf
8758 # define rsvg_handle_new fn_rsvg_handle_new
8759 # define rsvg_handle_set_base_uri fn_rsvg_handle_set_base_uri
8760 # define rsvg_handle_write fn_rsvg_handle_write
8762 # endif /* !WINDOWSNT */
8764 /* Load SVG image IMG for use on frame F. Value is true if
8768 svg_load (struct frame
*f
, struct image
*img
)
8771 Lisp_Object file_name
;
8773 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8774 file_name
= image_spec_value (img
->spec
, QCfile
, NULL
);
8775 if (STRINGP (file_name
))
8778 unsigned char *contents
;
8781 file
= x_find_image_file (file_name
);
8782 if (!STRINGP (file
))
8784 image_error ("Cannot find image file `%s'", file_name
, Qnil
);
8788 /* Read the entire file into memory. */
8789 contents
= slurp_file (SSDATA (file
), &size
);
8790 if (contents
== NULL
)
8792 image_error ("Error loading SVG image `%s'", img
->spec
, Qnil
);
8795 /* If the file was slurped into memory properly, parse it. */
8796 success_p
= svg_load_image (f
, img
, contents
, size
, SSDATA (file
));
8799 /* Else its not a file, its a lisp object. Load the image from a
8800 lisp object rather than a file. */
8803 Lisp_Object data
, original_filename
;
8805 data
= image_spec_value (img
->spec
, QCdata
, NULL
);
8806 if (!STRINGP (data
))
8808 image_error ("Invalid image data `%s'", data
, Qnil
);
8811 original_filename
= BVAR (current_buffer
, filename
);
8812 success_p
= svg_load_image (f
, img
, SDATA (data
), SBYTES (data
),
8813 (NILP (original_filename
) ? NULL
8814 : SSDATA (original_filename
)));
8820 /* svg_load_image is a helper function for svg_load, which does the
8821 actual loading given contents and size, apart from frame and image
8822 structures, passed from svg_load.
8824 Uses librsvg to do most of the image processing.
8826 Returns true when successful. */
8828 svg_load_image (struct frame
*f
, /* Pointer to emacs frame structure. */
8829 struct image
*img
, /* Pointer to emacs image structure. */
8830 unsigned char *contents
, /* String containing the SVG XML data to be parsed. */
8831 ptrdiff_t size
, /* Size of data in bytes. */
8832 char *filename
) /* Name of SVG file being loaded. */
8834 RsvgHandle
*rsvg_handle
;
8835 RsvgDimensionData dimension_data
;
8840 const guint8
*pixels
;
8843 Lisp_Object specified_bg
;
8848 #if ! GLIB_CHECK_VERSION (2, 36, 0)
8849 /* g_type_init is a glib function that must be called prior to
8850 using gnome type library functions (obsolete since 2.36.0). */
8854 /* Make a handle to a new rsvg object. */
8855 rsvg_handle
= rsvg_handle_new ();
8857 /* Set base_uri for properly handling referenced images (via 'href').
8858 See rsvg bug 596114 - "image refs are relative to curdir, not .svg file"
8859 (https://bugzilla.gnome.org/show_bug.cgi?id=596114). */
8861 rsvg_handle_set_base_uri(rsvg_handle
, filename
);
8863 /* Parse the contents argument and fill in the rsvg_handle. */
8864 rsvg_handle_write (rsvg_handle
, contents
, size
, &err
);
8865 if (err
) goto rsvg_error
;
8867 /* The parsing is complete, rsvg_handle is ready to used, close it
8868 for further writes. */
8869 rsvg_handle_close (rsvg_handle
, &err
);
8870 if (err
) goto rsvg_error
;
8872 rsvg_handle_get_dimensions (rsvg_handle
, &dimension_data
);
8873 if (! check_image_size (f
, dimension_data
.width
, dimension_data
.height
))
8875 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
8879 /* We can now get a valid pixel buffer from the svg file, if all
8881 pixbuf
= rsvg_handle_get_pixbuf (rsvg_handle
);
8882 if (!pixbuf
) goto rsvg_error
;
8883 g_object_unref (rsvg_handle
);
8885 /* Extract some meta data from the svg handle. */
8886 width
= gdk_pixbuf_get_width (pixbuf
);
8887 height
= gdk_pixbuf_get_height (pixbuf
);
8888 pixels
= gdk_pixbuf_get_pixels (pixbuf
);
8889 rowstride
= gdk_pixbuf_get_rowstride (pixbuf
);
8891 /* Validate the svg meta data. */
8892 eassert (gdk_pixbuf_get_colorspace (pixbuf
) == GDK_COLORSPACE_RGB
);
8893 eassert (gdk_pixbuf_get_n_channels (pixbuf
) == 4);
8894 eassert (gdk_pixbuf_get_has_alpha (pixbuf
));
8895 eassert (gdk_pixbuf_get_bits_per_sample (pixbuf
) == 8);
8897 /* Try to create a x pixmap to hold the svg pixmap. */
8898 if (!image_create_x_image_and_pixmap (f
, img
, width
, height
, 0, &ximg
, 0))
8900 g_object_unref (pixbuf
);
8904 init_color_table ();
8906 /* Handle alpha channel by combining the image with a background
8908 specified_bg
= image_spec_value (img
->spec
, QCbackground
, NULL
);
8909 if (!STRINGP (specified_bg
)
8910 || !x_defined_color (f
, SSDATA (specified_bg
), &background
, 0))
8911 x_query_frame_background_color (f
, &background
);
8913 /* SVG pixmaps specify transparency in the last byte, so right
8914 shift 8 bits to get rid of it, since emacs doesn't support
8916 background
.red
>>= 8;
8917 background
.green
>>= 8;
8918 background
.blue
>>= 8;
8920 /* This loop handles opacity values, since Emacs assumes
8921 non-transparent images. Each pixel must be "flattened" by
8922 calculating the resulting color, given the transparency of the
8923 pixel, and the image background color. */
8924 for (y
= 0; y
< height
; ++y
)
8926 for (x
= 0; x
< width
; ++x
)
8936 opacity
= *pixels
++;
8938 red
= ((red
* opacity
)
8939 + (background
.red
* ((1 << 8) - opacity
)));
8940 green
= ((green
* opacity
)
8941 + (background
.green
* ((1 << 8) - opacity
)));
8942 blue
= ((blue
* opacity
)
8943 + (background
.blue
* ((1 << 8) - opacity
)));
8945 XPutPixel (ximg
, x
, y
, lookup_rgb_color (f
, red
, green
, blue
));
8948 pixels
+= rowstride
- 4 * width
;
8951 #ifdef COLOR_TABLE_SUPPORT
8952 /* Remember colors allocated for this image. */
8953 img
->colors
= colors_in_color_table (&img
->ncolors
);
8954 free_color_table ();
8955 #endif /* COLOR_TABLE_SUPPORT */
8957 g_object_unref (pixbuf
);
8960 img
->height
= height
;
8962 /* Maybe fill in the background field while we have ximg handy.
8963 Casting avoids a GCC warning. */
8964 IMAGE_BACKGROUND (img
, f
, (XImagePtr_or_DC
)ximg
);
8966 /* Put ximg into the image. */
8967 image_put_x_image (f
, img
, ximg
, 0);
8972 g_object_unref (rsvg_handle
);
8973 /* FIXME: Use error->message so the user knows what is the actual
8974 problem with the image. */
8975 image_error ("Error parsing SVG image `%s'", img
->spec
, Qnil
);
8980 #endif /* defined (HAVE_RSVG) */
8985 /***********************************************************************
8987 ***********************************************************************/
8989 #ifdef HAVE_X_WINDOWS
8990 #define HAVE_GHOSTSCRIPT 1
8991 #endif /* HAVE_X_WINDOWS */
8993 #ifdef HAVE_GHOSTSCRIPT
8995 static bool gs_image_p (Lisp_Object object
);
8996 static bool gs_load (struct frame
*f
, struct image
*img
);
8997 static void gs_clear_image (struct frame
*f
, struct image
*img
);
8999 /* Indices of image specification fields in gs_format, below. */
9001 enum gs_keyword_index
9019 /* Vector of image_keyword structures describing the format
9020 of valid user-defined image specifications. */
9022 static const struct image_keyword gs_format
[GS_LAST
] =
9024 {":type", IMAGE_SYMBOL_VALUE
, 1},
9025 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
9026 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE
, 1},
9027 {":file", IMAGE_STRING_VALUE
, 1},
9028 {":loader", IMAGE_FUNCTION_VALUE
, 0},
9029 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE
, 1},
9030 {":ascent", IMAGE_ASCENT_VALUE
, 0},
9031 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR
, 0},
9032 {":relief", IMAGE_INTEGER_VALUE
, 0},
9033 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9034 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9035 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE
, 0},
9036 {":background", IMAGE_STRING_OR_NIL_VALUE
, 0}
9039 /* Structure describing the image type `ghostscript'. */
9041 static struct image_type gs_type
=
9043 SYMBOL_INDEX (Qpostscript
),
9052 /* Free X resources of Ghostscript image IMG which is used on frame F. */
9055 gs_clear_image (struct frame
*f
, struct image
*img
)
9057 x_clear_image (f
, img
);
9061 /* Return true if OBJECT is a valid Ghostscript image
9065 gs_image_p (Lisp_Object object
)
9067 struct image_keyword fmt
[GS_LAST
];
9071 memcpy (fmt
, gs_format
, sizeof fmt
);
9073 if (!parse_image_spec (object
, fmt
, GS_LAST
, Qpostscript
))
9076 /* Bounding box must be a list or vector containing 4 integers. */
9077 tem
= fmt
[GS_BOUNDING_BOX
].value
;
9080 for (i
= 0; i
< 4; ++i
, tem
= XCDR (tem
))
9081 if (!CONSP (tem
) || !INTEGERP (XCAR (tem
)))
9086 else if (VECTORP (tem
))
9088 if (ASIZE (tem
) != 4)
9090 for (i
= 0; i
< 4; ++i
)
9091 if (!INTEGERP (AREF (tem
, i
)))
9101 /* Load Ghostscript image IMG for use on frame F. Value is true
9105 gs_load (struct frame
*f
, struct image
*img
)
9107 uprintmax_t printnum1
, printnum2
;
9108 char buffer
[sizeof " " + INT_STRLEN_BOUND (printmax_t
)];
9109 Lisp_Object window_and_pixmap_id
= Qnil
, loader
, pt_height
, pt_width
;
9111 double in_width
, in_height
;
9112 Lisp_Object pixel_colors
= Qnil
;
9114 /* Compute pixel size of pixmap needed from the given size in the
9115 image specification. Sizes in the specification are in pt. 1 pt
9116 = 1/72 in, xdpi and ydpi are stored in the frame's X display
9118 pt_width
= image_spec_value (img
->spec
, QCpt_width
, NULL
);
9119 in_width
= INTEGERP (pt_width
) ? XFASTINT (pt_width
) / 72.0 : 0;
9120 in_width
*= FRAME_RES_X (f
);
9121 pt_height
= image_spec_value (img
->spec
, QCpt_height
, NULL
);
9122 in_height
= INTEGERP (pt_height
) ? XFASTINT (pt_height
) / 72.0 : 0;
9123 in_height
*= FRAME_RES_Y (f
);
9125 if (! (in_width
<= INT_MAX
&& in_height
<= INT_MAX
9126 && check_image_size (f
, in_width
, in_height
)))
9128 image_error ("Invalid image size (see `max-image-size')", Qnil
, Qnil
);
9131 img
->width
= in_width
;
9132 img
->height
= in_height
;
9134 /* Create the pixmap. */
9135 eassert (img
->pixmap
== NO_PIXMAP
);
9137 if (x_check_image_size (0, img
->width
, img
->height
))
9139 /* Only W32 version did BLOCK_INPUT here. ++kfs */
9141 img
->pixmap
= XCreatePixmap (FRAME_X_DISPLAY (f
), FRAME_X_WINDOW (f
),
9142 img
->width
, img
->height
,
9143 DefaultDepthOfScreen (FRAME_X_SCREEN (f
)));
9149 image_error ("Unable to create pixmap for `%s'", img
->spec
, Qnil
);
9153 /* Call the loader to fill the pixmap. It returns a process object
9154 if successful. We do not record_unwind_protect here because
9155 other places in redisplay like calling window scroll functions
9156 don't either. Let the Lisp loader use `unwind-protect' instead. */
9157 printnum1
= FRAME_X_WINDOW (f
);
9158 printnum2
= img
->pixmap
;
9159 window_and_pixmap_id
9160 = make_formatted_string (buffer
, "%"pMu
" %"pMu
, printnum1
, printnum2
);
9162 printnum1
= FRAME_FOREGROUND_PIXEL (f
);
9163 printnum2
= FRAME_BACKGROUND_PIXEL (f
);
9165 = make_formatted_string (buffer
, "%"pMu
" %"pMu
, printnum1
, printnum2
);
9167 XSETFRAME (frame
, f
);
9168 loader
= image_spec_value (img
->spec
, QCloader
, NULL
);
9170 loader
= intern ("gs-load-image");
9172 img
->lisp_data
= call6 (loader
, frame
, img
->spec
,
9173 make_number (img
->width
),
9174 make_number (img
->height
),
9175 window_and_pixmap_id
,
9177 return PROCESSP (img
->lisp_data
);
9181 /* Kill the Ghostscript process that was started to fill PIXMAP on
9182 frame F. Called from XTread_socket when receiving an event
9183 telling Emacs that Ghostscript has finished drawing. */
9186 x_kill_gs_process (Pixmap pixmap
, struct frame
*f
)
9188 struct image_cache
*c
= FRAME_IMAGE_CACHE (f
);
9193 /* Find the image containing PIXMAP. */
9194 for (i
= 0; i
< c
->used
; ++i
)
9195 if (c
->images
[i
]->pixmap
== pixmap
)
9198 /* Should someone in between have cleared the image cache, for
9199 instance, give up. */
9203 /* Kill the GS process. We should have found PIXMAP in the image
9204 cache and its image should contain a process object. */
9206 eassert (PROCESSP (img
->lisp_data
));
9207 Fkill_process (img
->lisp_data
, Qnil
);
9208 img
->lisp_data
= Qnil
;
9210 #if defined (HAVE_X_WINDOWS)
9212 /* On displays with a mutable colormap, figure out the colors
9213 allocated for the image by looking at the pixels of an XImage for
9215 class = FRAME_X_VISUAL (f
)->class;
9216 if (class != StaticColor
&& class != StaticGray
&& class != TrueColor
)
9222 /* Try to get an XImage for img->pixmep. */
9223 ximg
= XGetImage (FRAME_X_DISPLAY (f
), img
->pixmap
,
9224 0, 0, img
->width
, img
->height
, ~0, ZPixmap
);
9229 /* Initialize the color table. */
9230 init_color_table ();
9232 /* For each pixel of the image, look its color up in the
9233 color table. After having done so, the color table will
9234 contain an entry for each color used by the image. */
9235 for (y
= 0; y
< img
->height
; ++y
)
9236 for (x
= 0; x
< img
->width
; ++x
)
9238 unsigned long pixel
= XGetPixel (ximg
, x
, y
);
9239 lookup_pixel_color (f
, pixel
);
9242 /* Record colors in the image. Free color table and XImage. */
9243 #ifdef COLOR_TABLE_SUPPORT
9244 img
->colors
= colors_in_color_table (&img
->ncolors
);
9245 free_color_table ();
9247 XDestroyImage (ximg
);
9249 #if 0 /* This doesn't seem to be the case. If we free the colors
9250 here, we get a BadAccess later in x_clear_image when
9251 freeing the colors. */
9252 /* We have allocated colors once, but Ghostscript has also
9253 allocated colors on behalf of us. So, to get the
9254 reference counts right, free them once. */
9256 x_free_colors (f
, img
->colors
, img
->ncolors
);
9260 image_error ("Cannot get X image of `%s'; colors will not be freed",
9265 #endif /* HAVE_X_WINDOWS */
9267 /* Now that we have the pixmap, compute mask and transform the
9268 image if requested. */
9270 postprocess_image (f
, img
);
9274 #endif /* HAVE_GHOSTSCRIPT */
9277 /***********************************************************************
9279 ***********************************************************************/
9283 DEFUN ("imagep", Fimagep
, Simagep
, 1, 1, 0,
9284 doc
: /* Value is non-nil if SPEC is a valid image specification. */)
9287 return valid_image_p (spec
) ? Qt
: Qnil
;
9291 DEFUN ("lookup-image", Flookup_image
, Slookup_image
, 1, 1, 0,
9297 if (valid_image_p (spec
))
9298 id
= lookup_image (SELECTED_FRAME (), spec
);
9301 return make_number (id
);
9304 #endif /* GLYPH_DEBUG */
9307 /***********************************************************************
9309 ***********************************************************************/
9311 DEFUN ("init-image-library", Finit_image_library
, Sinit_image_library
, 1, 1, 0,
9312 doc
: /* Initialize image library implementing image type TYPE.
9313 Return non-nil if TYPE is a supported image type.
9315 If image libraries are loaded dynamically (currently only the case on
9316 MS-Windows), load the library for TYPE if it is not yet loaded, using
9317 the library file(s) specified by `dynamic-library-alist'. */)
9320 return lookup_image_type (type
) ? Qt
: Qnil
;
9323 /* Look up image type TYPE, and return a pointer to its image_type
9324 structure. Return 0 if TYPE is not a known image type. */
9326 static struct image_type
*
9327 lookup_image_type (Lisp_Object type
)
9329 /* Types pbm and xbm are built-in and always available. */
9330 if (EQ (type
, Qpbm
))
9331 return define_image_type (&pbm_type
);
9333 if (EQ (type
, Qxbm
))
9334 return define_image_type (&xbm_type
);
9336 #if defined (HAVE_XPM) || defined (HAVE_NS)
9337 if (EQ (type
, Qxpm
))
9338 return define_image_type (&xpm_type
);
9341 #if defined (HAVE_JPEG) || defined (HAVE_NS)
9342 if (EQ (type
, Qjpeg
))
9343 return define_image_type (&jpeg_type
);
9346 #if defined (HAVE_TIFF) || defined (HAVE_NS)
9347 if (EQ (type
, Qtiff
))
9348 return define_image_type (&tiff_type
);
9351 #if defined (HAVE_GIF) || defined (HAVE_NS)
9352 if (EQ (type
, Qgif
))
9353 return define_image_type (&gif_type
);
9356 #if defined (HAVE_PNG) || defined (HAVE_NS)
9357 if (EQ (type
, Qpng
))
9358 return define_image_type (&png_type
);
9361 #if defined (HAVE_RSVG)
9362 if (EQ (type
, Qsvg
))
9363 return define_image_type (&svg_type
);
9366 #if defined (HAVE_IMAGEMAGICK)
9367 if (EQ (type
, Qimagemagick
))
9368 return define_image_type (&imagemagick_type
);
9371 #ifdef HAVE_GHOSTSCRIPT
9372 if (EQ (type
, Qpostscript
))
9373 return define_image_type (&gs_type
);
9379 /* Reset image_types before dumping.
9380 Called from Fdump_emacs. */
9383 reset_image_types (void)
9387 struct image_type
*next
= image_types
->next
;
9388 xfree (image_types
);
9394 syms_of_image (void)
9396 /* Initialize this only once; it will be reset before dumping. */
9399 /* Must be defined now because we're going to update it below, while
9400 defining the supported image types. */
9401 DEFVAR_LISP ("image-types", Vimage_types
,
9402 doc
: /* List of potentially supported image types.
9403 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
9404 To check whether it is really supported, use `image-type-available-p'. */);
9405 Vimage_types
= Qnil
;
9407 DEFVAR_LISP ("max-image-size", Vmax_image_size
,
9408 doc
: /* Maximum size of images.
9409 Emacs will not load an image into memory if its pixel width or
9410 pixel height exceeds this limit.
9412 If the value is an integer, it directly specifies the maximum
9413 image height and width, measured in pixels. If it is a floating
9414 point number, it specifies the maximum image height and width
9415 as a ratio to the frame height and width. If the value is
9416 non-numeric, there is no explicit limit on the size of images. */);
9417 Vmax_image_size
= make_float (MAX_IMAGE_SIZE
);
9419 /* Other symbols. */
9420 DEFSYM (Qcount
, "count");
9421 DEFSYM (Qextension_data
, "extension-data");
9422 DEFSYM (Qdelay
, "delay");
9425 DEFSYM (QCascent
, ":ascent");
9426 DEFSYM (QCmargin
, ":margin");
9427 DEFSYM (QCrelief
, ":relief");
9428 DEFSYM (QCconversion
, ":conversion");
9429 DEFSYM (QCcolor_symbols
, ":color-symbols");
9430 DEFSYM (QCheuristic_mask
, ":heuristic-mask");
9431 DEFSYM (QCindex
, ":index");
9432 DEFSYM (QCgeometry
, ":geometry");
9433 DEFSYM (QCcrop
, ":crop");
9434 DEFSYM (QCrotation
, ":rotation");
9435 DEFSYM (QCmatrix
, ":matrix");
9436 DEFSYM (QCcolor_adjustment
, ":color-adjustment");
9437 DEFSYM (QCmask
, ":mask");
9439 /* Other symbols. */
9440 DEFSYM (Qlaplace
, "laplace");
9441 DEFSYM (Qemboss
, "emboss");
9442 DEFSYM (Qedge_detection
, "edge-detection");
9443 DEFSYM (Qheuristic
, "heuristic");
9445 DEFSYM (Qpostscript
, "postscript");
9446 DEFSYM (QCmax_width
, ":max-width");
9447 DEFSYM (QCmax_height
, ":max-height");
9448 #ifdef HAVE_GHOSTSCRIPT
9449 ADD_IMAGE_TYPE (Qpostscript
);
9450 DEFSYM (QCloader
, ":loader");
9451 DEFSYM (QCbounding_box
, ":bounding-box");
9452 DEFSYM (QCpt_width
, ":pt-width");
9453 DEFSYM (QCpt_height
, ":pt-height");
9454 #endif /* HAVE_GHOSTSCRIPT */
9457 /* Versions of libpng, libgif, and libjpeg that we were compiled with,
9458 or -1 if no PNG/GIF support was compiled in. This is tested by
9459 w32-win.el to correctly set up the alist used to search for the
9460 respective image libraries. */
9461 DEFSYM (Qlibpng_version
, "libpng-version");
9462 Fset (Qlibpng_version
,
9464 make_number (PNG_LIBPNG_VER
)
9469 DEFSYM (Qlibgif_version
, "libgif-version");
9470 Fset (Qlibgif_version
,
9472 make_number (GIFLIB_MAJOR
* 10000
9473 + GIFLIB_MINOR
* 100
9479 DEFSYM (Qlibjpeg_version
, "libjpeg-version");
9480 Fset (Qlibjpeg_version
,
9482 make_number (JPEG_LIB_VERSION
)
9489 DEFSYM (Qpbm
, "pbm");
9490 ADD_IMAGE_TYPE (Qpbm
);
9492 DEFSYM (Qxbm
, "xbm");
9493 ADD_IMAGE_TYPE (Qxbm
);
9495 #if defined (HAVE_XPM) || defined (HAVE_NS)
9496 DEFSYM (Qxpm
, "xpm");
9497 ADD_IMAGE_TYPE (Qxpm
);
9500 #if defined (HAVE_JPEG) || defined (HAVE_NS)
9501 DEFSYM (Qjpeg
, "jpeg");
9502 ADD_IMAGE_TYPE (Qjpeg
);
9505 #if defined (HAVE_TIFF) || defined (HAVE_NS)
9506 DEFSYM (Qtiff
, "tiff");
9507 ADD_IMAGE_TYPE (Qtiff
);
9510 #if defined (HAVE_GIF) || defined (HAVE_NS)
9511 DEFSYM (Qgif
, "gif");
9512 ADD_IMAGE_TYPE (Qgif
);
9515 #if defined (HAVE_PNG) || defined (HAVE_NS)
9516 DEFSYM (Qpng
, "png");
9517 ADD_IMAGE_TYPE (Qpng
);
9520 #if defined (HAVE_IMAGEMAGICK)
9521 DEFSYM (Qimagemagick
, "imagemagick");
9522 ADD_IMAGE_TYPE (Qimagemagick
);
9525 #if defined (HAVE_RSVG)
9526 DEFSYM (Qsvg
, "svg");
9527 ADD_IMAGE_TYPE (Qsvg
);
9529 /* Other libraries used directly by svg code. */
9530 DEFSYM (Qgdk_pixbuf
, "gdk-pixbuf");
9531 DEFSYM (Qglib
, "glib");
9532 DEFSYM (Qgobject
, "gobject");
9533 #endif /* HAVE_NTGUI */
9534 #endif /* HAVE_RSVG */
9536 defsubr (&Sinit_image_library
);
9537 #ifdef HAVE_IMAGEMAGICK
9538 defsubr (&Simagemagick_types
);
9540 defsubr (&Sclear_image_cache
);
9541 defsubr (&Simage_flush
);
9542 defsubr (&Simage_size
);
9543 defsubr (&Simage_mask_p
);
9544 defsubr (&Simage_metadata
);
9548 defsubr (&Slookup_image
);
9551 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images
,
9552 doc
: /* Non-nil means always draw a cross over disabled images.
9553 Disabled images are those having a `:conversion disabled' property.
9554 A cross is always drawn on black & white displays. */);
9555 cross_disabled_images
= 0;
9557 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path
,
9558 doc
: /* List of directories to search for window system bitmap files. */);
9559 Vx_bitmap_file_path
= decode_env_path (0, PATH_BITMAPS
, 0);
9561 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay
,
9562 doc
: /* Maximum time after which images are removed from the cache.
9563 When an image has not been displayed this many seconds, Emacs
9564 automatically removes it from the image cache. If the cache contains
9565 a large number of images, the actual eviction time may be shorter.
9566 The value can also be nil, meaning the cache is never cleared.
9568 The function `clear-image-cache' disregards this variable. */);
9569 Vimage_cache_eviction_delay
= make_number (300);
9570 #ifdef HAVE_IMAGEMAGICK
9571 DEFVAR_INT ("imagemagick-render-type", imagemagick_render_type
,
9572 doc
: /* Integer indicating which ImageMagick rendering method to use.
9574 0 -- the default method (pixel pushing)
9575 1 -- a newer method ("MagickExportImagePixels") that may perform
9576 better (speed etc) in some cases, but has not been as thoroughly
9577 tested with Emacs as the default method. This method requires
9578 ImageMagick version 6.4.6 (approximately) or later.
9580 /* MagickExportImagePixels is in 6.4.6-9, but not 6.4.4-10. */
9581 imagemagick_render_type
= 0;