Use float instead of Lisp_Object for rehash_size
[emacs.git] / src / image.c
blobfc396c7353de6ad4109dd21bf05ee6228625e12b
1 /* Functions for image support on window system.
3 Copyright (C) 1989, 1992-2017 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 (at
10 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/>. */
20 #include <config.h>
22 #include <fcntl.h>
23 #include <stdio.h>
24 #include <unistd.h>
26 /* Include this before including <setjmp.h> to work around bugs with
27 older libpng; see Bug#17429. */
28 #if defined HAVE_PNG && !defined HAVE_NS
29 # include <png.h>
30 #endif
32 #include <setjmp.h>
34 #include <c-ctype.h>
35 #include <flexmember.h>
37 #include "lisp.h"
38 #include "frame.h"
39 #include "process.h"
40 #include "window.h"
41 #include "buffer.h"
42 #include "dispextern.h"
43 #include "blockinput.h"
44 #include "systime.h"
45 #include <epaths.h>
46 #include "coding.h"
47 #include "termhooks.h"
48 #include "font.h"
50 #ifdef HAVE_SYS_STAT_H
51 #include <sys/stat.h>
52 #endif /* HAVE_SYS_STAT_H */
54 #ifdef HAVE_SYS_TYPES_H
55 #include <sys/types.h>
56 #endif /* HAVE_SYS_TYPES_H */
58 #ifdef HAVE_WINDOW_SYSTEM
59 #include TERM_HEADER
60 #endif /* HAVE_WINDOW_SYSTEM */
62 /* Work around GCC bug 54561. */
63 #if GNUC_PREREQ (4, 3, 0)
64 # pragma GCC diagnostic ignored "-Wclobbered"
65 #endif
67 #ifdef HAVE_X_WINDOWS
68 typedef struct x_bitmap_record Bitmap_Record;
69 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
70 #define NO_PIXMAP None
72 #define PIX_MASK_RETAIN 0
73 #define PIX_MASK_DRAW 1
74 #endif /* HAVE_X_WINDOWS */
76 #ifdef HAVE_NTGUI
78 /* We need (or want) w32.h only when we're _not_ compiling for Cygwin. */
79 #ifdef WINDOWSNT
80 # include "w32.h"
81 #endif
83 typedef struct w32_bitmap_record Bitmap_Record;
84 #define GET_PIXEL(ximg, x, y) GetPixel (ximg, x, y)
85 #define NO_PIXMAP 0
87 #define PIX_MASK_RETAIN 0
88 #define PIX_MASK_DRAW 1
90 #define x_defined_color w32_defined_color
92 #endif /* HAVE_NTGUI */
94 #ifdef HAVE_NS
95 typedef struct ns_bitmap_record Bitmap_Record;
97 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
98 #define NO_PIXMAP 0
100 #define PIX_MASK_RETAIN 0
102 #define x_defined_color(f, name, color_def, alloc) \
103 ns_defined_color (f, name, color_def, alloc, 0)
104 #endif /* HAVE_NS */
106 #if (defined HAVE_X_WINDOWS \
107 && ! (defined HAVE_NTGUI || defined USE_CAIRO || defined HAVE_NS))
108 /* W32_TODO : Color tables on W32. */
109 # define COLOR_TABLE_SUPPORT 1
110 #endif
112 static void x_disable_image (struct frame *, struct image *);
113 static void x_edge_detection (struct frame *, struct image *, Lisp_Object,
114 Lisp_Object);
116 static void init_color_table (void);
117 static unsigned long lookup_rgb_color (struct frame *f, int r, int g, int b);
118 #ifdef COLOR_TABLE_SUPPORT
119 static void free_color_table (void);
120 static unsigned long *colors_in_color_table (int *n);
121 #endif
123 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
124 id, which is just an int that this section returns. Bitmaps are
125 reference counted so they can be shared among frames.
127 Bitmap indices are guaranteed to be > 0, so a negative number can
128 be used to indicate no bitmap.
130 If you use x_create_bitmap_from_data, then you must keep track of
131 the bitmaps yourself. That is, creating a bitmap from the same
132 data more than once will not be caught. */
134 #ifdef HAVE_NS
135 /* Use with images created by ns_image_for_XPM. */
136 static unsigned long
137 XGetPixel (XImagePtr ximage, int x, int y)
139 return ns_get_pixel (ximage, x, y);
142 /* Use with images created by ns_image_for_XPM; alpha set to 1;
143 pixel is assumed to be in RGB form. */
144 static void
145 XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel)
147 ns_put_pixel (ximage, x, y, pixel);
149 #endif /* HAVE_NS */
152 /* Functions to access the contents of a bitmap, given an id. */
154 #ifdef HAVE_X_WINDOWS
155 static int
156 x_bitmap_height (struct frame *f, ptrdiff_t id)
158 return FRAME_DISPLAY_INFO (f)->bitmaps[id - 1].height;
161 static int
162 x_bitmap_width (struct frame *f, ptrdiff_t id)
164 return FRAME_DISPLAY_INFO (f)->bitmaps[id - 1].width;
166 #endif
168 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
169 ptrdiff_t
170 x_bitmap_pixmap (struct frame *f, ptrdiff_t id)
172 /* HAVE_NTGUI needs the explicit cast here. */
173 return (ptrdiff_t) FRAME_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
175 #endif
177 #ifdef HAVE_X_WINDOWS
179 x_bitmap_mask (struct frame *f, ptrdiff_t id)
181 return FRAME_DISPLAY_INFO (f)->bitmaps[id - 1].mask;
183 #endif
185 /* Allocate a new bitmap record. Returns index of new record. */
187 static ptrdiff_t
188 x_allocate_bitmap_record (struct frame *f)
190 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
191 ptrdiff_t i;
193 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
194 return ++dpyinfo->bitmaps_last;
196 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
197 if (dpyinfo->bitmaps[i].refcount == 0)
198 return i + 1;
200 dpyinfo->bitmaps =
201 xpalloc (dpyinfo->bitmaps, &dpyinfo->bitmaps_size,
202 10, -1, sizeof *dpyinfo->bitmaps);
203 return ++dpyinfo->bitmaps_last;
206 /* Add one reference to the reference count of the bitmap with id ID. */
208 void
209 x_reference_bitmap (struct frame *f, ptrdiff_t id)
211 ++FRAME_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
214 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
216 ptrdiff_t
217 x_create_bitmap_from_data (struct frame *f, char *bits, unsigned int width, unsigned int height)
219 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
220 ptrdiff_t id;
222 #ifdef HAVE_X_WINDOWS
223 Pixmap bitmap;
224 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
225 bits, width, height);
226 if (! bitmap)
227 return -1;
228 #endif /* HAVE_X_WINDOWS */
230 #ifdef HAVE_NTGUI
231 Lisp_Object frame UNINIT; /* The value is not used. */
232 Pixmap bitmap;
233 bitmap = CreateBitmap (width, height,
234 FRAME_DISPLAY_INFO (XFRAME (frame))->n_planes,
235 FRAME_DISPLAY_INFO (XFRAME (frame))->n_cbits,
236 bits);
237 if (! bitmap)
238 return -1;
239 #endif /* HAVE_NTGUI */
241 #ifdef HAVE_NS
242 void *bitmap = ns_image_from_XBM (bits, width, height, 0, 0);
243 if (!bitmap)
244 return -1;
245 #endif
247 id = x_allocate_bitmap_record (f);
249 #ifdef HAVE_NS
250 dpyinfo->bitmaps[id - 1].img = bitmap;
251 dpyinfo->bitmaps[id - 1].depth = 1;
252 #endif
254 dpyinfo->bitmaps[id - 1].file = NULL;
255 dpyinfo->bitmaps[id - 1].height = height;
256 dpyinfo->bitmaps[id - 1].width = width;
257 dpyinfo->bitmaps[id - 1].refcount = 1;
259 #ifdef HAVE_X_WINDOWS
260 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
261 dpyinfo->bitmaps[id - 1].have_mask = false;
262 dpyinfo->bitmaps[id - 1].depth = 1;
263 #endif /* HAVE_X_WINDOWS */
265 #ifdef HAVE_NTGUI
266 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
267 dpyinfo->bitmaps[id - 1].hinst = NULL;
268 dpyinfo->bitmaps[id - 1].depth = 1;
269 #endif /* HAVE_NTGUI */
271 return id;
274 /* Create bitmap from file FILE for frame F. */
276 ptrdiff_t
277 x_create_bitmap_from_file (struct frame *f, Lisp_Object file)
279 #ifdef HAVE_NTGUI
280 return -1; /* W32_TODO : bitmap support */
281 #else
282 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
283 #endif
285 #ifdef HAVE_NS
286 ptrdiff_t id;
287 void *bitmap = ns_image_from_file (file);
289 if (!bitmap)
290 return -1;
293 id = x_allocate_bitmap_record (f);
294 dpyinfo->bitmaps[id - 1].img = bitmap;
295 dpyinfo->bitmaps[id - 1].refcount = 1;
296 dpyinfo->bitmaps[id - 1].file = xlispstrdup (file);
297 dpyinfo->bitmaps[id - 1].depth = 1;
298 dpyinfo->bitmaps[id - 1].height = ns_image_width (bitmap);
299 dpyinfo->bitmaps[id - 1].width = ns_image_height (bitmap);
300 return id;
301 #endif
303 #ifdef HAVE_X_WINDOWS
304 unsigned int width, height;
305 Pixmap bitmap;
306 int xhot, yhot, result;
307 ptrdiff_t id;
308 Lisp_Object found;
309 char *filename;
311 /* Look for an existing bitmap with the same name. */
312 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
314 if (dpyinfo->bitmaps[id].refcount
315 && dpyinfo->bitmaps[id].file
316 && !strcmp (dpyinfo->bitmaps[id].file, SSDATA (file)))
318 ++dpyinfo->bitmaps[id].refcount;
319 return id + 1;
323 /* Search bitmap-file-path for the file, if appropriate. */
324 if (openp (Vx_bitmap_file_path, file, Qnil, &found,
325 make_number (R_OK), false)
326 < 0)
327 return -1;
329 filename = SSDATA (found);
331 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
332 filename, &width, &height, &bitmap, &xhot, &yhot);
333 if (result != BitmapSuccess)
334 return -1;
336 id = x_allocate_bitmap_record (f);
337 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
338 dpyinfo->bitmaps[id - 1].have_mask = false;
339 dpyinfo->bitmaps[id - 1].refcount = 1;
340 dpyinfo->bitmaps[id - 1].file = xlispstrdup (file);
341 dpyinfo->bitmaps[id - 1].depth = 1;
342 dpyinfo->bitmaps[id - 1].height = height;
343 dpyinfo->bitmaps[id - 1].width = width;
345 return id;
346 #endif /* HAVE_X_WINDOWS */
349 /* Free bitmap B. */
351 static void
352 free_bitmap_record (Display_Info *dpyinfo, Bitmap_Record *bm)
354 #ifdef HAVE_X_WINDOWS
355 XFreePixmap (dpyinfo->display, bm->pixmap);
356 if (bm->have_mask)
357 XFreePixmap (dpyinfo->display, bm->mask);
358 #endif /* HAVE_X_WINDOWS */
360 #ifdef HAVE_NTGUI
361 DeleteObject (bm->pixmap);
362 #endif /* HAVE_NTGUI */
364 #ifdef HAVE_NS
365 ns_release_object (bm->img);
366 #endif
368 if (bm->file)
370 xfree (bm->file);
371 bm->file = NULL;
375 /* Remove reference to bitmap with id number ID. */
377 void
378 x_destroy_bitmap (struct frame *f, ptrdiff_t id)
380 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
382 if (id > 0)
384 Bitmap_Record *bm = &dpyinfo->bitmaps[id - 1];
386 if (--bm->refcount == 0)
388 block_input ();
389 free_bitmap_record (dpyinfo, bm);
390 unblock_input ();
395 /* Free all the bitmaps for the display specified by DPYINFO. */
397 void
398 x_destroy_all_bitmaps (Display_Info *dpyinfo)
400 ptrdiff_t i;
401 Bitmap_Record *bm = dpyinfo->bitmaps;
403 for (i = 0; i < dpyinfo->bitmaps_last; i++, bm++)
404 if (bm->refcount > 0)
405 free_bitmap_record (dpyinfo, bm);
407 dpyinfo->bitmaps_last = 0;
410 static bool x_create_x_image_and_pixmap (struct frame *, int, int, int,
411 XImagePtr *, Pixmap *);
412 static void x_destroy_x_image (XImagePtr ximg);
414 #ifdef HAVE_NTGUI
415 static XImagePtr_or_DC image_get_x_image_or_dc (struct frame *, struct image *,
416 bool, HGDIOBJ *);
417 static void image_unget_x_image_or_dc (struct image *, bool, XImagePtr_or_DC,
418 HGDIOBJ);
419 #else
420 static XImagePtr image_get_x_image (struct frame *, struct image *, bool);
421 static void image_unget_x_image (struct image *, bool, XImagePtr);
422 #define image_get_x_image_or_dc(f, img, mask_p, dummy) \
423 image_get_x_image (f, img, mask_p)
424 #define image_unget_x_image_or_dc(img, mask_p, ximg, dummy) \
425 image_unget_x_image (img, mask_p, ximg)
426 #endif
428 #ifdef HAVE_X_WINDOWS
430 static void image_sync_to_pixmaps (struct frame *, struct image *);
432 /* Useful functions defined in the section
433 `Image type independent image structures' below. */
435 static unsigned long four_corners_best (XImagePtr ximg,
436 int *corners,
437 unsigned long width,
438 unsigned long height);
441 /* Create a mask of a bitmap. Note is this not a perfect mask.
442 It's nicer with some borders in this context */
444 void
445 x_create_bitmap_mask (struct frame *f, ptrdiff_t id)
447 Pixmap pixmap, mask;
448 XImagePtr ximg, mask_img;
449 unsigned long width, height;
450 bool result;
451 unsigned long bg;
452 unsigned long x, y, xp, xm, yp, ym;
453 GC gc;
455 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
457 if (!(id > 0))
458 return;
460 pixmap = x_bitmap_pixmap (f, id);
461 width = x_bitmap_width (f, id);
462 height = x_bitmap_height (f, id);
464 block_input ();
465 ximg = XGetImage (FRAME_X_DISPLAY (f), pixmap, 0, 0, width, height,
466 ~0, ZPixmap);
468 if (!ximg)
470 unblock_input ();
471 return;
474 result = x_create_x_image_and_pixmap (f, width, height, 1, &mask_img, &mask);
476 unblock_input ();
477 if (!result)
479 XDestroyImage (ximg);
480 return;
483 bg = four_corners_best (ximg, NULL, width, height);
485 for (y = 0; y < ximg->height; ++y)
487 for (x = 0; x < ximg->width; ++x)
489 xp = x != ximg->width - 1 ? x + 1 : 0;
490 xm = x != 0 ? x - 1 : ximg->width - 1;
491 yp = y != ximg->height - 1 ? y + 1 : 0;
492 ym = y != 0 ? y - 1 : ximg->height - 1;
493 if (XGetPixel (ximg, x, y) == bg
494 && XGetPixel (ximg, x, yp) == bg
495 && XGetPixel (ximg, x, ym) == bg
496 && XGetPixel (ximg, xp, y) == bg
497 && XGetPixel (ximg, xp, yp) == bg
498 && XGetPixel (ximg, xp, ym) == bg
499 && XGetPixel (ximg, xm, y) == bg
500 && XGetPixel (ximg, xm, yp) == bg
501 && XGetPixel (ximg, xm, ym) == bg)
502 XPutPixel (mask_img, x, y, 0);
503 else
504 XPutPixel (mask_img, x, y, 1);
508 eassert (input_blocked_p ());
509 gc = XCreateGC (FRAME_X_DISPLAY (f), mask, 0, NULL);
510 XPutImage (FRAME_X_DISPLAY (f), mask, gc, mask_img, 0, 0, 0, 0,
511 width, height);
512 XFreeGC (FRAME_X_DISPLAY (f), gc);
514 dpyinfo->bitmaps[id - 1].have_mask = true;
515 dpyinfo->bitmaps[id - 1].mask = mask;
517 XDestroyImage (ximg);
518 x_destroy_x_image (mask_img);
521 #endif /* HAVE_X_WINDOWS */
523 /***********************************************************************
524 Image types
525 ***********************************************************************/
527 /* List of supported image types. Use define_image_type to add new
528 types. Use lookup_image_type to find a type for a given symbol. */
530 static struct image_type *image_types;
532 /* Forward function prototypes. */
534 static struct image_type *lookup_image_type (Lisp_Object);
535 static void x_laplace (struct frame *, struct image *);
536 static void x_emboss (struct frame *, struct image *);
537 static void x_build_heuristic_mask (struct frame *, struct image *,
538 Lisp_Object);
539 #ifdef WINDOWSNT
540 #define CACHE_IMAGE_TYPE(type, status) \
541 do { Vlibrary_cache = Fcons (Fcons (type, status), Vlibrary_cache); } while (0)
542 #else
543 #define CACHE_IMAGE_TYPE(type, status)
544 #endif
546 #define ADD_IMAGE_TYPE(type) \
547 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
549 /* Define a new image type from TYPE. This adds a copy of TYPE to
550 image_types and caches the loading status of TYPE. */
552 static struct image_type *
553 define_image_type (struct image_type *type)
555 struct image_type *p = NULL;
556 int new_type = type->type;
557 bool type_valid = true;
559 block_input ();
561 for (p = image_types; p; p = p->next)
562 if (p->type == new_type)
563 goto done;
565 if (type->init)
567 #if defined HAVE_NTGUI && defined WINDOWSNT
568 /* If we failed to load the library before, don't try again. */
569 Lisp_Object tested = Fassq (builtin_lisp_symbol (new_type),
570 Vlibrary_cache);
571 if (CONSP (tested) && NILP (XCDR (tested)))
572 type_valid = false;
573 else
574 #endif
576 type_valid = type->init ();
577 CACHE_IMAGE_TYPE (builtin_lisp_symbol (new_type),
578 type_valid ? Qt : Qnil);
582 if (type_valid)
584 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
585 The initialized data segment is read-only. */
586 p = xmalloc (sizeof *p);
587 *p = *type;
588 p->next = image_types;
589 image_types = p;
592 done:
593 unblock_input ();
594 return p;
598 /* Value is true if OBJECT is a valid Lisp image specification. A
599 valid image specification is a list whose car is the symbol
600 `image', and whose rest is a property list. The property list must
601 contain a value for key `:type'. That value must be the name of a
602 supported image type. The rest of the property list depends on the
603 image type. */
605 bool
606 valid_image_p (Lisp_Object object)
608 bool valid_p = 0;
610 if (IMAGEP (object))
612 Lisp_Object tem;
614 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
615 if (EQ (XCAR (tem), QCtype))
617 tem = XCDR (tem);
618 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
620 struct image_type *type;
621 type = lookup_image_type (XCAR (tem));
622 if (type)
623 valid_p = type->valid_p (object);
626 break;
630 return valid_p;
634 /* Log error message with format string FORMAT and trailing arguments.
635 Signaling an error, e.g. when an image cannot be loaded, is not a
636 good idea because this would interrupt redisplay, and the error
637 message display would lead to another redisplay. This function
638 therefore simply displays a message. */
640 static void
641 image_error (const char *format, ...)
643 va_list ap;
644 va_start (ap, format);
645 vadd_to_log (format, ap);
646 va_end (ap);
649 static void
650 image_size_error (void)
652 image_error ("Invalid image size (see `max-image-size')");
656 /***********************************************************************
657 Image specifications
658 ***********************************************************************/
660 enum image_value_type
662 IMAGE_DONT_CHECK_VALUE_TYPE,
663 IMAGE_STRING_VALUE,
664 IMAGE_STRING_OR_NIL_VALUE,
665 IMAGE_SYMBOL_VALUE,
666 IMAGE_POSITIVE_INTEGER_VALUE,
667 IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR,
668 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
669 IMAGE_ASCENT_VALUE,
670 IMAGE_INTEGER_VALUE,
671 IMAGE_FUNCTION_VALUE,
672 IMAGE_NUMBER_VALUE,
673 IMAGE_BOOL_VALUE
676 /* Structure used when parsing image specifications. */
678 struct image_keyword
680 /* Name of keyword. */
681 const char *name;
683 /* The type of value allowed. */
684 enum image_value_type type;
686 /* True means key must be present. */
687 bool mandatory_p;
689 /* Used to recognize duplicate keywords in a property list. */
690 int count;
692 /* The value that was found. */
693 Lisp_Object value;
697 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
698 has the format (image KEYWORD VALUE ...). One of the keyword/
699 value pairs must be `:type TYPE'. KEYWORDS is a vector of
700 image_keywords structures of size NKEYWORDS describing other
701 allowed keyword/value pairs. Value is true if SPEC is valid. */
703 static bool
704 parse_image_spec (Lisp_Object spec, struct image_keyword *keywords,
705 int nkeywords, Lisp_Object type)
707 int i;
708 Lisp_Object plist;
710 if (!IMAGEP (spec))
711 return 0;
713 plist = XCDR (spec);
714 while (CONSP (plist))
716 Lisp_Object key, value;
718 /* First element of a pair must be a symbol. */
719 key = XCAR (plist);
720 plist = XCDR (plist);
721 if (!SYMBOLP (key))
722 return 0;
724 /* There must follow a value. */
725 if (!CONSP (plist))
726 return 0;
727 value = XCAR (plist);
728 plist = XCDR (plist);
730 /* Find key in KEYWORDS. Error if not found. */
731 for (i = 0; i < nkeywords; ++i)
732 if (strcmp (keywords[i].name, SSDATA (SYMBOL_NAME (key))) == 0)
733 break;
735 if (i == nkeywords)
736 continue;
738 /* Record that we recognized the keyword. If a keywords
739 was found more than once, it's an error. */
740 keywords[i].value = value;
741 if (keywords[i].count > 1)
742 return 0;
743 ++keywords[i].count;
745 /* Check type of value against allowed type. */
746 switch (keywords[i].type)
748 case IMAGE_STRING_VALUE:
749 if (!STRINGP (value))
750 return 0;
751 break;
753 case IMAGE_STRING_OR_NIL_VALUE:
754 if (!STRINGP (value) && !NILP (value))
755 return 0;
756 break;
758 case IMAGE_SYMBOL_VALUE:
759 if (!SYMBOLP (value))
760 return 0;
761 break;
763 case IMAGE_POSITIVE_INTEGER_VALUE:
764 if (! RANGED_INTEGERP (1, value, INT_MAX))
765 return 0;
766 break;
768 case IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR:
769 if (RANGED_INTEGERP (0, value, INT_MAX))
770 break;
771 if (CONSP (value)
772 && RANGED_INTEGERP (0, XCAR (value), INT_MAX)
773 && RANGED_INTEGERP (0, XCDR (value), INT_MAX))
774 break;
775 return 0;
777 case IMAGE_ASCENT_VALUE:
778 if (SYMBOLP (value) && EQ (value, Qcenter))
779 break;
780 else if (RANGED_INTEGERP (0, value, 100))
781 break;
782 return 0;
784 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
785 /* Unlike the other integer-related cases, this one does not
786 verify that VALUE fits in 'int'. This is because callers
787 want EMACS_INT. */
788 if (!INTEGERP (value) || XINT (value) < 0)
789 return 0;
790 break;
792 case IMAGE_DONT_CHECK_VALUE_TYPE:
793 break;
795 case IMAGE_FUNCTION_VALUE:
796 value = indirect_function (value);
797 if (FUNCTIONP (value))
798 break;
799 return 0;
801 case IMAGE_NUMBER_VALUE:
802 if (! NUMBERP (value))
803 return 0;
804 break;
806 case IMAGE_INTEGER_VALUE:
807 if (! TYPE_RANGED_INTEGERP (int, value))
808 return 0;
809 break;
811 case IMAGE_BOOL_VALUE:
812 if (!NILP (value) && !EQ (value, Qt))
813 return 0;
814 break;
816 default:
817 emacs_abort ();
818 break;
821 if (EQ (key, QCtype) && !EQ (type, value))
822 return 0;
825 /* Check that all mandatory fields are present. */
826 for (i = 0; i < nkeywords; ++i)
827 if (keywords[i].mandatory_p && keywords[i].count == 0)
828 return 0;
830 return NILP (plist);
834 /* Return the value of KEY in image specification SPEC. Value is nil
835 if KEY is not present in SPEC. Set *FOUND depending on whether KEY
836 was found in SPEC. */
838 static Lisp_Object
839 image_spec_value (Lisp_Object spec, Lisp_Object key, bool *found)
841 Lisp_Object tail;
843 eassert (valid_image_p (spec));
845 for (tail = XCDR (spec);
846 CONSP (tail) && CONSP (XCDR (tail));
847 tail = XCDR (XCDR (tail)))
849 if (EQ (XCAR (tail), key))
851 if (found)
852 *found = 1;
853 return XCAR (XCDR (tail));
857 if (found)
858 *found = 0;
859 return Qnil;
863 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
864 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
865 PIXELS non-nil means return the size in pixels, otherwise return the
866 size in canonical character units.
867 FRAME is the frame on which the image will be displayed. FRAME nil
868 or omitted means use the selected frame. */)
869 (Lisp_Object spec, Lisp_Object pixels, Lisp_Object frame)
871 Lisp_Object size;
873 size = Qnil;
874 if (valid_image_p (spec))
876 struct frame *f = decode_window_system_frame (frame);
877 ptrdiff_t id = lookup_image (f, spec);
878 struct image *img = IMAGE_FROM_ID (f, id);
879 int width = img->width + 2 * img->hmargin;
880 int height = img->height + 2 * img->vmargin;
882 if (NILP (pixels))
883 size = Fcons (make_float ((double) width / FRAME_COLUMN_WIDTH (f)),
884 make_float ((double) height / FRAME_LINE_HEIGHT (f)));
885 else
886 size = Fcons (make_number (width), make_number (height));
888 else
889 error ("Invalid image specification");
891 return size;
895 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
896 doc: /* Return t if image SPEC has a mask bitmap.
897 FRAME is the frame on which the image will be displayed. FRAME nil
898 or omitted means use the selected frame. */)
899 (Lisp_Object spec, Lisp_Object frame)
901 Lisp_Object mask;
903 mask = Qnil;
904 if (valid_image_p (spec))
906 struct frame *f = decode_window_system_frame (frame);
907 ptrdiff_t id = lookup_image (f, spec);
908 struct image *img = IMAGE_FROM_ID (f, id);
909 if (img->mask)
910 mask = Qt;
912 else
913 error ("Invalid image specification");
915 return mask;
918 DEFUN ("image-metadata", Fimage_metadata, Simage_metadata, 1, 2, 0,
919 doc: /* Return metadata for image SPEC.
920 FRAME is the frame on which the image will be displayed. FRAME nil
921 or omitted means use the selected frame. */)
922 (Lisp_Object spec, Lisp_Object frame)
924 Lisp_Object ext;
926 ext = Qnil;
927 if (valid_image_p (spec))
929 struct frame *f = decode_window_system_frame (frame);
930 ptrdiff_t id = lookup_image (f, spec);
931 struct image *img = IMAGE_FROM_ID (f, id);
932 ext = img->lisp_data;
935 return ext;
939 /***********************************************************************
940 Image type independent image structures
941 ***********************************************************************/
943 #define MAX_IMAGE_SIZE 10.0
944 /* Allocate and return a new image structure for image specification
945 SPEC. SPEC has a hash value of HASH. */
947 static struct image *
948 make_image (Lisp_Object spec, EMACS_UINT hash)
950 struct image *img = xzalloc (sizeof *img);
951 Lisp_Object file = image_spec_value (spec, QCfile, NULL);
953 eassert (valid_image_p (spec));
954 img->dependencies = NILP (file) ? Qnil : list1 (file);
955 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
956 eassert (img->type != NULL);
957 img->spec = spec;
958 img->lisp_data = Qnil;
959 img->ascent = DEFAULT_IMAGE_ASCENT;
960 img->hash = hash;
961 img->corners[BOT_CORNER] = -1; /* Full image */
962 return img;
966 /* Free image IMG which was used on frame F, including its resources. */
968 static void
969 free_image (struct frame *f, struct image *img)
971 if (img)
973 struct image_cache *c = FRAME_IMAGE_CACHE (f);
975 /* Remove IMG from the hash table of its cache. */
976 if (img->prev)
977 img->prev->next = img->next;
978 else
979 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
981 if (img->next)
982 img->next->prev = img->prev;
984 c->images[img->id] = NULL;
986 /* Windows NT redefines 'free', but in this file, we need to
987 avoid the redefinition. */
988 #ifdef WINDOWSNT
989 #undef free
990 #endif
991 /* Free resources, then free IMG. */
992 img->type->free (f, img);
993 xfree (img);
997 /* Return true if the given widths and heights are valid for display. */
999 static bool
1000 check_image_size (struct frame *f, int width, int height)
1002 int w, h;
1004 if (width <= 0 || height <= 0)
1005 return 0;
1007 if (INTEGERP (Vmax_image_size))
1008 return (width <= XINT (Vmax_image_size)
1009 && height <= XINT (Vmax_image_size));
1010 else if (FLOATP (Vmax_image_size))
1012 if (f != NULL)
1014 w = FRAME_PIXEL_WIDTH (f);
1015 h = FRAME_PIXEL_HEIGHT (f);
1017 else
1018 w = h = 1024; /* Arbitrary size for unknown frame. */
1019 return (width <= XFLOAT_DATA (Vmax_image_size) * w
1020 && height <= XFLOAT_DATA (Vmax_image_size) * h);
1022 else
1023 return 1;
1026 /* Prepare image IMG for display on frame F. Must be called before
1027 drawing an image. */
1029 void
1030 prepare_image_for_display (struct frame *f, struct image *img)
1032 /* We're about to display IMG, so set its timestamp to `now'. */
1033 img->timestamp = current_timespec ();
1035 #ifndef USE_CAIRO
1036 /* If IMG doesn't have a pixmap yet, load it now, using the image
1037 type dependent loader function. */
1038 if (img->pixmap == NO_PIXMAP && !img->load_failed_p)
1039 img->load_failed_p = ! img->type->load (f, img);
1041 #ifdef HAVE_X_WINDOWS
1042 if (!img->load_failed_p)
1044 block_input ();
1045 image_sync_to_pixmaps (f, img);
1046 unblock_input ();
1048 #endif
1049 #endif
1053 /* Value is the number of pixels for the ascent of image IMG when
1054 drawn in face FACE. */
1057 image_ascent (struct image *img, struct face *face, struct glyph_slice *slice)
1059 int height;
1060 int ascent;
1062 if (slice->height == img->height)
1063 height = img->height + img->vmargin;
1064 else if (slice->y == 0)
1065 height = slice->height + img->vmargin;
1066 else
1067 height = slice->height;
1069 if (img->ascent == CENTERED_IMAGE_ASCENT)
1071 if (face->font)
1073 #ifdef HAVE_NTGUI
1074 /* W32 specific version. Why?. ++kfs */
1075 ascent = height / 2 - (FONT_DESCENT (face->font)
1076 - FONT_BASE (face->font)) / 2;
1077 #else
1078 /* This expression is arranged so that if the image can't be
1079 exactly centered, it will be moved slightly up. This is
1080 because a typical font is `top-heavy' (due to the presence
1081 uppercase letters), so the image placement should err towards
1082 being top-heavy too. It also just generally looks better. */
1083 ascent = (height + FONT_BASE (face->font)
1084 - FONT_DESCENT (face->font) + 1) / 2;
1085 #endif /* HAVE_NTGUI */
1087 else
1088 ascent = height / 2;
1090 else
1091 ascent = height * (img->ascent / 100.0);
1093 return ascent;
1096 #ifdef USE_CAIRO
1097 static uint32_t
1098 xcolor_to_argb32 (XColor xc)
1100 return ((0xffu << 24) | ((xc.red / 256) << 16)
1101 | ((xc.green / 256) << 8) | (xc.blue / 256));
1104 static uint32_t
1105 get_spec_bg_or_alpha_as_argb (struct image *img,
1106 struct frame *f)
1108 uint32_t bgcolor = 0;
1109 XColor xbgcolor;
1110 Lisp_Object bg = image_spec_value (img->spec, QCbackground, NULL);
1112 if (STRINGP (bg) && x_parse_color (f, SSDATA (bg), &xbgcolor))
1113 bgcolor = xcolor_to_argb32 (xbgcolor);
1115 return bgcolor;
1118 static void
1119 create_cairo_image_surface (struct image *img,
1120 unsigned char *data,
1121 int width,
1122 int height)
1124 cairo_surface_t *surface;
1125 cairo_format_t format = CAIRO_FORMAT_ARGB32;
1126 int stride = cairo_format_stride_for_width (format, width);
1127 surface = cairo_image_surface_create_for_data (data,
1128 format,
1129 width,
1130 height,
1131 stride);
1132 img->width = width;
1133 img->height = height;
1134 img->cr_data = surface;
1135 img->cr_data2 = data;
1136 img->pixmap = 0;
1138 #endif
1142 /* Image background colors. */
1144 /* Find the "best" corner color of a bitmap.
1145 On W32, XIMG is assumed to a device context with the bitmap selected. */
1147 static RGB_PIXEL_COLOR
1148 four_corners_best (XImagePtr_or_DC ximg, int *corners,
1149 unsigned long width, unsigned long height)
1151 RGB_PIXEL_COLOR corner_pixels[4];
1152 RGB_PIXEL_COLOR best UNINIT;
1153 int i, best_count;
1155 if (corners && corners[BOT_CORNER] >= 0)
1157 /* Get the colors at the corner_pixels of ximg. */
1158 corner_pixels[0] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[TOP_CORNER]);
1159 corner_pixels[1] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[TOP_CORNER]);
1160 corner_pixels[2] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[BOT_CORNER] - 1);
1161 corner_pixels[3] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[BOT_CORNER] - 1);
1163 else
1165 /* Get the colors at the corner_pixels of ximg. */
1166 corner_pixels[0] = GET_PIXEL (ximg, 0, 0);
1167 corner_pixels[1] = GET_PIXEL (ximg, width - 1, 0);
1168 corner_pixels[2] = GET_PIXEL (ximg, width - 1, height - 1);
1169 corner_pixels[3] = GET_PIXEL (ximg, 0, height - 1);
1171 /* Choose the most frequently found color as background. */
1172 for (i = best_count = 0; i < 4; ++i)
1174 int j, n;
1176 for (j = n = 0; j < 4; ++j)
1177 if (corner_pixels[i] == corner_pixels[j])
1178 ++n;
1180 if (n > best_count)
1181 best = corner_pixels[i], best_count = n;
1184 return best;
1187 /* Portability macros */
1189 #ifdef HAVE_NTGUI
1191 #define Free_Pixmap(display, pixmap) \
1192 DeleteObject (pixmap)
1194 #elif defined (HAVE_NS)
1196 #define Free_Pixmap(display, pixmap) \
1197 ns_release_object (pixmap)
1199 #else
1201 #define Free_Pixmap(display, pixmap) \
1202 XFreePixmap (display, pixmap)
1204 #endif /* !HAVE_NTGUI && !HAVE_NS */
1207 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1208 it is guessed heuristically. If non-zero, XIMG is an existing
1209 XImage object (or device context with the image selected on W32) to
1210 use for the heuristic. */
1212 RGB_PIXEL_COLOR
1213 image_background (struct image *img, struct frame *f, XImagePtr_or_DC ximg)
1215 if (! img->background_valid)
1216 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1218 bool free_ximg = !ximg;
1219 #ifdef HAVE_NTGUI
1220 HGDIOBJ prev;
1221 #endif /* HAVE_NTGUI */
1223 if (free_ximg)
1224 ximg = image_get_x_image_or_dc (f, img, 0, &prev);
1226 img->background = four_corners_best (ximg, img->corners, img->width, img->height);
1228 if (free_ximg)
1229 image_unget_x_image_or_dc (img, 0, ximg, prev);
1231 img->background_valid = 1;
1234 return img->background;
1237 /* Return the `background_transparent' field of IMG. If IMG doesn't
1238 have one yet, it is guessed heuristically. If non-zero, MASK is an
1239 existing XImage object to use for the heuristic. */
1242 image_background_transparent (struct image *img, struct frame *f, XImagePtr_or_DC mask)
1244 if (! img->background_transparent_valid)
1245 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1247 if (img->mask)
1249 bool free_mask = !mask;
1250 #ifdef HAVE_NTGUI
1251 HGDIOBJ prev;
1252 #endif /* HAVE_NTGUI */
1254 if (free_mask)
1255 mask = image_get_x_image_or_dc (f, img, 1, &prev);
1257 img->background_transparent
1258 = (four_corners_best (mask, img->corners, img->width, img->height) == PIX_MASK_RETAIN);
1260 if (free_mask)
1261 image_unget_x_image_or_dc (img, 1, mask, prev);
1263 else
1264 img->background_transparent = 0;
1266 img->background_transparent_valid = 1;
1269 return img->background_transparent;
1272 #if defined (HAVE_PNG) || defined (HAVE_NS) \
1273 || defined (HAVE_IMAGEMAGICK) || defined (HAVE_RSVG)
1275 /* Store F's background color into *BGCOLOR. */
1276 static void
1277 x_query_frame_background_color (struct frame *f, XColor *bgcolor)
1279 #ifndef HAVE_NS
1280 bgcolor->pixel = FRAME_BACKGROUND_PIXEL (f);
1281 x_query_color (f, bgcolor);
1282 #else
1283 ns_query_color (FRAME_BACKGROUND_COLOR (f), bgcolor, 1);
1284 #endif
1287 #endif /* HAVE_PNG || HAVE_NS || HAVE_IMAGEMAGICK || HAVE_RSVG */
1289 /***********************************************************************
1290 Helper functions for X image types
1291 ***********************************************************************/
1293 /* Clear X resources of image IMG on frame F according to FLAGS.
1294 FLAGS is bitwise-or of the following masks:
1295 CLEAR_IMAGE_PIXMAP free the pixmap if any.
1296 CLEAR_IMAGE_MASK means clear the mask pixmap if any.
1297 CLEAR_IMAGE_COLORS means free colors allocated for the image, if
1298 any. */
1300 #define CLEAR_IMAGE_PIXMAP (1 << 0)
1301 #define CLEAR_IMAGE_MASK (1 << 1)
1302 #define CLEAR_IMAGE_COLORS (1 << 2)
1304 static void
1305 x_clear_image_1 (struct frame *f, struct image *img, int flags)
1307 if (flags & CLEAR_IMAGE_PIXMAP)
1309 if (img->pixmap)
1311 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
1312 img->pixmap = NO_PIXMAP;
1313 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1314 img->background_valid = 0;
1316 #ifdef HAVE_X_WINDOWS
1317 if (img->ximg)
1319 x_destroy_x_image (img->ximg);
1320 img->ximg = NULL;
1321 img->background_valid = 0;
1323 #endif
1326 if (flags & CLEAR_IMAGE_MASK)
1328 if (img->mask)
1330 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1331 img->mask = NO_PIXMAP;
1332 img->background_transparent_valid = 0;
1334 #ifdef HAVE_X_WINDOWS
1335 if (img->mask_img)
1337 x_destroy_x_image (img->mask_img);
1338 img->mask_img = NULL;
1339 img->background_transparent_valid = 0;
1341 #endif
1344 if ((flags & CLEAR_IMAGE_COLORS) && img->ncolors)
1346 /* W32_TODO: color table support. */
1347 #ifdef HAVE_X_WINDOWS
1348 x_free_colors (f, img->colors, img->ncolors);
1349 #endif /* HAVE_X_WINDOWS */
1350 xfree (img->colors);
1351 img->colors = NULL;
1352 img->ncolors = 0;
1357 /* Free X resources of image IMG which is used on frame F. */
1359 static void
1360 x_clear_image (struct frame *f, struct image *img)
1362 block_input ();
1363 #ifdef USE_CAIRO
1364 if (img->cr_data)
1365 cairo_surface_destroy ((cairo_surface_t *)img->cr_data);
1366 if (img->cr_data2) xfree (img->cr_data2);
1367 #endif
1368 x_clear_image_1 (f, img,
1369 CLEAR_IMAGE_PIXMAP | CLEAR_IMAGE_MASK | CLEAR_IMAGE_COLORS);
1370 unblock_input ();
1374 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1375 cannot be allocated, use DFLT. Add a newly allocated color to
1376 IMG->colors, so that it can be freed again. Value is the pixel
1377 color. */
1379 static unsigned long
1380 x_alloc_image_color (struct frame *f, struct image *img, Lisp_Object color_name,
1381 unsigned long dflt)
1383 XColor color;
1384 unsigned long result;
1386 eassert (STRINGP (color_name));
1388 if (x_defined_color (f, SSDATA (color_name), &color, 1)
1389 && img->ncolors < min (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *img->colors,
1390 INT_MAX))
1392 /* This isn't called frequently so we get away with simply
1393 reallocating the color vector to the needed size, here. */
1394 ptrdiff_t ncolors = img->ncolors + 1;
1395 img->colors = xrealloc (img->colors, ncolors * sizeof *img->colors);
1396 img->colors[ncolors - 1] = color.pixel;
1397 img->ncolors = ncolors;
1398 result = color.pixel;
1400 else
1401 result = dflt;
1403 return result;
1408 /***********************************************************************
1409 Image Cache
1410 ***********************************************************************/
1412 static void cache_image (struct frame *f, struct image *img);
1414 /* Return a new, initialized image cache that is allocated from the
1415 heap. Call free_image_cache to free an image cache. */
1417 struct image_cache *
1418 make_image_cache (void)
1420 struct image_cache *c = xmalloc (sizeof *c);
1422 c->size = 50;
1423 c->used = c->refcount = 0;
1424 c->images = xmalloc (c->size * sizeof *c->images);
1425 c->buckets = xzalloc (IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets);
1426 return c;
1430 /* Find an image matching SPEC in the cache, and return it. If no
1431 image is found, return NULL. */
1432 static struct image *
1433 search_image_cache (struct frame *f, Lisp_Object spec, EMACS_UINT hash)
1435 struct image *img;
1436 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1437 int i = hash % IMAGE_CACHE_BUCKETS_SIZE;
1439 if (!c) return NULL;
1441 /* If the image spec does not specify a background color, the cached
1442 image must have the same background color as the current frame.
1443 The foreground color must also match, for the sake of monochrome
1444 images.
1446 In fact, we could ignore the foreground color matching condition
1447 for color images, or if the image spec specifies :foreground;
1448 similarly we could ignore the background color matching condition
1449 for formats that don't use transparency (such as jpeg), or if the
1450 image spec specifies :background. However, the extra memory
1451 usage is probably negligible in practice, so we don't bother. */
1453 for (img = c->buckets[i]; img; img = img->next)
1454 if (img->hash == hash
1455 && !NILP (Fequal (img->spec, spec))
1456 && img->frame_foreground == FRAME_FOREGROUND_PIXEL (f)
1457 && img->frame_background == FRAME_BACKGROUND_PIXEL (f))
1458 break;
1459 return img;
1463 /* Search frame F for an image with spec SPEC, and free it. */
1465 static void
1466 uncache_image (struct frame *f, Lisp_Object spec)
1468 struct image *img = search_image_cache (f, spec, sxhash (spec, 0));
1469 if (img)
1471 free_image (f, img);
1472 /* As display glyphs may still be referring to the image ID, we
1473 must garbage the frame (Bug#6426). */
1474 SET_FRAME_GARBAGED (f);
1479 /* Free image cache of frame F. Be aware that X frames share images
1480 caches. */
1482 void
1483 free_image_cache (struct frame *f)
1485 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1486 if (c)
1488 ptrdiff_t i;
1490 /* Cache should not be referenced by any frame when freed. */
1491 eassert (c->refcount == 0);
1493 for (i = 0; i < c->used; ++i)
1494 free_image (f, c->images[i]);
1495 xfree (c->images);
1496 xfree (c->buckets);
1497 xfree (c);
1498 FRAME_IMAGE_CACHE (f) = NULL;
1503 /* Clear image cache of frame F. FILTER=t means free all images.
1504 FILTER=nil means clear only images that haven't been
1505 displayed for some time.
1506 Else, only free the images which have FILTER in their `dependencies'.
1507 Should be called from time to time to reduce the number of loaded images.
1508 If image-cache-eviction-delay is non-nil, this frees images in the cache
1509 which weren't displayed for at least that many seconds. */
1511 static void
1512 clear_image_cache (struct frame *f, Lisp_Object filter)
1514 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1516 if (c)
1518 ptrdiff_t i, nfreed = 0;
1520 /* Block input so that we won't be interrupted by a SIGIO
1521 while being in an inconsistent state. */
1522 block_input ();
1524 if (!NILP (filter))
1526 /* Filter image cache. */
1527 for (i = 0; i < c->used; ++i)
1529 struct image *img = c->images[i];
1530 if (img && (EQ (Qt, filter)
1531 || !NILP (Fmember (filter, img->dependencies))))
1533 free_image (f, img);
1534 ++nfreed;
1538 else if (INTEGERP (Vimage_cache_eviction_delay))
1540 /* Free cache based on timestamp. */
1541 struct timespec old, t;
1542 double delay;
1543 ptrdiff_t nimages = 0;
1545 for (i = 0; i < c->used; ++i)
1546 if (c->images[i])
1547 nimages++;
1549 /* If the number of cached images has grown unusually large,
1550 decrease the cache eviction delay (Bug#6230). */
1551 delay = XINT (Vimage_cache_eviction_delay);
1552 if (nimages > 40)
1553 delay = 1600 * delay / nimages / nimages;
1554 delay = max (delay, 1);
1556 t = current_timespec ();
1557 old = timespec_sub (t, dtotimespec (delay));
1559 for (i = 0; i < c->used; ++i)
1561 struct image *img = c->images[i];
1562 if (img && timespec_cmp (img->timestamp, old) < 0)
1564 free_image (f, img);
1565 ++nfreed;
1570 /* We may be clearing the image cache because, for example,
1571 Emacs was iconified for a longer period of time. In that
1572 case, current matrices may still contain references to
1573 images freed above. So, clear these matrices. */
1574 if (nfreed)
1576 Lisp_Object tail, frame;
1578 FOR_EACH_FRAME (tail, frame)
1580 struct frame *fr = XFRAME (frame);
1581 if (FRAME_IMAGE_CACHE (fr) == c)
1582 clear_current_matrices (fr);
1585 windows_or_buffers_changed = 19;
1588 unblock_input ();
1592 void
1593 clear_image_caches (Lisp_Object filter)
1595 /* FIXME: We want to do
1596 * struct terminal *t;
1597 * for (t = terminal_list; t; t = t->next_terminal)
1598 * clear_image_cache (t, filter); */
1599 Lisp_Object tail, frame;
1600 FOR_EACH_FRAME (tail, frame)
1601 if (FRAME_WINDOW_P (XFRAME (frame)))
1602 clear_image_cache (XFRAME (frame), filter);
1605 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
1606 0, 1, 0,
1607 doc: /* Clear the image cache.
1608 FILTER nil or a frame means clear all images in the selected frame.
1609 FILTER t means clear the image caches of all frames.
1610 Anything else, means only clear those images which refer to FILTER,
1611 which is then usually a filename. */)
1612 (Lisp_Object filter)
1614 if (!(EQ (filter, Qnil) || FRAMEP (filter)))
1615 clear_image_caches (filter);
1616 else
1617 clear_image_cache (decode_window_system_frame (filter), Qt);
1619 return Qnil;
1623 DEFUN ("image-flush", Fimage_flush, Simage_flush,
1624 1, 2, 0,
1625 doc: /* Flush the image with specification SPEC on frame FRAME.
1626 This removes the image from the Emacs image cache. If SPEC specifies
1627 an image file, the next redisplay of this image will read from the
1628 current contents of that file.
1630 FRAME nil or omitted means use the selected frame.
1631 FRAME t means refresh the image on all frames. */)
1632 (Lisp_Object spec, Lisp_Object frame)
1634 if (!valid_image_p (spec))
1635 error ("Invalid image specification");
1637 if (EQ (frame, Qt))
1639 Lisp_Object tail;
1640 FOR_EACH_FRAME (tail, frame)
1642 struct frame *f = XFRAME (frame);
1643 if (FRAME_WINDOW_P (f))
1644 uncache_image (f, spec);
1647 else
1648 uncache_image (decode_window_system_frame (frame), spec);
1650 return Qnil;
1654 /* Compute masks and transform image IMG on frame F, as specified
1655 by the image's specification, */
1657 static void
1658 postprocess_image (struct frame *f, struct image *img)
1660 /* Manipulation of the image's mask. */
1661 if (img->pixmap)
1663 Lisp_Object conversion, spec;
1664 Lisp_Object mask;
1666 spec = img->spec;
1668 /* `:heuristic-mask t'
1669 `:mask heuristic'
1670 means build a mask heuristically.
1671 `:heuristic-mask (R G B)'
1672 `:mask (heuristic (R G B))'
1673 means build a mask from color (R G B) in the
1674 image.
1675 `:mask nil'
1676 means remove a mask, if any. */
1678 mask = image_spec_value (spec, QCheuristic_mask, NULL);
1679 if (!NILP (mask))
1680 x_build_heuristic_mask (f, img, mask);
1681 else
1683 bool found_p;
1685 mask = image_spec_value (spec, QCmask, &found_p);
1687 if (EQ (mask, Qheuristic))
1688 x_build_heuristic_mask (f, img, Qt);
1689 else if (CONSP (mask)
1690 && EQ (XCAR (mask), Qheuristic))
1692 if (CONSP (XCDR (mask)))
1693 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
1694 else
1695 x_build_heuristic_mask (f, img, XCDR (mask));
1697 else if (NILP (mask) && found_p && img->mask)
1698 x_clear_image_1 (f, img, CLEAR_IMAGE_MASK);
1702 /* Should we apply an image transformation algorithm? */
1703 conversion = image_spec_value (spec, QCconversion, NULL);
1704 if (EQ (conversion, Qdisabled))
1705 x_disable_image (f, img);
1706 else if (EQ (conversion, Qlaplace))
1707 x_laplace (f, img);
1708 else if (EQ (conversion, Qemboss))
1709 x_emboss (f, img);
1710 else if (CONSP (conversion)
1711 && EQ (XCAR (conversion), Qedge_detection))
1713 Lisp_Object tem;
1714 tem = XCDR (conversion);
1715 if (CONSP (tem))
1716 x_edge_detection (f, img,
1717 Fplist_get (tem, QCmatrix),
1718 Fplist_get (tem, QCcolor_adjustment));
1724 /* Return the id of image with Lisp specification SPEC on frame F.
1725 SPEC must be a valid Lisp image specification (see valid_image_p). */
1727 ptrdiff_t
1728 lookup_image (struct frame *f, Lisp_Object spec)
1730 struct image *img;
1731 EMACS_UINT hash;
1733 /* F must be a window-system frame, and SPEC must be a valid image
1734 specification. */
1735 eassert (FRAME_WINDOW_P (f));
1736 eassert (valid_image_p (spec));
1738 /* Look up SPEC in the hash table of the image cache. */
1739 hash = sxhash (spec, 0);
1740 img = search_image_cache (f, spec, hash);
1741 if (img && img->load_failed_p)
1743 free_image (f, img);
1744 img = NULL;
1747 /* If not found, create a new image and cache it. */
1748 if (img == NULL)
1750 block_input ();
1751 img = make_image (spec, hash);
1752 cache_image (f, img);
1753 img->load_failed_p = ! img->type->load (f, img);
1754 img->frame_foreground = FRAME_FOREGROUND_PIXEL (f);
1755 img->frame_background = FRAME_BACKGROUND_PIXEL (f);
1757 /* If we can't load the image, and we don't have a width and
1758 height, use some arbitrary width and height so that we can
1759 draw a rectangle for it. */
1760 if (img->load_failed_p)
1762 Lisp_Object value;
1764 value = image_spec_value (spec, QCwidth, NULL);
1765 img->width = (INTEGERP (value)
1766 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
1767 value = image_spec_value (spec, QCheight, NULL);
1768 img->height = (INTEGERP (value)
1769 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
1771 else
1773 /* Handle image type independent image attributes
1774 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1775 `:background COLOR'. */
1776 Lisp_Object ascent, margin, relief, bg;
1777 int relief_bound;
1779 ascent = image_spec_value (spec, QCascent, NULL);
1780 if (INTEGERP (ascent))
1781 img->ascent = XFASTINT (ascent);
1782 else if (EQ (ascent, Qcenter))
1783 img->ascent = CENTERED_IMAGE_ASCENT;
1785 margin = image_spec_value (spec, QCmargin, NULL);
1786 if (INTEGERP (margin))
1787 img->vmargin = img->hmargin = XFASTINT (margin);
1788 else if (CONSP (margin))
1790 img->hmargin = XFASTINT (XCAR (margin));
1791 img->vmargin = XFASTINT (XCDR (margin));
1794 relief = image_spec_value (spec, QCrelief, NULL);
1795 relief_bound = INT_MAX - max (img->hmargin, img->vmargin);
1796 if (RANGED_INTEGERP (- relief_bound, relief, relief_bound))
1798 img->relief = XINT (relief);
1799 img->hmargin += eabs (img->relief);
1800 img->vmargin += eabs (img->relief);
1803 if (! img->background_valid)
1805 bg = image_spec_value (img->spec, QCbackground, NULL);
1806 if (!NILP (bg))
1808 img->background
1809 = x_alloc_image_color (f, img, bg,
1810 FRAME_BACKGROUND_PIXEL (f));
1811 img->background_valid = 1;
1815 /* Do image transformations and compute masks, unless we
1816 don't have the image yet. */
1817 if (!EQ (builtin_lisp_symbol (img->type->type), Qpostscript))
1818 postprocess_image (f, img);
1821 unblock_input ();
1824 /* We're using IMG, so set its timestamp to `now'. */
1825 img->timestamp = current_timespec ();
1827 /* Value is the image id. */
1828 return img->id;
1832 /* Cache image IMG in the image cache of frame F. */
1834 static void
1835 cache_image (struct frame *f, struct image *img)
1837 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1838 ptrdiff_t i;
1840 if (!c)
1841 c = FRAME_IMAGE_CACHE (f) = make_image_cache ();
1843 /* Find a free slot in c->images. */
1844 for (i = 0; i < c->used; ++i)
1845 if (c->images[i] == NULL)
1846 break;
1848 /* If no free slot found, maybe enlarge c->images. */
1849 if (i == c->used && c->used == c->size)
1850 c->images = xpalloc (c->images, &c->size, 1, -1, sizeof *c->images);
1852 /* Add IMG to c->images, and assign IMG an id. */
1853 c->images[i] = img;
1854 img->id = i;
1855 if (i == c->used)
1856 ++c->used;
1858 /* Add IMG to the cache's hash table. */
1859 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
1860 img->next = c->buckets[i];
1861 if (img->next)
1862 img->next->prev = img;
1863 img->prev = NULL;
1864 c->buckets[i] = img;
1868 /* Call FN on every image in the image cache of frame F. Used to mark
1869 Lisp Objects in the image cache. */
1871 /* Mark Lisp objects in image IMG. */
1873 static void
1874 mark_image (struct image *img)
1876 mark_object (img->spec);
1877 mark_object (img->dependencies);
1879 if (!NILP (img->lisp_data))
1880 mark_object (img->lisp_data);
1884 void
1885 mark_image_cache (struct image_cache *c)
1887 if (c)
1889 ptrdiff_t i;
1890 for (i = 0; i < c->used; ++i)
1891 if (c->images[i])
1892 mark_image (c->images[i]);
1898 /***********************************************************************
1899 X / NS / W32 support code
1900 ***********************************************************************/
1902 /* Return true if XIMG's size WIDTH x HEIGHT doesn't break the
1903 windowing system.
1904 WIDTH and HEIGHT must both be positive.
1905 If XIMG is null, assume it is a bitmap. */
1906 static bool
1907 x_check_image_size (XImagePtr ximg, int width, int height)
1909 #ifdef HAVE_X_WINDOWS
1910 /* Respect Xlib's limits: it cannot deal with images that have more
1911 than INT_MAX (and/or UINT_MAX) bytes. And respect Emacs's limits
1912 of PTRDIFF_MAX (and/or SIZE_MAX) bytes for any object. */
1913 enum
1915 XLIB_BYTES_MAX = min (INT_MAX, UINT_MAX),
1916 X_IMAGE_BYTES_MAX = min (XLIB_BYTES_MAX, min (PTRDIFF_MAX, SIZE_MAX))
1919 int bitmap_pad, depth, bytes_per_line;
1920 if (ximg)
1922 bitmap_pad = ximg->bitmap_pad;
1923 depth = ximg->depth;
1924 bytes_per_line = ximg->bytes_per_line;
1926 else
1928 bitmap_pad = 8;
1929 depth = 1;
1930 bytes_per_line = (width >> 3) + ((width & 7) != 0);
1932 return (width <= (INT_MAX - (bitmap_pad - 1)) / depth
1933 && height <= X_IMAGE_BYTES_MAX / bytes_per_line);
1934 #else
1935 /* FIXME: Implement this check for the HAVE_NS and HAVE_NTGUI cases.
1936 For now, assume that every image size is allowed on these systems. */
1937 return 1;
1938 #endif
1941 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1942 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1943 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1944 via xmalloc. Print error messages via image_error if an error
1945 occurs. Value is true if successful.
1947 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1948 should indicate the bit depth of the image. */
1950 static bool
1951 x_create_x_image_and_pixmap (struct frame *f, int width, int height, int depth,
1952 XImagePtr *ximg, Pixmap *pixmap)
1954 #ifdef HAVE_X_WINDOWS
1955 Display *display = FRAME_X_DISPLAY (f);
1956 Drawable drawable = FRAME_X_DRAWABLE (f);
1957 Screen *screen = FRAME_X_SCREEN (f);
1959 eassert (input_blocked_p ());
1961 if (depth <= 0)
1962 depth = DefaultDepthOfScreen (screen);
1963 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
1964 depth, ZPixmap, 0, NULL, width, height,
1965 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
1966 if (*ximg == NULL)
1968 image_error ("Unable to allocate X image");
1969 return 0;
1972 if (! x_check_image_size (*ximg, width, height))
1974 x_destroy_x_image (*ximg);
1975 *ximg = NULL;
1976 image_error ("Image too large (%dx%d)",
1977 make_number (width), make_number (height));
1978 return 0;
1981 /* Allocate image raster. */
1982 (*ximg)->data = xmalloc ((*ximg)->bytes_per_line * height);
1984 /* Allocate a pixmap of the same size. */
1985 *pixmap = XCreatePixmap (display, drawable, width, height, depth);
1986 if (*pixmap == NO_PIXMAP)
1988 x_destroy_x_image (*ximg);
1989 *ximg = NULL;
1990 image_error ("Unable to create X pixmap");
1991 return 0;
1994 return 1;
1995 #endif /* HAVE_X_WINDOWS */
1997 #ifdef HAVE_NTGUI
1999 BITMAPINFOHEADER *header;
2000 HDC hdc;
2001 int scanline_width_bits;
2002 int remainder;
2003 int palette_colors = 0;
2005 if (depth == 0)
2006 depth = 24;
2008 if (depth != 1 && depth != 4 && depth != 8
2009 && depth != 16 && depth != 24 && depth != 32)
2011 image_error ("Invalid image bit depth specified");
2012 return 0;
2015 scanline_width_bits = width * depth;
2016 remainder = scanline_width_bits % 32;
2018 if (remainder)
2019 scanline_width_bits += 32 - remainder;
2021 /* Bitmaps with a depth less than 16 need a palette. */
2022 /* BITMAPINFO structure already contains the first RGBQUAD. */
2023 if (depth < 16)
2024 palette_colors = 1 << (depth - 1);
2026 *ximg = xmalloc (sizeof (XImage) + palette_colors * sizeof (RGBQUAD));
2028 header = &(*ximg)->info.bmiHeader;
2029 memset (&(*ximg)->info, 0, sizeof (BITMAPINFO));
2030 header->biSize = sizeof (*header);
2031 header->biWidth = width;
2032 header->biHeight = -height; /* negative indicates a top-down bitmap. */
2033 header->biPlanes = 1;
2034 header->biBitCount = depth;
2035 header->biCompression = BI_RGB;
2036 header->biClrUsed = palette_colors;
2038 /* TODO: fill in palette. */
2039 if (depth == 1)
2041 (*ximg)->info.bmiColors[0].rgbBlue = 0;
2042 (*ximg)->info.bmiColors[0].rgbGreen = 0;
2043 (*ximg)->info.bmiColors[0].rgbRed = 0;
2044 (*ximg)->info.bmiColors[0].rgbReserved = 0;
2045 (*ximg)->info.bmiColors[1].rgbBlue = 255;
2046 (*ximg)->info.bmiColors[1].rgbGreen = 255;
2047 (*ximg)->info.bmiColors[1].rgbRed = 255;
2048 (*ximg)->info.bmiColors[1].rgbReserved = 0;
2051 hdc = get_frame_dc (f);
2053 /* Create a DIBSection and raster array for the bitmap,
2054 and store its handle in *pixmap. */
2055 *pixmap = CreateDIBSection (hdc, &((*ximg)->info),
2056 (depth < 16) ? DIB_PAL_COLORS : DIB_RGB_COLORS,
2057 /* casting avoids a GCC warning */
2058 (void **)&((*ximg)->data), NULL, 0);
2060 /* Realize display palette and garbage all frames. */
2061 release_frame_dc (f, hdc);
2063 if (*pixmap == NULL)
2065 DWORD err = GetLastError ();
2066 Lisp_Object errcode;
2067 /* All system errors are < 10000, so the following is safe. */
2068 XSETINT (errcode, err);
2069 image_error ("Unable to create bitmap, error code %d", errcode);
2070 x_destroy_x_image (*ximg);
2071 *ximg = NULL;
2072 return 0;
2075 return 1;
2077 #endif /* HAVE_NTGUI */
2079 #ifdef HAVE_NS
2080 *pixmap = ns_image_for_XPM (width, height, depth);
2081 if (*pixmap == 0)
2083 *ximg = NULL;
2084 image_error ("Unable to allocate NSImage for XPM pixmap");
2085 return 0;
2087 *ximg = *pixmap;
2088 return 1;
2089 #endif
2093 /* Destroy XImage XIMG. Free XIMG->data. */
2095 static void
2096 x_destroy_x_image (XImagePtr ximg)
2098 eassert (input_blocked_p ());
2099 if (ximg)
2101 #ifdef HAVE_X_WINDOWS
2102 xfree (ximg->data);
2103 ximg->data = NULL;
2104 XDestroyImage (ximg);
2105 #endif /* HAVE_X_WINDOWS */
2106 #ifdef HAVE_NTGUI
2107 /* Data will be freed by DestroyObject. */
2108 ximg->data = NULL;
2109 xfree (ximg);
2110 #endif /* HAVE_NTGUI */
2111 #ifdef HAVE_NS
2112 ns_release_object (ximg);
2113 #endif /* HAVE_NS */
2118 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2119 are width and height of both the image and pixmap. */
2121 static void
2122 x_put_x_image (struct frame *f, XImagePtr ximg, Pixmap pixmap, int width, int height)
2124 #ifdef HAVE_X_WINDOWS
2125 GC gc;
2127 eassert (input_blocked_p ());
2128 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
2129 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
2130 XFreeGC (FRAME_X_DISPLAY (f), gc);
2131 #endif /* HAVE_X_WINDOWS */
2133 #ifdef HAVE_NTGUI
2134 #if 0 /* I don't think this is necessary looking at where it is used. */
2135 HDC hdc = get_frame_dc (f);
2136 SetDIBits (hdc, pixmap, 0, height, ximg->data, &(ximg->info), DIB_RGB_COLORS);
2137 release_frame_dc (f, hdc);
2138 #endif
2139 #endif /* HAVE_NTGUI */
2141 #ifdef HAVE_NS
2142 eassert (ximg == pixmap);
2143 ns_retain_object (ximg);
2144 #endif
2147 /* Thin wrapper for x_create_x_image_and_pixmap, so that it matches
2148 with image_put_x_image. */
2150 static bool
2151 image_create_x_image_and_pixmap (struct frame *f, struct image *img,
2152 int width, int height, int depth,
2153 XImagePtr *ximg, bool mask_p)
2155 eassert ((!mask_p ? img->pixmap : img->mask) == NO_PIXMAP);
2157 return x_create_x_image_and_pixmap (f, width, height, depth, ximg,
2158 !mask_p ? &img->pixmap : &img->mask);
2161 /* Put X image XIMG into image IMG on frame F, as a mask if and only
2162 if MASK_P. On X, this simply records XIMG on a member of IMG, so
2163 it can be put into the pixmap afterwards via image_sync_to_pixmaps.
2164 On the other platforms, it puts XIMG into the pixmap, then frees
2165 the X image and its buffer. */
2167 static void
2168 image_put_x_image (struct frame *f, struct image *img, XImagePtr ximg,
2169 bool mask_p)
2171 #ifdef HAVE_X_WINDOWS
2172 if (!mask_p)
2174 eassert (img->ximg == NULL);
2175 img->ximg = ximg;
2177 else
2179 eassert (img->mask_img == NULL);
2180 img->mask_img = ximg;
2182 #else
2183 x_put_x_image (f, ximg, !mask_p ? img->pixmap : img->mask,
2184 img->width, img->height);
2185 x_destroy_x_image (ximg);
2186 #endif
2189 #ifdef HAVE_X_WINDOWS
2190 /* Put the X images recorded in IMG on frame F into pixmaps, then free
2191 the X images and their buffers. */
2193 static void
2194 image_sync_to_pixmaps (struct frame *f, struct image *img)
2196 if (img->ximg)
2198 x_put_x_image (f, img->ximg, img->pixmap, img->width, img->height);
2199 x_destroy_x_image (img->ximg);
2200 img->ximg = NULL;
2202 if (img->mask_img)
2204 x_put_x_image (f, img->mask_img, img->mask, img->width, img->height);
2205 x_destroy_x_image (img->mask_img);
2206 img->mask_img = NULL;
2209 #endif
2211 #ifdef HAVE_NTGUI
2212 /* Create a memory device context for IMG on frame F. It stores the
2213 currently selected GDI object into *PREV for future restoration by
2214 image_unget_x_image_or_dc. */
2216 static XImagePtr_or_DC
2217 image_get_x_image_or_dc (struct frame *f, struct image *img, bool mask_p,
2218 HGDIOBJ *prev)
2220 HDC frame_dc = get_frame_dc (f);
2221 XImagePtr_or_DC ximg = CreateCompatibleDC (frame_dc);
2223 release_frame_dc (f, frame_dc);
2224 *prev = SelectObject (ximg, !mask_p ? img->pixmap : img->mask);
2226 return ximg;
2229 static void
2230 image_unget_x_image_or_dc (struct image *img, bool mask_p,
2231 XImagePtr_or_DC ximg, HGDIOBJ prev)
2233 SelectObject (ximg, prev);
2234 DeleteDC (ximg);
2236 #else /* !HAVE_NTGUI */
2237 /* Get the X image for IMG on frame F. The resulting X image data
2238 should be treated as read-only at least on X. */
2240 static XImagePtr
2241 image_get_x_image (struct frame *f, struct image *img, bool mask_p)
2243 #ifdef HAVE_X_WINDOWS
2244 XImagePtr ximg_in_img = !mask_p ? img->ximg : img->mask_img;
2246 if (ximg_in_img)
2247 return ximg_in_img;
2248 else
2249 return XGetImage (FRAME_X_DISPLAY (f), !mask_p ? img->pixmap : img->mask,
2250 0, 0, img->width, img->height, ~0, ZPixmap);
2251 #elif defined (HAVE_NS)
2252 XImagePtr pixmap = !mask_p ? img->pixmap : img->mask;
2254 ns_retain_object (pixmap);
2255 return pixmap;
2256 #endif
2259 static void
2260 image_unget_x_image (struct image *img, bool mask_p, XImagePtr ximg)
2262 #ifdef HAVE_X_WINDOWS
2263 XImagePtr ximg_in_img = !mask_p ? img->ximg : img->mask_img;
2265 if (ximg_in_img)
2266 eassert (ximg == ximg_in_img);
2267 else
2268 XDestroyImage (ximg);
2269 #elif defined (HAVE_NS)
2270 ns_release_object (ximg);
2271 #endif
2273 #endif /* !HAVE_NTGUI */
2276 /***********************************************************************
2277 File Handling
2278 ***********************************************************************/
2280 /* Find image file FILE. Look in data-directory/images, then
2281 x-bitmap-file-path. Value is the full name of the file
2282 found, or nil if not found. If PFD is nonnull store into *PFD a
2283 readable file descriptor for the file, opened in binary mode. If
2284 PFD is null, do not open the file. */
2286 static Lisp_Object
2287 x_find_image_fd (Lisp_Object file, int *pfd)
2289 Lisp_Object file_found, search_path;
2290 int fd;
2292 /* TODO I think this should use something like image-load-path
2293 instead. Unfortunately, that can contain non-string elements. */
2294 search_path = Fcons (Fexpand_file_name (build_string ("images"),
2295 Vdata_directory),
2296 Vx_bitmap_file_path);
2298 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2299 fd = openp (search_path, file, Qnil, &file_found,
2300 pfd ? Qt : make_number (R_OK), false);
2301 if (fd >= 0 || fd == -2)
2303 file_found = ENCODE_FILE (file_found);
2304 if (fd == -2)
2306 /* The file exists locally, but has a file handler. (This
2307 happens, e.g., under Auto Image File Mode.) 'openp'
2308 didn't open the file, so we should, because the caller
2309 expects that. */
2310 fd = emacs_open (SSDATA (file_found), O_RDONLY, 0);
2313 else /* fd < 0, but not -2 */
2314 return Qnil;
2315 if (pfd)
2316 *pfd = fd;
2317 return file_found;
2320 /* Find image file FILE. Look in data-directory/images, then
2321 x-bitmap-file-path. Value is the encoded full name of the file
2322 found, or nil if not found. */
2324 Lisp_Object
2325 x_find_image_file (Lisp_Object file)
2327 return x_find_image_fd (file, 0);
2330 /* Read FILE into memory. Value is a pointer to a buffer allocated
2331 with xmalloc holding FILE's contents. Value is null if an error
2332 occurred. FD is a file descriptor open for reading FILE. Set
2333 *SIZE to the size of the file. */
2335 static char *
2336 slurp_file (int fd, ptrdiff_t *size)
2338 FILE *fp = fdopen (fd, "rb");
2340 char *buf = NULL;
2341 struct stat st;
2343 if (fp)
2345 ptrdiff_t count = SPECPDL_INDEX ();
2346 record_unwind_protect_ptr (fclose_unwind, fp);
2348 if (fstat (fileno (fp), &st) == 0
2349 && 0 <= st.st_size && st.st_size < min (PTRDIFF_MAX, SIZE_MAX))
2351 /* Report an error if we read past the purported EOF.
2352 This can happen if the file grows as we read it. */
2353 ptrdiff_t buflen = st.st_size;
2354 buf = xmalloc (buflen + 1);
2355 if (fread (buf, 1, buflen + 1, fp) == buflen)
2356 *size = buflen;
2357 else
2359 xfree (buf);
2360 buf = NULL;
2364 unbind_to (count, Qnil);
2367 return buf;
2372 /***********************************************************************
2373 XBM images
2374 ***********************************************************************/
2376 static bool xbm_load (struct frame *f, struct image *img);
2377 static bool xbm_image_p (Lisp_Object object);
2378 static bool xbm_file_p (Lisp_Object);
2381 /* Indices of image specification fields in xbm_format, below. */
2383 enum xbm_keyword_index
2385 XBM_TYPE,
2386 XBM_FILE,
2387 XBM_WIDTH,
2388 XBM_HEIGHT,
2389 XBM_DATA,
2390 XBM_FOREGROUND,
2391 XBM_BACKGROUND,
2392 XBM_ASCENT,
2393 XBM_MARGIN,
2394 XBM_RELIEF,
2395 XBM_ALGORITHM,
2396 XBM_HEURISTIC_MASK,
2397 XBM_MASK,
2398 XBM_LAST
2401 /* Vector of image_keyword structures describing the format
2402 of valid XBM image specifications. */
2404 static const struct image_keyword xbm_format[XBM_LAST] =
2406 {":type", IMAGE_SYMBOL_VALUE, 1},
2407 {":file", IMAGE_STRING_VALUE, 0},
2408 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2409 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2410 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2411 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
2412 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
2413 {":ascent", IMAGE_ASCENT_VALUE, 0},
2414 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
2415 {":relief", IMAGE_INTEGER_VALUE, 0},
2416 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2417 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2418 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
2421 /* Structure describing the image type XBM. */
2423 static struct image_type xbm_type =
2425 SYMBOL_INDEX (Qxbm),
2426 xbm_image_p,
2427 xbm_load,
2428 x_clear_image,
2429 NULL,
2430 NULL
2433 /* Tokens returned from xbm_scan. */
2435 enum xbm_token
2437 XBM_TK_IDENT = 256,
2438 XBM_TK_NUMBER
2442 /* Return true if OBJECT is a valid XBM-type image specification.
2443 A valid specification is a list starting with the symbol `image'
2444 The rest of the list is a property list which must contain an
2445 entry `:type xbm'.
2447 If the specification specifies a file to load, it must contain
2448 an entry `:file FILENAME' where FILENAME is a string.
2450 If the specification is for a bitmap loaded from memory it must
2451 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2452 WIDTH and HEIGHT are integers > 0. DATA may be:
2454 1. a string large enough to hold the bitmap data, i.e. it must
2455 have a size >= (WIDTH + 7) / 8 * HEIGHT
2457 2. a bool-vector of size >= WIDTH * HEIGHT
2459 3. a vector of strings or bool-vectors, one for each line of the
2460 bitmap.
2462 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2463 may not be specified in this case because they are defined in the
2464 XBM file.
2466 Both the file and data forms may contain the additional entries
2467 `:background COLOR' and `:foreground COLOR'. If not present,
2468 foreground and background of the frame on which the image is
2469 displayed is used. */
2471 static bool
2472 xbm_image_p (Lisp_Object object)
2474 struct image_keyword kw[XBM_LAST];
2476 memcpy (kw, xbm_format, sizeof kw);
2477 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
2478 return 0;
2480 eassert (EQ (kw[XBM_TYPE].value, Qxbm));
2482 if (kw[XBM_FILE].count)
2484 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
2485 return 0;
2487 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
2489 /* In-memory XBM file. */
2490 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
2491 return 0;
2493 else
2495 Lisp_Object data;
2496 int width, height;
2498 /* Entries for `:width', `:height' and `:data' must be present. */
2499 if (!kw[XBM_WIDTH].count
2500 || !kw[XBM_HEIGHT].count
2501 || !kw[XBM_DATA].count)
2502 return 0;
2504 data = kw[XBM_DATA].value;
2505 width = XFASTINT (kw[XBM_WIDTH].value);
2506 height = XFASTINT (kw[XBM_HEIGHT].value);
2508 /* Check type of data, and width and height against contents of
2509 data. */
2510 if (VECTORP (data))
2512 EMACS_INT i;
2514 /* Number of elements of the vector must be >= height. */
2515 if (ASIZE (data) < height)
2516 return 0;
2518 /* Each string or bool-vector in data must be large enough
2519 for one line of the image. */
2520 for (i = 0; i < height; ++i)
2522 Lisp_Object elt = AREF (data, i);
2524 if (STRINGP (elt))
2526 if (SCHARS (elt)
2527 < (width + CHAR_BIT - 1) / CHAR_BIT)
2528 return 0;
2530 else if (BOOL_VECTOR_P (elt))
2532 if (bool_vector_size (elt) < width)
2533 return 0;
2535 else
2536 return 0;
2539 else if (STRINGP (data))
2541 if (SCHARS (data)
2542 < (width + CHAR_BIT - 1) / CHAR_BIT * height)
2543 return 0;
2545 else if (BOOL_VECTOR_P (data))
2547 if (bool_vector_size (data) / height < width)
2548 return 0;
2550 else
2551 return 0;
2554 return 1;
2558 /* Scan a bitmap file. FP is the stream to read from. Value is
2559 either an enumerator from enum xbm_token, or a character for a
2560 single-character token, or 0 at end of file. If scanning an
2561 identifier, store the lexeme of the identifier in SVAL. If
2562 scanning a number, store its value in *IVAL. */
2564 static int
2565 xbm_scan (char **s, char *end, char *sval, int *ival)
2567 unsigned char c;
2569 loop:
2571 /* Skip white space. */
2572 while (*s < end && (c = *(*s)++, c_isspace (c)))
2575 if (*s >= end)
2576 c = 0;
2577 else if (c_isdigit (c))
2579 int value = 0, digit;
2581 if (c == '0' && *s < end)
2583 c = *(*s)++;
2584 if (c == 'x' || c == 'X')
2586 while (*s < end)
2588 c = *(*s)++;
2589 if (c_isdigit (c))
2590 digit = c - '0';
2591 else if (c >= 'a' && c <= 'f')
2592 digit = c - 'a' + 10;
2593 else if (c >= 'A' && c <= 'F')
2594 digit = c - 'A' + 10;
2595 else
2596 break;
2597 value = 16 * value + digit;
2600 else if (c_isdigit (c))
2602 value = c - '0';
2603 while (*s < end
2604 && (c = *(*s)++, c_isdigit (c)))
2605 value = 8 * value + c - '0';
2608 else
2610 value = c - '0';
2611 while (*s < end
2612 && (c = *(*s)++, c_isdigit (c)))
2613 value = 10 * value + c - '0';
2616 if (*s < end)
2617 *s = *s - 1;
2618 *ival = value;
2619 return XBM_TK_NUMBER;
2621 else if (c_isalpha (c) || c == '_')
2623 *sval++ = c;
2624 while (*s < end
2625 && (c = *(*s)++, (c_isalnum (c) || c == '_')))
2626 *sval++ = c;
2627 *sval = 0;
2628 if (*s < end)
2629 *s = *s - 1;
2630 return XBM_TK_IDENT;
2632 else if (c == '/' && **s == '*')
2634 /* C-style comment. */
2635 ++*s;
2636 while (**s && (**s != '*' || *(*s + 1) != '/'))
2637 ++*s;
2638 if (**s)
2640 *s += 2;
2641 goto loop;
2645 return c;
2648 #ifdef HAVE_NTGUI
2650 /* Create a Windows bitmap from X bitmap data. */
2651 static HBITMAP
2652 w32_create_pixmap_from_bitmap_data (int width, int height, char *data)
2654 static unsigned char swap_nibble[16]
2655 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2656 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2657 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2658 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2659 int i, j, w1, w2;
2660 unsigned char *bits, *p;
2661 HBITMAP bmp;
2663 w1 = (width + 7) / 8; /* nb of 8bits elt in X bitmap */
2664 w2 = ((width + 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2665 bits = alloca (height * w2);
2666 memset (bits, 0, height * w2);
2667 for (i = 0; i < height; i++)
2669 p = bits + i*w2;
2670 for (j = 0; j < w1; j++)
2672 /* Bitswap XBM bytes to match how Windows does things. */
2673 unsigned char c = *data++;
2674 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
2675 | (swap_nibble[(c>>4) & 0xf]));
2678 bmp = CreateBitmap (width, height, 1, 1, (char *) bits);
2680 return bmp;
2683 static void
2684 convert_mono_to_color_image (struct frame *f, struct image *img,
2685 COLORREF foreground, COLORREF background)
2687 HDC hdc, old_img_dc, new_img_dc;
2688 HGDIOBJ old_prev, new_prev;
2689 HBITMAP new_pixmap;
2691 hdc = get_frame_dc (f);
2692 old_img_dc = CreateCompatibleDC (hdc);
2693 new_img_dc = CreateCompatibleDC (hdc);
2694 new_pixmap = CreateCompatibleBitmap (hdc, img->width, img->height);
2695 release_frame_dc (f, hdc);
2696 old_prev = SelectObject (old_img_dc, img->pixmap);
2697 new_prev = SelectObject (new_img_dc, new_pixmap);
2698 /* Windows convention for mono bitmaps is black = background,
2699 white = foreground. */
2700 SetTextColor (new_img_dc, background);
2701 SetBkColor (new_img_dc, foreground);
2703 BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc,
2704 0, 0, SRCCOPY);
2706 SelectObject (old_img_dc, old_prev);
2707 SelectObject (new_img_dc, new_prev);
2708 DeleteDC (old_img_dc);
2709 DeleteDC (new_img_dc);
2710 DeleteObject (img->pixmap);
2711 if (new_pixmap == 0)
2712 fprintf (stderr, "Failed to convert image to color.\n");
2713 else
2714 img->pixmap = new_pixmap;
2717 #define XBM_BIT_SHUFFLE(b) (~(b))
2719 #else
2721 #define XBM_BIT_SHUFFLE(b) (b)
2723 #endif /* HAVE_NTGUI */
2726 static void
2727 Create_Pixmap_From_Bitmap_Data (struct frame *f, struct image *img, char *data,
2728 RGB_PIXEL_COLOR fg, RGB_PIXEL_COLOR bg,
2729 bool non_default_colors)
2731 #ifdef HAVE_NTGUI
2732 img->pixmap
2733 = w32_create_pixmap_from_bitmap_data (img->width, img->height, data);
2735 /* If colors were specified, transfer the bitmap to a color one. */
2736 if (non_default_colors)
2737 convert_mono_to_color_image (f, img, fg, bg);
2739 #elif defined (HAVE_NS)
2740 img->pixmap = ns_image_from_XBM (data, img->width, img->height, fg, bg);
2742 #else
2743 img->pixmap =
2744 (x_check_image_size (0, img->width, img->height)
2745 ? XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
2746 FRAME_X_DRAWABLE (f),
2747 data,
2748 img->width, img->height,
2749 fg, bg,
2750 DefaultDepthOfScreen (FRAME_X_SCREEN (f)))
2751 : NO_PIXMAP);
2752 #endif /* !HAVE_NTGUI && !HAVE_NS */
2757 /* Replacement for XReadBitmapFileData which isn't available under old
2758 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2759 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2760 the image. Return in *DATA the bitmap data allocated with xmalloc.
2761 Value is true if successful. DATA null means just test if
2762 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR,
2763 inhibit the call to image_error when the image size is invalid (the
2764 bitmap remains unread). */
2766 static bool
2767 xbm_read_bitmap_data (struct frame *f, char *contents, char *end,
2768 int *width, int *height, char **data,
2769 bool inhibit_image_error)
2771 char *s = contents;
2772 char buffer[BUFSIZ];
2773 bool padding_p = 0;
2774 bool v10 = 0;
2775 int bytes_per_line, i, nbytes;
2776 char *p;
2777 int value;
2778 int LA1;
2780 #define match() \
2781 LA1 = xbm_scan (&s, end, buffer, &value)
2783 #define expect(TOKEN) \
2784 do \
2786 if (LA1 != (TOKEN)) \
2787 goto failure; \
2788 match (); \
2790 while (0)
2792 #define expect_ident(IDENT) \
2793 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2794 match (); \
2795 else \
2796 goto failure
2798 *width = *height = -1;
2799 if (data)
2800 *data = NULL;
2801 LA1 = xbm_scan (&s, end, buffer, &value);
2803 /* Parse defines for width, height and hot-spots. */
2804 while (LA1 == '#')
2806 match ();
2807 expect_ident ("define");
2808 expect (XBM_TK_IDENT);
2810 if (LA1 == XBM_TK_NUMBER)
2812 char *q = strrchr (buffer, '_');
2813 q = q ? q + 1 : buffer;
2814 if (strcmp (q, "width") == 0)
2815 *width = value;
2816 else if (strcmp (q, "height") == 0)
2817 *height = value;
2819 expect (XBM_TK_NUMBER);
2822 if (!check_image_size (f, *width, *height))
2824 if (!inhibit_image_error)
2825 image_size_error ();
2826 goto failure;
2828 else if (data == NULL)
2829 goto success;
2831 /* Parse bits. Must start with `static'. */
2832 expect_ident ("static");
2833 if (LA1 == XBM_TK_IDENT)
2835 if (strcmp (buffer, "unsigned") == 0)
2837 match ();
2838 expect_ident ("char");
2840 else if (strcmp (buffer, "short") == 0)
2842 match ();
2843 v10 = 1;
2844 if (*width % 16 && *width % 16 < 9)
2845 padding_p = 1;
2847 else if (strcmp (buffer, "char") == 0)
2848 match ();
2849 else
2850 goto failure;
2852 else
2853 goto failure;
2855 expect (XBM_TK_IDENT);
2856 expect ('[');
2857 expect (']');
2858 expect ('=');
2859 expect ('{');
2861 if (! x_check_image_size (0, *width, *height))
2863 if (!inhibit_image_error)
2864 image_error ("Image too large (%dx%d)",
2865 make_number (*width), make_number (*height));
2866 goto failure;
2868 bytes_per_line = (*width + 7) / 8 + padding_p;
2869 nbytes = bytes_per_line * *height;
2870 p = *data = xmalloc (nbytes);
2872 if (v10)
2874 for (i = 0; i < nbytes; i += 2)
2876 int val = value;
2877 expect (XBM_TK_NUMBER);
2879 *p++ = XBM_BIT_SHUFFLE (val);
2880 if (!padding_p || ((i + 2) % bytes_per_line))
2881 *p++ = XBM_BIT_SHUFFLE (value >> 8);
2883 if (LA1 == ',' || LA1 == '}')
2884 match ();
2885 else
2886 goto failure;
2889 else
2891 for (i = 0; i < nbytes; ++i)
2893 int val = value;
2894 expect (XBM_TK_NUMBER);
2896 *p++ = XBM_BIT_SHUFFLE (val);
2898 if (LA1 == ',' || LA1 == '}')
2899 match ();
2900 else
2901 goto failure;
2905 success:
2906 return 1;
2908 failure:
2910 if (data && *data)
2912 xfree (*data);
2913 *data = NULL;
2915 return 0;
2917 #undef match
2918 #undef expect
2919 #undef expect_ident
2923 /* Load XBM image IMG which will be displayed on frame F from buffer
2924 CONTENTS. END is the end of the buffer. Value is true if
2925 successful. */
2927 static bool
2928 xbm_load_image (struct frame *f, struct image *img, char *contents, char *end)
2930 bool rc;
2931 char *data;
2932 bool success_p = 0;
2934 rc = xbm_read_bitmap_data (f, contents, end, &img->width, &img->height,
2935 &data, 0);
2936 if (rc)
2938 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2939 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2940 bool non_default_colors = 0;
2941 Lisp_Object value;
2943 eassert (img->width > 0 && img->height > 0);
2945 /* Get foreground and background colors, maybe allocate colors. */
2946 value = image_spec_value (img->spec, QCforeground, NULL);
2947 if (!NILP (value))
2949 foreground = x_alloc_image_color (f, img, value, foreground);
2950 non_default_colors = 1;
2952 value = image_spec_value (img->spec, QCbackground, NULL);
2953 if (!NILP (value))
2955 background = x_alloc_image_color (f, img, value, background);
2956 img->background = background;
2957 img->background_valid = 1;
2958 non_default_colors = 1;
2961 Create_Pixmap_From_Bitmap_Data (f, img, data,
2962 foreground, background,
2963 non_default_colors);
2964 xfree (data);
2966 if (img->pixmap == NO_PIXMAP)
2968 x_clear_image (f, img);
2969 image_error ("Unable to create X pixmap for `%s'", img->spec);
2971 else
2972 success_p = 1;
2974 else
2975 image_error ("Error loading XBM image `%s'", img->spec);
2977 return success_p;
2981 /* Value is true if DATA looks like an in-memory XBM file. */
2983 static bool
2984 xbm_file_p (Lisp_Object data)
2986 int w, h;
2987 return (STRINGP (data)
2988 && xbm_read_bitmap_data (NULL, SSDATA (data),
2989 SSDATA (data) + SBYTES (data),
2990 &w, &h, NULL, 1));
2994 /* Fill image IMG which is used on frame F with pixmap data. Value is
2995 true if successful. */
2997 static bool
2998 xbm_load (struct frame *f, struct image *img)
3000 bool success_p = 0;
3001 Lisp_Object file_name;
3003 eassert (xbm_image_p (img->spec));
3005 /* If IMG->spec specifies a file name, create a non-file spec from it. */
3006 file_name = image_spec_value (img->spec, QCfile, NULL);
3007 if (STRINGP (file_name))
3009 int fd;
3010 Lisp_Object file = x_find_image_fd (file_name, &fd);
3011 if (!STRINGP (file))
3013 image_error ("Cannot find image file `%s'", file_name);
3014 return 0;
3017 ptrdiff_t size;
3018 char *contents = slurp_file (fd, &size);
3019 if (contents == NULL)
3021 image_error ("Error loading XBM image `%s'", file);
3022 return 0;
3025 success_p = xbm_load_image (f, img, contents, contents + size);
3026 xfree (contents);
3028 else
3030 struct image_keyword fmt[XBM_LAST];
3031 Lisp_Object data;
3032 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
3033 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
3034 bool non_default_colors = 0;
3035 char *bits;
3036 bool parsed_p;
3037 bool in_memory_file_p = 0;
3039 /* See if data looks like an in-memory XBM file. */
3040 data = image_spec_value (img->spec, QCdata, NULL);
3041 in_memory_file_p = xbm_file_p (data);
3043 /* Parse the image specification. */
3044 memcpy (fmt, xbm_format, sizeof fmt);
3045 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
3046 eassert (parsed_p);
3048 /* Get specified width, and height. */
3049 if (!in_memory_file_p)
3051 img->width = XFASTINT (fmt[XBM_WIDTH].value);
3052 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
3053 eassert (img->width > 0 && img->height > 0);
3054 if (!check_image_size (f, img->width, img->height))
3056 image_size_error ();
3057 return 0;
3061 /* Get foreground and background colors, maybe allocate colors. */
3062 if (fmt[XBM_FOREGROUND].count
3063 && STRINGP (fmt[XBM_FOREGROUND].value))
3065 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
3066 foreground);
3067 non_default_colors = 1;
3070 if (fmt[XBM_BACKGROUND].count
3071 && STRINGP (fmt[XBM_BACKGROUND].value))
3073 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
3074 background);
3075 non_default_colors = 1;
3078 if (in_memory_file_p)
3079 success_p = xbm_load_image (f, img, SSDATA (data),
3080 SSDATA (data) + SBYTES (data));
3081 else
3083 USE_SAFE_ALLOCA;
3085 if (VECTORP (data))
3087 int i;
3088 char *p;
3089 int nbytes = (img->width + CHAR_BIT - 1) / CHAR_BIT;
3091 SAFE_NALLOCA (bits, nbytes, img->height);
3092 p = bits;
3093 for (i = 0; i < img->height; ++i, p += nbytes)
3095 Lisp_Object line = AREF (data, i);
3096 if (STRINGP (line))
3097 memcpy (p, SDATA (line), nbytes);
3098 else
3099 memcpy (p, bool_vector_data (line), nbytes);
3102 else if (STRINGP (data))
3103 bits = SSDATA (data);
3104 else
3105 bits = (char *) bool_vector_data (data);
3107 #ifdef HAVE_NTGUI
3109 char *invertedBits;
3110 int nbytes, i;
3111 /* Windows mono bitmaps are reversed compared with X. */
3112 invertedBits = bits;
3113 nbytes = (img->width + CHAR_BIT - 1) / CHAR_BIT * img->height;
3114 SAFE_NALLOCA (bits, 1, nbytes);
3115 for (i = 0; i < nbytes; i++)
3116 bits[i] = XBM_BIT_SHUFFLE (invertedBits[i]);
3118 #endif
3119 /* Create the pixmap. */
3121 if (x_check_image_size (0, img->width, img->height))
3122 Create_Pixmap_From_Bitmap_Data (f, img, bits,
3123 foreground, background,
3124 non_default_colors);
3125 else
3126 img->pixmap = NO_PIXMAP;
3128 if (img->pixmap)
3129 success_p = 1;
3130 else
3132 image_error ("Unable to create pixmap for XBM image `%s'",
3133 img->spec);
3134 x_clear_image (f, img);
3137 SAFE_FREE ();
3141 return success_p;
3146 /***********************************************************************
3147 XPM images
3148 ***********************************************************************/
3150 #if defined (HAVE_XPM) || defined (HAVE_NS)
3152 static bool xpm_image_p (Lisp_Object object);
3153 static bool xpm_load (struct frame *f, struct image *img);
3155 #endif /* HAVE_XPM || HAVE_NS */
3157 #ifdef HAVE_XPM
3158 #ifdef HAVE_NTGUI
3159 /* Indicate to xpm.h that we don't have Xlib. */
3160 #define FOR_MSW
3161 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
3162 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
3163 #define XColor xpm_XColor
3164 #define XImage xpm_XImage
3165 #define Display xpm_Display
3166 #ifdef CYGWIN
3167 #include "noX/xpm.h"
3168 #else /* not CYGWIN */
3169 #include "X11/xpm.h"
3170 #endif /* not CYGWIN */
3171 #undef FOR_MSW
3172 #undef XColor
3173 #undef XImage
3174 #undef Display
3175 #else /* not HAVE_NTGUI */
3176 #include "X11/xpm.h"
3177 #endif /* not HAVE_NTGUI */
3178 #endif /* HAVE_XPM */
3180 #if defined (HAVE_XPM) || defined (HAVE_NS)
3182 /* Indices of image specification fields in xpm_format, below. */
3184 enum xpm_keyword_index
3186 XPM_TYPE,
3187 XPM_FILE,
3188 XPM_DATA,
3189 XPM_ASCENT,
3190 XPM_MARGIN,
3191 XPM_RELIEF,
3192 XPM_ALGORITHM,
3193 XPM_HEURISTIC_MASK,
3194 XPM_MASK,
3195 XPM_COLOR_SYMBOLS,
3196 XPM_BACKGROUND,
3197 XPM_LAST
3200 /* Vector of image_keyword structures describing the format
3201 of valid XPM image specifications. */
3203 static const struct image_keyword xpm_format[XPM_LAST] =
3205 {":type", IMAGE_SYMBOL_VALUE, 1},
3206 {":file", IMAGE_STRING_VALUE, 0},
3207 {":data", IMAGE_STRING_VALUE, 0},
3208 {":ascent", IMAGE_ASCENT_VALUE, 0},
3209 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
3210 {":relief", IMAGE_INTEGER_VALUE, 0},
3211 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3212 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3213 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3214 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3215 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
3218 #if defined HAVE_NTGUI && defined WINDOWSNT
3219 static bool init_xpm_functions (void);
3220 #else
3221 #define init_xpm_functions NULL
3222 #endif
3224 /* Structure describing the image type XPM. */
3226 static struct image_type xpm_type =
3228 SYMBOL_INDEX (Qxpm),
3229 xpm_image_p,
3230 xpm_load,
3231 x_clear_image,
3232 init_xpm_functions,
3233 NULL
3236 #ifdef HAVE_X_WINDOWS
3238 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3239 functions for allocating image colors. Our own functions handle
3240 color allocation failures more gracefully than the ones on the XPM
3241 lib. */
3243 #ifndef USE_CAIRO
3244 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3245 #define ALLOC_XPM_COLORS
3246 #endif
3247 #endif /* USE_CAIRO */
3248 #endif /* HAVE_X_WINDOWS */
3250 #ifdef ALLOC_XPM_COLORS
3252 static struct xpm_cached_color *xpm_cache_color (struct frame *, char *,
3253 XColor *, int);
3255 /* An entry in a hash table used to cache color definitions of named
3256 colors. This cache is necessary to speed up XPM image loading in
3257 case we do color allocations ourselves. Without it, we would need
3258 a call to XParseColor per pixel in the image.
3260 FIXME Now that we're using x_parse_color and its cache, reevaluate
3261 the need for this caching layer. */
3263 struct xpm_cached_color
3265 /* Next in collision chain. */
3266 struct xpm_cached_color *next;
3268 /* Color definition (RGB and pixel color). */
3269 XColor color;
3271 /* Color name. */
3272 char name[FLEXIBLE_ARRAY_MEMBER];
3275 /* The hash table used for the color cache, and its bucket vector
3276 size. */
3278 #define XPM_COLOR_CACHE_BUCKETS 1001
3279 static struct xpm_cached_color **xpm_color_cache;
3281 /* Initialize the color cache. */
3283 static void
3284 xpm_init_color_cache (struct frame *f, XpmAttributes *attrs)
3286 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
3287 xpm_color_cache = xzalloc (nbytes);
3288 init_color_table ();
3290 if (attrs->valuemask & XpmColorSymbols)
3292 int i;
3293 XColor color;
3295 for (i = 0; i < attrs->numsymbols; ++i)
3296 if (x_parse_color (f, attrs->colorsymbols[i].value, &color))
3298 color.pixel = lookup_rgb_color (f, color.red, color.green,
3299 color.blue);
3300 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
3305 /* Free the color cache. */
3307 static void
3308 xpm_free_color_cache (void)
3310 struct xpm_cached_color *p, *next;
3311 int i;
3313 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
3314 for (p = xpm_color_cache[i]; p; p = next)
3316 next = p->next;
3317 xfree (p);
3320 xfree (xpm_color_cache);
3321 xpm_color_cache = NULL;
3322 free_color_table ();
3325 /* Return the bucket index for color named COLOR_NAME in the color
3326 cache. */
3328 static int
3329 xpm_color_bucket (char *color_name)
3331 EMACS_UINT hash = hash_string (color_name, strlen (color_name));
3332 return hash % XPM_COLOR_CACHE_BUCKETS;
3336 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3337 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3338 entry added. */
3340 static struct xpm_cached_color *
3341 xpm_cache_color (struct frame *f, char *color_name, XColor *color, int bucket)
3343 size_t nbytes;
3344 struct xpm_cached_color *p;
3346 if (bucket < 0)
3347 bucket = xpm_color_bucket (color_name);
3349 nbytes = FLEXSIZEOF (struct xpm_cached_color, name, strlen (color_name) + 1);
3350 p = xmalloc (nbytes);
3351 strcpy (p->name, color_name);
3352 p->color = *color;
3353 p->next = xpm_color_cache[bucket];
3354 xpm_color_cache[bucket] = p;
3355 return p;
3358 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3359 return the cached definition in *COLOR. Otherwise, make a new
3360 entry in the cache and allocate the color. Value is false if color
3361 allocation failed. */
3363 static bool
3364 xpm_lookup_color (struct frame *f, char *color_name, XColor *color)
3366 struct xpm_cached_color *p;
3367 int h = xpm_color_bucket (color_name);
3369 for (p = xpm_color_cache[h]; p; p = p->next)
3370 if (strcmp (p->name, color_name) == 0)
3371 break;
3373 if (p != NULL)
3374 *color = p->color;
3375 else if (x_parse_color (f, color_name, color))
3377 color->pixel = lookup_rgb_color (f, color->red, color->green,
3378 color->blue);
3379 p = xpm_cache_color (f, color_name, color, h);
3381 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3382 with transparency, and it's useful. */
3383 else if (strcmp ("opaque", color_name) == 0)
3385 memset (color, 0, sizeof (XColor)); /* Is this necessary/correct? */
3386 color->pixel = FRAME_FOREGROUND_PIXEL (f);
3387 p = xpm_cache_color (f, color_name, color, h);
3390 return p != NULL;
3394 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3395 CLOSURE is a pointer to the frame on which we allocate the
3396 color. Return in *COLOR the allocated color. Value is non-zero
3397 if successful. */
3399 static int
3400 xpm_alloc_color (Display *dpy, Colormap cmap, char *color_name, XColor *color,
3401 void *closure)
3403 return xpm_lookup_color (closure, color_name, color);
3407 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3408 is a pointer to the frame on which we allocate the color. Value is
3409 non-zero if successful. */
3411 static int
3412 xpm_free_colors (Display *dpy, Colormap cmap, Pixel *pixels, int npixels, void *closure)
3414 return 1;
3417 #endif /* ALLOC_XPM_COLORS */
3420 #ifdef WINDOWSNT
3422 /* XPM library details. */
3424 DEF_DLL_FN (void, XpmFreeAttributes, (XpmAttributes *));
3425 DEF_DLL_FN (int, XpmCreateImageFromBuffer,
3426 (Display *, char *, xpm_XImage **,
3427 xpm_XImage **, XpmAttributes *));
3428 DEF_DLL_FN (int, XpmReadFileToImage,
3429 (Display *, char *, xpm_XImage **,
3430 xpm_XImage **, XpmAttributes *));
3431 DEF_DLL_FN (void, XImageFree, (xpm_XImage *));
3433 static bool
3434 init_xpm_functions (void)
3436 HMODULE library;
3438 if (!(library = w32_delayed_load (Qxpm)))
3439 return 0;
3441 LOAD_DLL_FN (library, XpmFreeAttributes);
3442 LOAD_DLL_FN (library, XpmCreateImageFromBuffer);
3443 LOAD_DLL_FN (library, XpmReadFileToImage);
3444 LOAD_DLL_FN (library, XImageFree);
3445 return 1;
3448 # undef XImageFree
3449 # undef XpmCreateImageFromBuffer
3450 # undef XpmFreeAttributes
3451 # undef XpmReadFileToImage
3453 # define XImageFree fn_XImageFree
3454 # define XpmCreateImageFromBuffer fn_XpmCreateImageFromBuffer
3455 # define XpmFreeAttributes fn_XpmFreeAttributes
3456 # define XpmReadFileToImage fn_XpmReadFileToImage
3458 #endif /* WINDOWSNT */
3460 /* Value is true if COLOR_SYMBOLS is a valid color symbols list
3461 for XPM images. Such a list must consist of conses whose car and
3462 cdr are strings. */
3464 static bool
3465 xpm_valid_color_symbols_p (Lisp_Object color_symbols)
3467 while (CONSP (color_symbols))
3469 Lisp_Object sym = XCAR (color_symbols);
3470 if (!CONSP (sym)
3471 || !STRINGP (XCAR (sym))
3472 || !STRINGP (XCDR (sym)))
3473 break;
3474 color_symbols = XCDR (color_symbols);
3477 return NILP (color_symbols);
3481 /* Value is true if OBJECT is a valid XPM image specification. */
3483 static bool
3484 xpm_image_p (Lisp_Object object)
3486 struct image_keyword fmt[XPM_LAST];
3487 memcpy (fmt, xpm_format, sizeof fmt);
3488 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
3489 /* Either `:file' or `:data' must be present. */
3490 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
3491 /* Either no `:color-symbols' or it's a list of conses
3492 whose car and cdr are strings. */
3493 && (fmt[XPM_COLOR_SYMBOLS].count == 0
3494 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
3497 #endif /* HAVE_XPM || HAVE_NS */
3499 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3500 ptrdiff_t
3501 x_create_bitmap_from_xpm_data (struct frame *f, const char **bits)
3503 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
3504 ptrdiff_t id;
3505 int rc;
3506 XpmAttributes attrs;
3507 Pixmap bitmap, mask;
3509 memset (&attrs, 0, sizeof attrs);
3511 attrs.visual = FRAME_X_VISUAL (f);
3512 attrs.colormap = FRAME_X_COLORMAP (f);
3513 attrs.valuemask |= XpmVisual;
3514 attrs.valuemask |= XpmColormap;
3516 #ifdef ALLOC_XPM_COLORS
3517 attrs.color_closure = f;
3518 attrs.alloc_color = xpm_alloc_color;
3519 attrs.free_colors = xpm_free_colors;
3520 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
3521 xpm_init_color_cache (f, &attrs);
3522 #endif
3524 rc = XpmCreatePixmapFromData (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
3525 (char **) bits, &bitmap, &mask, &attrs);
3526 if (rc != XpmSuccess)
3528 XpmFreeAttributes (&attrs);
3529 return -1;
3532 id = x_allocate_bitmap_record (f);
3533 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
3534 dpyinfo->bitmaps[id - 1].have_mask = true;
3535 dpyinfo->bitmaps[id - 1].mask = mask;
3536 dpyinfo->bitmaps[id - 1].file = NULL;
3537 dpyinfo->bitmaps[id - 1].height = attrs.height;
3538 dpyinfo->bitmaps[id - 1].width = attrs.width;
3539 dpyinfo->bitmaps[id - 1].depth = attrs.depth;
3540 dpyinfo->bitmaps[id - 1].refcount = 1;
3542 #ifdef ALLOC_XPM_COLORS
3543 xpm_free_color_cache ();
3544 #endif
3545 XpmFreeAttributes (&attrs);
3546 return id;
3548 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3550 /* Load image IMG which will be displayed on frame F. Value is
3551 true if successful. */
3553 #ifdef HAVE_XPM
3555 static bool
3556 xpm_load (struct frame *f, struct image *img)
3558 int rc;
3559 XpmAttributes attrs;
3560 Lisp_Object specified_file, color_symbols;
3561 USE_SAFE_ALLOCA;
3563 #ifdef HAVE_NTGUI
3564 HDC hdc;
3565 xpm_XImage * xpm_image = NULL, * xpm_mask = NULL;
3566 #endif /* HAVE_NTGUI */
3568 /* Configure the XPM lib. Use the visual of frame F. Allocate
3569 close colors. Return colors allocated. */
3570 memset (&attrs, 0, sizeof attrs);
3572 #ifndef HAVE_NTGUI
3573 attrs.visual = FRAME_X_VISUAL (f);
3574 attrs.colormap = FRAME_X_COLORMAP (f);
3575 attrs.valuemask |= XpmVisual;
3576 attrs.valuemask |= XpmColormap;
3577 #endif /* HAVE_NTGUI */
3579 #ifdef ALLOC_XPM_COLORS
3580 /* Allocate colors with our own functions which handle
3581 failing color allocation more gracefully. */
3582 attrs.color_closure = f;
3583 attrs.alloc_color = xpm_alloc_color;
3584 attrs.free_colors = xpm_free_colors;
3585 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
3586 #else /* not ALLOC_XPM_COLORS */
3587 /* Let the XPM lib allocate colors. */
3588 attrs.valuemask |= XpmReturnAllocPixels;
3589 #ifdef XpmAllocCloseColors
3590 attrs.alloc_close_colors = 1;
3591 attrs.valuemask |= XpmAllocCloseColors;
3592 #else /* not XpmAllocCloseColors */
3593 attrs.closeness = 600;
3594 attrs.valuemask |= XpmCloseness;
3595 #endif /* not XpmAllocCloseColors */
3596 #endif /* ALLOC_XPM_COLORS */
3598 /* If image specification contains symbolic color definitions, add
3599 these to `attrs'. */
3600 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3601 if (CONSP (color_symbols))
3603 Lisp_Object tail;
3604 XpmColorSymbol *xpm_syms;
3605 ptrdiff_t i, size;
3607 attrs.valuemask |= XpmColorSymbols;
3609 /* Count number of symbols. */
3610 attrs.numsymbols = 0;
3611 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
3612 ++attrs.numsymbols;
3614 /* Allocate an XpmColorSymbol array. */
3615 SAFE_NALLOCA (xpm_syms, 1, attrs.numsymbols);
3616 size = attrs.numsymbols * sizeof *xpm_syms;
3617 memset (xpm_syms, 0, size);
3618 attrs.colorsymbols = xpm_syms;
3620 /* Fill the color symbol array. */
3621 for (tail = color_symbols, i = 0;
3622 CONSP (tail);
3623 ++i, tail = XCDR (tail))
3625 Lisp_Object name;
3626 Lisp_Object color;
3627 char *empty_string = (char *) "";
3629 if (!CONSP (XCAR (tail)))
3631 xpm_syms[i].name = empty_string;
3632 xpm_syms[i].value = empty_string;
3633 continue;
3635 name = XCAR (XCAR (tail));
3636 color = XCDR (XCAR (tail));
3637 if (STRINGP (name))
3638 SAFE_ALLOCA_STRING (xpm_syms[i].name, name);
3639 else
3640 xpm_syms[i].name = empty_string;
3641 if (STRINGP (color))
3642 SAFE_ALLOCA_STRING (xpm_syms[i].value, color);
3643 else
3644 xpm_syms[i].value = empty_string;
3648 /* Create a pixmap for the image, either from a file, or from a
3649 string buffer containing data in the same format as an XPM file. */
3650 #ifdef ALLOC_XPM_COLORS
3651 xpm_init_color_cache (f, &attrs);
3652 #endif
3654 specified_file = image_spec_value (img->spec, QCfile, NULL);
3656 #ifdef HAVE_NTGUI
3658 HDC frame_dc = get_frame_dc (f);
3659 hdc = CreateCompatibleDC (frame_dc);
3660 release_frame_dc (f, frame_dc);
3662 #endif /* HAVE_NTGUI */
3664 if (STRINGP (specified_file))
3666 Lisp_Object file = x_find_image_file (specified_file);
3667 if (!STRINGP (file))
3669 image_error ("Cannot find image file `%s'", specified_file);
3670 #ifdef ALLOC_XPM_COLORS
3671 xpm_free_color_cache ();
3672 #endif
3673 SAFE_FREE ();
3674 return 0;
3677 file = ENCODE_FILE (file);
3678 #ifdef HAVE_NTGUI
3679 #ifdef WINDOWSNT
3680 /* FILE is encoded in UTF-8, but image libraries on Windows
3681 support neither UTF-8 nor UTF-16 encoded file names. So we
3682 need to re-encode it in ANSI. */
3683 file = ansi_encode_filename (file);
3684 #endif
3685 /* XpmReadFileToPixmap is not available in the Windows port of
3686 libxpm. But XpmReadFileToImage almost does what we want. */
3687 rc = XpmReadFileToImage (&hdc, SSDATA (file),
3688 &xpm_image, &xpm_mask,
3689 &attrs);
3690 #else
3691 rc = XpmReadFileToImage (FRAME_X_DISPLAY (f), SSDATA (file),
3692 &img->ximg, &img->mask_img,
3693 &attrs);
3694 #endif /* HAVE_NTGUI */
3696 else
3698 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
3699 if (!STRINGP (buffer))
3701 image_error ("Invalid image data `%s'", buffer);
3702 #ifdef ALLOC_XPM_COLORS
3703 xpm_free_color_cache ();
3704 #endif
3705 SAFE_FREE ();
3706 return 0;
3708 #ifdef HAVE_NTGUI
3709 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3710 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3711 rc = XpmCreateImageFromBuffer (&hdc, SSDATA (buffer),
3712 &xpm_image, &xpm_mask,
3713 &attrs);
3714 #else
3715 rc = XpmCreateImageFromBuffer (FRAME_X_DISPLAY (f), SSDATA (buffer),
3716 &img->ximg, &img->mask_img,
3717 &attrs);
3718 #endif /* HAVE_NTGUI */
3721 #ifdef USE_CAIRO
3722 /* Load very specific Xpm:s. */
3723 if (rc == XpmSuccess
3724 && img->ximg->format == ZPixmap
3725 && img->ximg->bits_per_pixel == 32
3726 && (! img->mask_img || img->mask_img->bits_per_pixel == 1))
3728 int width = img->ximg->width;
3729 int height = img->ximg->height;
3730 void *data = xmalloc (width * height * 4);
3731 int i;
3732 uint32_t *od = data;
3733 uint32_t *id = (uint32_t *) img->ximg->data;
3734 char *mid = img->mask_img ? img->mask_img->data : 0;
3735 uint32_t bgcolor = get_spec_bg_or_alpha_as_argb (img, f);
3737 for (i = 0; i < height; ++i)
3739 int k;
3740 for (k = 0; k < width; ++k)
3742 int idx = i * img->ximg->bytes_per_line/4 + k;
3743 int maskidx = mid ? i * img->mask_img->bytes_per_line + k/8 : 0;
3744 int mask = mid ? mid[maskidx] & (1 << (k % 8)) : 1;
3746 if (mask) od[idx] = id[idx] + 0xff000000; /* ff => full alpha */
3747 else od[idx] = bgcolor;
3751 create_cairo_image_surface (img, data, width, height);
3753 else
3755 rc = XpmFileInvalid;
3756 x_clear_image (f, img);
3758 #else
3759 #ifdef HAVE_X_WINDOWS
3760 if (rc == XpmSuccess)
3762 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
3763 img->ximg->width, img->ximg->height,
3764 img->ximg->depth);
3765 if (img->pixmap == NO_PIXMAP)
3767 x_clear_image (f, img);
3768 rc = XpmNoMemory;
3770 else if (img->mask_img)
3772 img->mask = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
3773 img->mask_img->width,
3774 img->mask_img->height,
3775 img->mask_img->depth);
3776 if (img->mask == NO_PIXMAP)
3778 x_clear_image (f, img);
3779 rc = XpmNoMemory;
3783 #endif
3784 #endif /* ! USE_CAIRO */
3786 if (rc == XpmSuccess)
3788 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3789 img->colors = colors_in_color_table (&img->ncolors);
3790 #else /* not ALLOC_XPM_COLORS */
3791 int i;
3793 #ifdef HAVE_NTGUI
3794 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3795 plus some duplicate attributes. */
3796 if (xpm_image && xpm_image->bitmap)
3798 img->pixmap = xpm_image->bitmap;
3799 /* XImageFree in libXpm frees XImage struct without destroying
3800 the bitmap, which is what we want. */
3801 XImageFree (xpm_image);
3803 if (xpm_mask && xpm_mask->bitmap)
3805 /* The mask appears to be inverted compared with what we expect.
3806 TODO: invert our expectations. See other places where we
3807 have to invert bits because our idea of masks is backwards. */
3808 HGDIOBJ old_obj;
3809 old_obj = SelectObject (hdc, xpm_mask->bitmap);
3811 PatBlt (hdc, 0, 0, xpm_mask->width, xpm_mask->height, DSTINVERT);
3812 SelectObject (hdc, old_obj);
3814 img->mask = xpm_mask->bitmap;
3815 XImageFree (xpm_mask);
3816 DeleteDC (hdc);
3819 DeleteDC (hdc);
3820 #endif /* HAVE_NTGUI */
3822 /* Remember allocated colors. */
3823 img->colors = xnmalloc (attrs.nalloc_pixels, sizeof *img->colors);
3824 img->ncolors = attrs.nalloc_pixels;
3825 for (i = 0; i < attrs.nalloc_pixels; ++i)
3827 img->colors[i] = attrs.alloc_pixels[i];
3828 #ifdef DEBUG_X_COLORS
3829 register_color (img->colors[i]);
3830 #endif
3832 #endif /* not ALLOC_XPM_COLORS */
3834 img->width = attrs.width;
3835 img->height = attrs.height;
3836 eassert (img->width > 0 && img->height > 0);
3838 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3839 XpmFreeAttributes (&attrs);
3841 #ifdef HAVE_X_WINDOWS
3842 /* Maybe fill in the background field while we have ximg handy. */
3843 IMAGE_BACKGROUND (img, f, img->ximg);
3844 if (img->mask_img)
3845 /* Fill in the background_transparent field while we have the
3846 mask handy. */
3847 image_background_transparent (img, f, img->mask_img);
3848 #endif
3850 else
3852 #ifdef HAVE_NTGUI
3853 DeleteDC (hdc);
3854 #endif /* HAVE_NTGUI */
3856 switch (rc)
3858 case XpmOpenFailed:
3859 image_error ("Error opening XPM file (%s)", img->spec);
3860 break;
3862 case XpmFileInvalid:
3863 image_error ("Invalid XPM file (%s)", img->spec);
3864 break;
3866 case XpmNoMemory:
3867 image_error ("Out of memory (%s)", img->spec);
3868 break;
3870 case XpmColorFailed:
3871 image_error ("Color allocation error (%s)", img->spec);
3872 break;
3874 default:
3875 image_error ("Unknown error (%s)", img->spec);
3876 break;
3880 #ifdef ALLOC_XPM_COLORS
3881 xpm_free_color_cache ();
3882 #endif
3883 SAFE_FREE ();
3884 return rc == XpmSuccess;
3887 #endif /* HAVE_XPM */
3889 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3891 /* XPM support functions for NS where libxpm is not available.
3892 Only XPM version 3 (without any extensions) is supported. */
3894 static void xpm_put_color_table_v (Lisp_Object, const char *,
3895 int, Lisp_Object);
3896 static Lisp_Object xpm_get_color_table_v (Lisp_Object, const char *, int);
3897 static void xpm_put_color_table_h (Lisp_Object, const char *,
3898 int, Lisp_Object);
3899 static Lisp_Object xpm_get_color_table_h (Lisp_Object, const char *, int);
3901 /* Tokens returned from xpm_scan. */
3903 enum xpm_token
3905 XPM_TK_IDENT = 256,
3906 XPM_TK_STRING,
3907 XPM_TK_EOF
3910 /* Scan an XPM data and return a character (< 256) or a token defined
3911 by enum xpm_token above. *S and END are the start (inclusive) and
3912 the end (exclusive) addresses of the data, respectively. Advance
3913 *S while scanning. If token is either XPM_TK_IDENT or
3914 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3915 length of the corresponding token, respectively. */
3917 static int
3918 xpm_scan (const char **s, const char *end, const char **beg, ptrdiff_t *len)
3920 unsigned char c;
3922 while (*s < end)
3924 /* Skip white-space. */
3925 while (*s < end && (c = *(*s)++, c_isspace (c)))
3928 /* gnus-pointer.xpm uses '-' in its identifier.
3929 sb-dir-plus.xpm uses '+' in its identifier. */
3930 if (c_isalpha (c) || c == '_' || c == '-' || c == '+')
3932 *beg = *s - 1;
3933 while (*s < end
3934 && (c = **s, c_isalnum (c)
3935 || c == '_' || c == '-' || c == '+'))
3936 ++*s;
3937 *len = *s - *beg;
3938 return XPM_TK_IDENT;
3940 else if (c == '"')
3942 *beg = *s;
3943 while (*s < end && **s != '"')
3944 ++*s;
3945 *len = *s - *beg;
3946 if (*s < end)
3947 ++*s;
3948 return XPM_TK_STRING;
3950 else if (c == '/')
3952 if (*s < end && **s == '*')
3954 /* C-style comment. */
3955 ++*s;
3958 while (*s < end && *(*s)++ != '*')
3961 while (*s < end && **s != '/');
3962 if (*s < end)
3963 ++*s;
3965 else
3966 return c;
3968 else
3969 return c;
3972 return XPM_TK_EOF;
3975 /* Functions for color table lookup in XPM data. A key is a string
3976 specifying the color of each pixel in XPM data. A value is either
3977 an integer that specifies a pixel color, Qt that specifies
3978 transparency, or Qnil for the unspecified color. If the length of
3979 the key string is one, a vector is used as a table. Otherwise, a
3980 hash table is used. */
3982 static Lisp_Object
3983 xpm_make_color_table_v (void (**put_func) (Lisp_Object, const char *, int,
3984 Lisp_Object),
3985 Lisp_Object (**get_func) (Lisp_Object, const char *,
3986 int))
3988 *put_func = xpm_put_color_table_v;
3989 *get_func = xpm_get_color_table_v;
3990 return Fmake_vector (make_number (256), Qnil);
3993 static void
3994 xpm_put_color_table_v (Lisp_Object color_table,
3995 const char *chars_start,
3996 int chars_len,
3997 Lisp_Object color)
3999 unsigned char uc = *chars_start;
4000 ASET (color_table, uc, color);
4003 static Lisp_Object
4004 xpm_get_color_table_v (Lisp_Object color_table,
4005 const char *chars_start,
4006 int chars_len)
4008 unsigned char uc = *chars_start;
4009 return AREF (color_table, uc);
4012 static Lisp_Object
4013 xpm_make_color_table_h (void (**put_func) (Lisp_Object, const char *, int,
4014 Lisp_Object),
4015 Lisp_Object (**get_func) (Lisp_Object, const char *,
4016 int))
4018 *put_func = xpm_put_color_table_h;
4019 *get_func = xpm_get_color_table_h;
4020 return make_hash_table (hashtest_equal, DEFAULT_HASH_SIZE,
4021 DEFAULT_REHASH_SIZE, DEFAULT_REHASH_THRESHOLD,
4022 Qnil, false);
4025 static void
4026 xpm_put_color_table_h (Lisp_Object color_table,
4027 const char *chars_start,
4028 int chars_len,
4029 Lisp_Object color)
4031 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
4032 EMACS_UINT hash_code;
4033 Lisp_Object chars = make_unibyte_string (chars_start, chars_len);
4035 hash_lookup (table, chars, &hash_code);
4036 hash_put (table, chars, color, hash_code);
4039 static Lisp_Object
4040 xpm_get_color_table_h (Lisp_Object color_table,
4041 const char *chars_start,
4042 int chars_len)
4044 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
4045 ptrdiff_t i =
4046 hash_lookup (table, make_unibyte_string (chars_start, chars_len), NULL);
4048 return i >= 0 ? HASH_VALUE (table, i) : Qnil;
4051 enum xpm_color_key {
4052 XPM_COLOR_KEY_S,
4053 XPM_COLOR_KEY_M,
4054 XPM_COLOR_KEY_G4,
4055 XPM_COLOR_KEY_G,
4056 XPM_COLOR_KEY_C
4059 static const char xpm_color_key_strings[][4] = {"s", "m", "g4", "g", "c"};
4061 static int
4062 xpm_str_to_color_key (const char *s)
4064 int i;
4066 for (i = 0; i < ARRAYELTS (xpm_color_key_strings); i++)
4067 if (strcmp (xpm_color_key_strings[i], s) == 0)
4068 return i;
4069 return -1;
4072 static bool
4073 xpm_load_image (struct frame *f,
4074 struct image *img,
4075 const char *contents,
4076 const char *end)
4078 const char *s = contents, *beg, *str;
4079 char buffer[BUFSIZ];
4080 int width, height, x, y;
4081 int num_colors, chars_per_pixel;
4082 ptrdiff_t len;
4083 int LA1;
4084 void (*put_color_table) (Lisp_Object, const char *, int, Lisp_Object);
4085 Lisp_Object (*get_color_table) (Lisp_Object, const char *, int);
4086 Lisp_Object frame, color_symbols, color_table;
4087 int best_key;
4088 #ifndef HAVE_NS
4089 bool have_mask = false;
4090 #endif
4091 XImagePtr ximg = NULL, mask_img = NULL;
4093 #define match() \
4094 LA1 = xpm_scan (&s, end, &beg, &len)
4096 #define expect(TOKEN) \
4097 do \
4099 if (LA1 != (TOKEN)) \
4100 goto failure; \
4101 match (); \
4103 while (0)
4105 #define expect_ident(IDENT) \
4106 if (LA1 == XPM_TK_IDENT \
4107 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
4108 match (); \
4109 else \
4110 goto failure
4112 if (!(end - s >= 9 && memcmp (s, "/* XPM */", 9) == 0))
4113 goto failure;
4114 s += 9;
4115 match ();
4116 expect_ident ("static");
4117 expect_ident ("char");
4118 expect ('*');
4119 expect (XPM_TK_IDENT);
4120 expect ('[');
4121 expect (']');
4122 expect ('=');
4123 expect ('{');
4124 expect (XPM_TK_STRING);
4125 if (len >= BUFSIZ)
4126 goto failure;
4127 memcpy (buffer, beg, len);
4128 buffer[len] = '\0';
4129 if (sscanf (buffer, "%d %d %d %d", &width, &height,
4130 &num_colors, &chars_per_pixel) != 4
4131 || width <= 0 || height <= 0
4132 || num_colors <= 0 || chars_per_pixel <= 0)
4133 goto failure;
4135 if (!check_image_size (f, width, height))
4137 image_size_error ();
4138 goto failure;
4141 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0)
4142 #ifndef HAVE_NS
4143 || !image_create_x_image_and_pixmap (f, img, width, height, 1,
4144 &mask_img, 1)
4145 #endif
4148 image_error ("Image too large");
4149 goto failure;
4152 expect (',');
4154 XSETFRAME (frame, f);
4155 if (!NILP (Fxw_display_color_p (frame)))
4156 best_key = XPM_COLOR_KEY_C;
4157 else if (!NILP (Fx_display_grayscale_p (frame)))
4158 best_key = (XFASTINT (Fx_display_planes (frame)) > 2
4159 ? XPM_COLOR_KEY_G : XPM_COLOR_KEY_G4);
4160 else
4161 best_key = XPM_COLOR_KEY_M;
4163 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
4164 if (chars_per_pixel == 1)
4165 color_table = xpm_make_color_table_v (&put_color_table,
4166 &get_color_table);
4167 else
4168 color_table = xpm_make_color_table_h (&put_color_table,
4169 &get_color_table);
4171 while (num_colors-- > 0)
4173 char *color, *max_color;
4174 int key, next_key, max_key = 0;
4175 Lisp_Object symbol_color = Qnil, color_val;
4176 XColor cdef;
4178 expect (XPM_TK_STRING);
4179 if (len <= chars_per_pixel || len >= BUFSIZ + chars_per_pixel)
4180 goto failure;
4181 memcpy (buffer, beg + chars_per_pixel, len - chars_per_pixel);
4182 buffer[len - chars_per_pixel] = '\0';
4184 str = strtok (buffer, " \t");
4185 if (str == NULL)
4186 goto failure;
4187 key = xpm_str_to_color_key (str);
4188 if (key < 0)
4189 goto failure;
4192 color = strtok (NULL, " \t");
4193 if (color == NULL)
4194 goto failure;
4196 while ((str = strtok (NULL, " \t")) != NULL)
4198 next_key = xpm_str_to_color_key (str);
4199 if (next_key >= 0)
4200 break;
4201 color[strlen (color)] = ' ';
4204 if (key == XPM_COLOR_KEY_S)
4206 if (NILP (symbol_color))
4207 symbol_color = build_string (color);
4209 else if (max_key < key && key <= best_key)
4211 max_key = key;
4212 max_color = color;
4214 key = next_key;
4216 while (str);
4218 color_val = Qnil;
4219 if (!NILP (color_symbols) && !NILP (symbol_color))
4221 Lisp_Object specified_color = Fassoc (symbol_color, color_symbols);
4223 if (CONSP (specified_color) && STRINGP (XCDR (specified_color)))
4225 if (xstrcasecmp (SSDATA (XCDR (specified_color)), "None") == 0)
4226 color_val = Qt;
4227 else if (x_defined_color (f, SSDATA (XCDR (specified_color)),
4228 &cdef, 0))
4229 color_val = make_number (cdef.pixel);
4232 if (NILP (color_val) && max_key > 0)
4234 if (xstrcasecmp (max_color, "None") == 0)
4235 color_val = Qt;
4236 else if (x_defined_color (f, max_color, &cdef, 0))
4237 color_val = make_number (cdef.pixel);
4239 if (!NILP (color_val))
4240 (*put_color_table) (color_table, beg, chars_per_pixel, color_val);
4242 expect (',');
4245 for (y = 0; y < height; y++)
4247 expect (XPM_TK_STRING);
4248 str = beg;
4249 if (len < width * chars_per_pixel)
4250 goto failure;
4251 for (x = 0; x < width; x++, str += chars_per_pixel)
4253 Lisp_Object color_val =
4254 (*get_color_table) (color_table, str, chars_per_pixel);
4256 XPutPixel (ximg, x, y,
4257 (INTEGERP (color_val) ? XINT (color_val)
4258 : FRAME_FOREGROUND_PIXEL (f)));
4259 #ifndef HAVE_NS
4260 XPutPixel (mask_img, x, y,
4261 (!EQ (color_val, Qt) ? PIX_MASK_DRAW
4262 : (have_mask = true, PIX_MASK_RETAIN)));
4263 #else
4264 if (EQ (color_val, Qt))
4265 ns_set_alpha (ximg, x, y, 0);
4266 #endif
4268 if (y + 1 < height)
4269 expect (',');
4272 img->width = width;
4273 img->height = height;
4275 /* Maybe fill in the background field while we have ximg handy. */
4276 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
4277 IMAGE_BACKGROUND (img, f, ximg);
4279 image_put_x_image (f, img, ximg, 0);
4280 #ifndef HAVE_NS
4281 if (have_mask)
4283 /* Fill in the background_transparent field while we have the
4284 mask handy. */
4285 image_background_transparent (img, f, mask_img);
4287 image_put_x_image (f, img, mask_img, 1);
4289 else
4291 x_destroy_x_image (mask_img);
4292 x_clear_image_1 (f, img, CLEAR_IMAGE_MASK);
4294 #endif
4295 return 1;
4297 failure:
4298 image_error ("Invalid XPM file (%s)", img->spec);
4299 x_destroy_x_image (ximg);
4300 x_destroy_x_image (mask_img);
4301 x_clear_image (f, img);
4302 return 0;
4304 #undef match
4305 #undef expect
4306 #undef expect_ident
4309 static bool
4310 xpm_load (struct frame *f,
4311 struct image *img)
4313 bool success_p = 0;
4314 Lisp_Object file_name;
4316 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4317 file_name = image_spec_value (img->spec, QCfile, NULL);
4318 if (STRINGP (file_name))
4320 int fd;
4321 Lisp_Object file = x_find_image_fd (file_name, &fd);
4322 if (!STRINGP (file))
4324 image_error ("Cannot find image file `%s'", file_name);
4325 return 0;
4328 ptrdiff_t size;
4329 char *contents = slurp_file (fd, &size);
4330 if (contents == NULL)
4332 image_error ("Error loading XPM image `%s'", file);
4333 return 0;
4336 success_p = xpm_load_image (f, img, contents, contents + size);
4337 xfree (contents);
4339 else
4341 Lisp_Object data;
4343 data = image_spec_value (img->spec, QCdata, NULL);
4344 if (!STRINGP (data))
4346 image_error ("Invalid image data `%s'", data);
4347 return 0;
4349 success_p = xpm_load_image (f, img, SSDATA (data),
4350 SSDATA (data) + SBYTES (data));
4353 return success_p;
4356 #endif /* HAVE_NS && !HAVE_XPM */
4360 /***********************************************************************
4361 Color table
4362 ***********************************************************************/
4364 #ifdef COLOR_TABLE_SUPPORT
4366 /* An entry in the color table mapping an RGB color to a pixel color. */
4368 struct ct_color
4370 int r, g, b;
4371 unsigned long pixel;
4373 /* Next in color table collision list. */
4374 struct ct_color *next;
4377 /* The bucket vector size to use. Must be prime. */
4379 #define CT_SIZE 101
4381 /* Value is a hash of the RGB color given by R, G, and B. */
4383 static unsigned
4384 ct_hash_rgb (unsigned r, unsigned g, unsigned b)
4386 return (r << 16) ^ (g << 8) ^ b;
4389 /* The color hash table. */
4391 static struct ct_color **ct_table;
4393 /* Number of entries in the color table. */
4395 static int ct_colors_allocated;
4396 enum
4398 ct_colors_allocated_max =
4399 min (INT_MAX,
4400 min (PTRDIFF_MAX, SIZE_MAX) / sizeof (unsigned long))
4403 /* Initialize the color table. */
4405 static void
4406 init_color_table (void)
4408 int size = CT_SIZE * sizeof (*ct_table);
4409 ct_table = xzalloc (size);
4410 ct_colors_allocated = 0;
4414 /* Free memory associated with the color table. */
4416 static void
4417 free_color_table (void)
4419 int i;
4420 struct ct_color *p, *next;
4422 for (i = 0; i < CT_SIZE; ++i)
4423 for (p = ct_table[i]; p; p = next)
4425 next = p->next;
4426 xfree (p);
4429 xfree (ct_table);
4430 ct_table = NULL;
4434 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4435 entry for that color already is in the color table, return the
4436 pixel color of that entry. Otherwise, allocate a new color for R,
4437 G, B, and make an entry in the color table. */
4439 static unsigned long
4440 lookup_rgb_color (struct frame *f, int r, int g, int b)
4442 unsigned hash = ct_hash_rgb (r, g, b);
4443 int i = hash % CT_SIZE;
4444 struct ct_color *p;
4445 Display_Info *dpyinfo;
4447 /* Handle TrueColor visuals specially, which improves performance by
4448 two orders of magnitude. Freeing colors on TrueColor visuals is
4449 a nop, and pixel colors specify RGB values directly. See also
4450 the Xlib spec, chapter 3.1. */
4451 dpyinfo = FRAME_DISPLAY_INFO (f);
4452 if (dpyinfo->red_bits > 0)
4454 /* Apply gamma-correction like normal color allocation does. */
4455 if (f->gamma)
4457 XColor color;
4458 color.red = r, color.green = g, color.blue = b;
4459 gamma_correct (f, &color);
4460 r = color.red, g = color.green, b = color.blue;
4463 return x_make_truecolor_pixel (dpyinfo, r, g, b);
4466 for (p = ct_table[i]; p; p = p->next)
4467 if (p->r == r && p->g == g && p->b == b)
4468 break;
4470 if (p == NULL)
4473 #ifdef HAVE_X_WINDOWS
4474 XColor color;
4475 Colormap cmap;
4476 bool rc;
4477 #else
4478 COLORREF color;
4479 #endif
4481 if (ct_colors_allocated_max <= ct_colors_allocated)
4482 return FRAME_FOREGROUND_PIXEL (f);
4484 #ifdef HAVE_X_WINDOWS
4485 color.red = r;
4486 color.green = g;
4487 color.blue = b;
4489 cmap = FRAME_X_COLORMAP (f);
4490 rc = x_alloc_nearest_color (f, cmap, &color);
4491 if (rc)
4493 ++ct_colors_allocated;
4494 p = xmalloc (sizeof *p);
4495 p->r = r;
4496 p->g = g;
4497 p->b = b;
4498 p->pixel = color.pixel;
4499 p->next = ct_table[i];
4500 ct_table[i] = p;
4502 else
4503 return FRAME_FOREGROUND_PIXEL (f);
4505 #else
4506 #ifdef HAVE_NTGUI
4507 color = PALETTERGB (r, g, b);
4508 #else
4509 color = RGB_TO_ULONG (r, g, b);
4510 #endif /* HAVE_NTGUI */
4511 ++ct_colors_allocated;
4512 p = xmalloc (sizeof *p);
4513 p->r = r;
4514 p->g = g;
4515 p->b = b;
4516 p->pixel = color;
4517 p->next = ct_table[i];
4518 ct_table[i] = p;
4519 #endif /* HAVE_X_WINDOWS */
4523 return p->pixel;
4527 /* Look up pixel color PIXEL which is used on frame F in the color
4528 table. If not already present, allocate it. Value is PIXEL. */
4530 static unsigned long
4531 lookup_pixel_color (struct frame *f, unsigned long pixel)
4533 int i = pixel % CT_SIZE;
4534 struct ct_color *p;
4536 for (p = ct_table[i]; p; p = p->next)
4537 if (p->pixel == pixel)
4538 break;
4540 if (p == NULL)
4542 XColor color;
4543 Colormap cmap;
4544 bool rc;
4546 if (ct_colors_allocated >= ct_colors_allocated_max)
4547 return FRAME_FOREGROUND_PIXEL (f);
4549 #ifdef HAVE_X_WINDOWS
4550 cmap = FRAME_X_COLORMAP (f);
4551 color.pixel = pixel;
4552 x_query_color (f, &color);
4553 rc = x_alloc_nearest_color (f, cmap, &color);
4554 #else
4555 block_input ();
4556 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
4557 color.pixel = pixel;
4558 XQueryColor (NULL, cmap, &color);
4559 rc = x_alloc_nearest_color (f, cmap, &color);
4560 unblock_input ();
4561 #endif /* HAVE_X_WINDOWS */
4563 if (rc)
4565 ++ct_colors_allocated;
4567 p = xmalloc (sizeof *p);
4568 p->r = color.red;
4569 p->g = color.green;
4570 p->b = color.blue;
4571 p->pixel = pixel;
4572 p->next = ct_table[i];
4573 ct_table[i] = p;
4575 else
4576 return FRAME_FOREGROUND_PIXEL (f);
4578 return p->pixel;
4582 /* Value is a vector of all pixel colors contained in the color table,
4583 allocated via xmalloc. Set *N to the number of colors. */
4585 static unsigned long *
4586 colors_in_color_table (int *n)
4588 int i, j;
4589 struct ct_color *p;
4590 unsigned long *colors;
4592 if (ct_colors_allocated == 0)
4594 *n = 0;
4595 colors = NULL;
4597 else
4599 colors = xmalloc (ct_colors_allocated * sizeof *colors);
4600 *n = ct_colors_allocated;
4602 for (i = j = 0; i < CT_SIZE; ++i)
4603 for (p = ct_table[i]; p; p = p->next)
4604 colors[j++] = p->pixel;
4607 return colors;
4610 #else /* COLOR_TABLE_SUPPORT */
4612 static unsigned long
4613 lookup_rgb_color (struct frame *f, int r, int g, int b)
4615 #ifdef HAVE_NTGUI
4616 return PALETTERGB (r >> 8, g >> 8, b >> 8);
4617 #elif defined HAVE_NS
4618 return RGB_TO_ULONG (r >> 8, g >> 8, b >> 8);
4619 #else
4620 xsignal1 (Qfile_error,
4621 build_string ("This Emacs mishandles this image file type"));
4622 #endif
4625 static void
4626 init_color_table (void)
4629 #endif /* COLOR_TABLE_SUPPORT */
4632 /***********************************************************************
4633 Algorithms
4634 ***********************************************************************/
4636 /* Edge detection matrices for different edge-detection
4637 strategies. */
4639 static int emboss_matrix[9] = {
4640 /* x - 1 x x + 1 */
4641 2, -1, 0, /* y - 1 */
4642 -1, 0, 1, /* y */
4643 0, 1, -2 /* y + 1 */
4646 static int laplace_matrix[9] = {
4647 /* x - 1 x x + 1 */
4648 1, 0, 0, /* y - 1 */
4649 0, 0, 0, /* y */
4650 0, 0, -1 /* y + 1 */
4653 /* Value is the intensity of the color whose red/green/blue values
4654 are R, G, and B. */
4656 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4659 /* On frame F, return an array of XColor structures describing image
4660 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4661 means also fill the red/green/blue members of the XColor
4662 structures. Value is a pointer to the array of XColors structures,
4663 allocated with xmalloc; it must be freed by the caller. */
4665 static XColor *
4666 x_to_xcolors (struct frame *f, struct image *img, bool rgb_p)
4668 int x, y;
4669 XColor *colors, *p;
4670 XImagePtr_or_DC ximg;
4671 ptrdiff_t nbytes;
4672 #ifdef HAVE_NTGUI
4673 HGDIOBJ prev;
4674 #endif /* HAVE_NTGUI */
4676 if (INT_MULTIPLY_WRAPV (sizeof *colors, img->width, &nbytes)
4677 || INT_MULTIPLY_WRAPV (img->height, nbytes, &nbytes)
4678 || SIZE_MAX < nbytes)
4679 memory_full (SIZE_MAX);
4680 colors = xmalloc (nbytes);
4682 /* Get the X image or create a memory device context for IMG. */
4683 ximg = image_get_x_image_or_dc (f, img, 0, &prev);
4685 /* Fill the `pixel' members of the XColor array. I wished there
4686 were an easy and portable way to circumvent XGetPixel. */
4687 p = colors;
4688 for (y = 0; y < img->height; ++y)
4690 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4691 XColor *row = p;
4692 for (x = 0; x < img->width; ++x, ++p)
4693 p->pixel = GET_PIXEL (ximg, x, y);
4694 if (rgb_p)
4695 x_query_colors (f, row, img->width);
4697 #else
4699 for (x = 0; x < img->width; ++x, ++p)
4701 /* W32_TODO: palette support needed here? */
4702 p->pixel = GET_PIXEL (ximg, x, y);
4703 if (rgb_p)
4705 p->red = RED16_FROM_ULONG (p->pixel);
4706 p->green = GREEN16_FROM_ULONG (p->pixel);
4707 p->blue = BLUE16_FROM_ULONG (p->pixel);
4710 #endif /* HAVE_X_WINDOWS */
4713 image_unget_x_image_or_dc (img, 0, ximg, prev);
4715 return colors;
4718 #ifdef HAVE_NTGUI
4720 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4721 created with CreateDIBSection, with the pointer to the bit values
4722 stored in ximg->data. */
4724 static void
4725 XPutPixel (XImagePtr ximg, int x, int y, COLORREF color)
4727 int width = ximg->info.bmiHeader.biWidth;
4728 unsigned char * pixel;
4730 /* True color images. */
4731 if (ximg->info.bmiHeader.biBitCount == 24)
4733 int rowbytes = width * 3;
4734 /* Ensure scanlines are aligned on 4 byte boundaries. */
4735 if (rowbytes % 4)
4736 rowbytes += 4 - (rowbytes % 4);
4738 pixel = ximg->data + y * rowbytes + x * 3;
4739 /* Windows bitmaps are in BGR order. */
4740 *pixel = GetBValue (color);
4741 *(pixel + 1) = GetGValue (color);
4742 *(pixel + 2) = GetRValue (color);
4744 /* Monochrome images. */
4745 else if (ximg->info.bmiHeader.biBitCount == 1)
4747 int rowbytes = width / 8;
4748 /* Ensure scanlines are aligned on 4 byte boundaries. */
4749 if (rowbytes % 4)
4750 rowbytes += 4 - (rowbytes % 4);
4751 pixel = ximg->data + y * rowbytes + x / 8;
4752 /* Filter out palette info. */
4753 if (color & 0x00ffffff)
4754 *pixel = *pixel | (1 << x % 8);
4755 else
4756 *pixel = *pixel & ~(1 << x % 8);
4758 else
4759 image_error ("XPutPixel: palette image not supported");
4762 #endif /* HAVE_NTGUI */
4764 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4765 RGB members are set. F is the frame on which this all happens.
4766 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4768 static void
4769 x_from_xcolors (struct frame *f, struct image *img, XColor *colors)
4771 int x, y;
4772 XImagePtr oimg = NULL;
4773 XColor *p;
4775 init_color_table ();
4777 x_clear_image_1 (f, img, CLEAR_IMAGE_PIXMAP | CLEAR_IMAGE_COLORS);
4778 image_create_x_image_and_pixmap (f, img, img->width, img->height, 0,
4779 &oimg, 0);
4780 p = colors;
4781 for (y = 0; y < img->height; ++y)
4782 for (x = 0; x < img->width; ++x, ++p)
4784 unsigned long pixel;
4785 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
4786 XPutPixel (oimg, x, y, pixel);
4789 xfree (colors);
4791 image_put_x_image (f, img, oimg, 0);
4792 #ifdef COLOR_TABLE_SUPPORT
4793 img->colors = colors_in_color_table (&img->ncolors);
4794 free_color_table ();
4795 #endif /* COLOR_TABLE_SUPPORT */
4799 /* On frame F, perform edge-detection on image IMG.
4801 MATRIX is a nine-element array specifying the transformation
4802 matrix. See emboss_matrix for an example.
4804 COLOR_ADJUST is a color adjustment added to each pixel of the
4805 outgoing image. */
4807 static void
4808 x_detect_edges (struct frame *f, struct image *img, int *matrix, int color_adjust)
4810 XColor *colors = x_to_xcolors (f, img, 1);
4811 XColor *new, *p;
4812 int x, y, i, sum;
4813 ptrdiff_t nbytes;
4815 for (i = sum = 0; i < 9; ++i)
4816 sum += eabs (matrix[i]);
4818 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4820 if (INT_MULTIPLY_WRAPV (sizeof *new, img->width, &nbytes)
4821 || INT_MULTIPLY_WRAPV (img->height, nbytes, &nbytes))
4822 memory_full (SIZE_MAX);
4823 new = xmalloc (nbytes);
4825 for (y = 0; y < img->height; ++y)
4827 p = COLOR (new, 0, y);
4828 p->red = p->green = p->blue = 0xffff/2;
4829 p = COLOR (new, img->width - 1, y);
4830 p->red = p->green = p->blue = 0xffff/2;
4833 for (x = 1; x < img->width - 1; ++x)
4835 p = COLOR (new, x, 0);
4836 p->red = p->green = p->blue = 0xffff/2;
4837 p = COLOR (new, x, img->height - 1);
4838 p->red = p->green = p->blue = 0xffff/2;
4841 for (y = 1; y < img->height - 1; ++y)
4843 p = COLOR (new, 1, y);
4845 for (x = 1; x < img->width - 1; ++x, ++p)
4847 int r, g, b, yy, xx;
4849 r = g = b = i = 0;
4850 for (yy = y - 1; yy < y + 2; ++yy)
4851 for (xx = x - 1; xx < x + 2; ++xx, ++i)
4852 if (matrix[i])
4854 XColor *t = COLOR (colors, xx, yy);
4855 r += matrix[i] * t->red;
4856 g += matrix[i] * t->green;
4857 b += matrix[i] * t->blue;
4860 r = (r / sum + color_adjust) & 0xffff;
4861 g = (g / sum + color_adjust) & 0xffff;
4862 b = (b / sum + color_adjust) & 0xffff;
4863 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
4867 xfree (colors);
4868 x_from_xcolors (f, img, new);
4870 #undef COLOR
4874 /* Perform the pre-defined `emboss' edge-detection on image IMG
4875 on frame F. */
4877 static void
4878 x_emboss (struct frame *f, struct image *img)
4880 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
4884 /* Transform image IMG which is used on frame F with a Laplace
4885 edge-detection algorithm. The result is an image that can be used
4886 to draw disabled buttons, for example. */
4888 static void
4889 x_laplace (struct frame *f, struct image *img)
4891 x_detect_edges (f, img, laplace_matrix, 45000);
4895 /* Perform edge-detection on image IMG on frame F, with specified
4896 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4898 MATRIX must be either
4900 - a list of at least 9 numbers in row-major form
4901 - a vector of at least 9 numbers
4903 COLOR_ADJUST nil means use a default; otherwise it must be a
4904 number. */
4906 static void
4907 x_edge_detection (struct frame *f, struct image *img, Lisp_Object matrix,
4908 Lisp_Object color_adjust)
4910 int i = 0;
4911 int trans[9];
4913 if (CONSP (matrix))
4915 for (i = 0;
4916 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
4917 ++i, matrix = XCDR (matrix))
4918 trans[i] = XFLOATINT (XCAR (matrix));
4920 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
4922 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
4923 trans[i] = XFLOATINT (AREF (matrix, i));
4926 if (NILP (color_adjust))
4927 color_adjust = make_number (0xffff / 2);
4929 if (i == 9 && NUMBERP (color_adjust))
4930 x_detect_edges (f, img, trans, XFLOATINT (color_adjust));
4934 /* Transform image IMG on frame F so that it looks disabled. */
4936 static void
4937 x_disable_image (struct frame *f, struct image *img)
4939 Display_Info *dpyinfo = FRAME_DISPLAY_INFO (f);
4940 #ifdef HAVE_NTGUI
4941 int n_planes = dpyinfo->n_planes * dpyinfo->n_cbits;
4942 #else
4943 int n_planes = dpyinfo->n_planes;
4944 #endif /* HAVE_NTGUI */
4946 if (n_planes >= 2)
4948 /* Color (or grayscale). Convert to gray, and equalize. Just
4949 drawing such images with a stipple can look very odd, so
4950 we're using this method instead. */
4951 XColor *colors = x_to_xcolors (f, img, 1);
4952 XColor *p, *end;
4953 const int h = 15000;
4954 const int l = 30000;
4956 for (p = colors, end = colors + img->width * img->height;
4957 p < end;
4958 ++p)
4960 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
4961 int i2 = (0xffff - h - l) * i / 0xffff + l;
4962 p->red = p->green = p->blue = i2;
4965 x_from_xcolors (f, img, colors);
4968 /* Draw a cross over the disabled image, if we must or if we
4969 should. */
4970 if (n_planes < 2 || cross_disabled_images)
4972 #ifndef HAVE_NTGUI
4973 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4975 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4977 Display *dpy = FRAME_X_DISPLAY (f);
4978 GC gc;
4980 image_sync_to_pixmaps (f, img);
4981 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
4982 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
4983 XDrawLine (dpy, img->pixmap, gc, 0, 0,
4984 img->width - 1, img->height - 1);
4985 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
4986 img->width - 1, 0);
4987 XFreeGC (dpy, gc);
4989 if (img->mask)
4991 gc = XCreateGC (dpy, img->mask, 0, NULL);
4992 XSetForeground (dpy, gc, MaskForeground (f));
4993 XDrawLine (dpy, img->mask, gc, 0, 0,
4994 img->width - 1, img->height - 1);
4995 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
4996 img->width - 1, 0);
4997 XFreeGC (dpy, gc);
4999 #endif /* !HAVE_NS */
5000 #else
5001 HDC hdc, bmpdc;
5002 HGDIOBJ prev;
5004 hdc = get_frame_dc (f);
5005 bmpdc = CreateCompatibleDC (hdc);
5006 release_frame_dc (f, hdc);
5008 prev = SelectObject (bmpdc, img->pixmap);
5010 SetTextColor (bmpdc, BLACK_PIX_DEFAULT (f));
5011 MoveToEx (bmpdc, 0, 0, NULL);
5012 LineTo (bmpdc, img->width - 1, img->height - 1);
5013 MoveToEx (bmpdc, 0, img->height - 1, NULL);
5014 LineTo (bmpdc, img->width - 1, 0);
5016 if (img->mask)
5018 SelectObject (bmpdc, img->mask);
5019 SetTextColor (bmpdc, WHITE_PIX_DEFAULT (f));
5020 MoveToEx (bmpdc, 0, 0, NULL);
5021 LineTo (bmpdc, img->width - 1, img->height - 1);
5022 MoveToEx (bmpdc, 0, img->height - 1, NULL);
5023 LineTo (bmpdc, img->width - 1, 0);
5025 SelectObject (bmpdc, prev);
5026 DeleteDC (bmpdc);
5027 #endif /* HAVE_NTGUI */
5032 /* Build a mask for image IMG which is used on frame F. FILE is the
5033 name of an image file, for error messages. HOW determines how to
5034 determine the background color of IMG. If it is a list '(R G B)',
5035 with R, G, and B being integers >= 0, take that as the color of the
5036 background. Otherwise, determine the background color of IMG
5037 heuristically. */
5039 static void
5040 x_build_heuristic_mask (struct frame *f, struct image *img, Lisp_Object how)
5042 XImagePtr_or_DC ximg;
5043 #ifdef HAVE_NTGUI
5044 HGDIOBJ prev;
5045 char *mask_img;
5046 int row_width;
5047 #elif !defined HAVE_NS
5048 XImagePtr mask_img;
5049 #endif
5050 int x, y;
5051 bool use_img_background;
5052 unsigned long bg = 0;
5054 if (img->mask)
5055 x_clear_image_1 (f, img, CLEAR_IMAGE_MASK);
5057 #ifndef HAVE_NTGUI
5058 #ifndef HAVE_NS
5059 /* Create an image and pixmap serving as mask. */
5060 if (! image_create_x_image_and_pixmap (f, img, img->width, img->height, 1,
5061 &mask_img, 1))
5062 return;
5063 #endif /* !HAVE_NS */
5064 #else
5065 /* Create the bit array serving as mask. */
5066 row_width = (img->width + 7) / 8;
5067 mask_img = xzalloc (row_width * img->height);
5068 #endif /* HAVE_NTGUI */
5070 /* Get the X image or create a memory device context for IMG. */
5071 ximg = image_get_x_image_or_dc (f, img, 0, &prev);
5073 /* Determine the background color of ximg. If HOW is `(R G B)'
5074 take that as color. Otherwise, use the image's background color. */
5075 use_img_background = 1;
5077 if (CONSP (how))
5079 int rgb[3], i;
5081 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
5083 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
5084 how = XCDR (how);
5087 if (i == 3 && NILP (how))
5089 char color_name[30];
5090 sprintf (color_name, "#%04x%04x%04x",
5091 rgb[0] + 0u, rgb[1] + 0u, rgb[2] + 0u);
5092 bg = (
5093 #ifdef HAVE_NTGUI
5094 0x00ffffff & /* Filter out palette info. */
5095 #endif /* HAVE_NTGUI */
5096 x_alloc_image_color (f, img, build_string (color_name), 0));
5097 use_img_background = 0;
5101 if (use_img_background)
5102 bg = four_corners_best (ximg, img->corners, img->width, img->height);
5104 /* Set all bits in mask_img to 1 whose color in ximg is different
5105 from the background color bg. */
5106 #ifndef HAVE_NTGUI
5107 for (y = 0; y < img->height; ++y)
5108 for (x = 0; x < img->width; ++x)
5109 #ifndef HAVE_NS
5110 XPutPixel (mask_img, x, y, (XGetPixel (ximg, x, y) != bg
5111 ? PIX_MASK_DRAW : PIX_MASK_RETAIN));
5112 #else
5113 if (XGetPixel (ximg, x, y) == bg)
5114 ns_set_alpha (ximg, x, y, 0);
5115 #endif /* HAVE_NS */
5116 #ifndef HAVE_NS
5117 /* Fill in the background_transparent field while we have the mask handy. */
5118 image_background_transparent (img, f, mask_img);
5120 /* Put mask_img into the image. */
5121 image_put_x_image (f, img, mask_img, 1);
5122 #endif /* !HAVE_NS */
5123 #else
5124 for (y = 0; y < img->height; ++y)
5125 for (x = 0; x < img->width; ++x)
5127 COLORREF p = GetPixel (ximg, x, y);
5128 if (p != bg)
5129 mask_img[y * row_width + x / 8] |= 1 << (x % 8);
5132 /* Create the mask image. */
5133 img->mask = w32_create_pixmap_from_bitmap_data (img->width, img->height,
5134 mask_img);
5135 /* Fill in the background_transparent field while we have the mask handy. */
5136 SelectObject (ximg, img->mask);
5137 image_background_transparent (img, f, ximg);
5139 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
5140 xfree (mask_img);
5141 #endif /* HAVE_NTGUI */
5143 image_unget_x_image_or_dc (img, 0, ximg, prev);
5147 /***********************************************************************
5148 PBM (mono, gray, color)
5149 ***********************************************************************/
5151 static bool pbm_image_p (Lisp_Object object);
5152 static bool pbm_load (struct frame *f, struct image *img);
5154 /* Indices of image specification fields in gs_format, below. */
5156 enum pbm_keyword_index
5158 PBM_TYPE,
5159 PBM_FILE,
5160 PBM_DATA,
5161 PBM_ASCENT,
5162 PBM_MARGIN,
5163 PBM_RELIEF,
5164 PBM_ALGORITHM,
5165 PBM_HEURISTIC_MASK,
5166 PBM_MASK,
5167 PBM_FOREGROUND,
5168 PBM_BACKGROUND,
5169 PBM_LAST
5172 /* Vector of image_keyword structures describing the format
5173 of valid user-defined image specifications. */
5175 static const struct image_keyword pbm_format[PBM_LAST] =
5177 {":type", IMAGE_SYMBOL_VALUE, 1},
5178 {":file", IMAGE_STRING_VALUE, 0},
5179 {":data", IMAGE_STRING_VALUE, 0},
5180 {":ascent", IMAGE_ASCENT_VALUE, 0},
5181 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
5182 {":relief", IMAGE_INTEGER_VALUE, 0},
5183 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5184 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5185 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5186 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
5187 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5190 /* Structure describing the image type `pbm'. */
5192 static struct image_type pbm_type =
5194 SYMBOL_INDEX (Qpbm),
5195 pbm_image_p,
5196 pbm_load,
5197 x_clear_image,
5198 NULL,
5199 NULL
5203 /* Return true if OBJECT is a valid PBM image specification. */
5205 static bool
5206 pbm_image_p (Lisp_Object object)
5208 struct image_keyword fmt[PBM_LAST];
5210 memcpy (fmt, pbm_format, sizeof fmt);
5212 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
5213 return 0;
5215 /* Must specify either :data or :file. */
5216 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
5220 /* Get next char skipping comments in Netpbm header. Returns -1 at
5221 end of input. */
5223 static int
5224 pbm_next_char (char **s, char *end)
5226 while (*s < end)
5228 unsigned char c = *(*s)++;
5229 if (c != '#')
5230 return c;
5231 while (*s < end)
5233 c = *(*s)++;
5234 if (c == '\n' || c == '\r')
5235 break;
5239 return -1;
5243 /* Scan a decimal number from *S and return it. Advance *S while
5244 reading the number. END is the end of the string. Value is -1 at
5245 end of input. */
5247 static int
5248 pbm_scan_number (char **s, char *end)
5250 int c = 0, val = -1;
5252 /* Skip white-space. */
5253 while ((c = pbm_next_char (s, end)) != -1 && c_isspace (c))
5256 if (c_isdigit (c))
5258 /* Read decimal number. */
5259 val = c - '0';
5260 while ((c = pbm_next_char (s, end)) != -1 && c_isdigit (c))
5261 val = 10 * val + c - '0';
5264 return val;
5268 /* Load PBM image IMG for use on frame F. */
5270 static bool
5271 pbm_load (struct frame *f, struct image *img)
5273 bool raw_p;
5274 int x, y;
5275 int width, height, max_color_idx = 0;
5276 Lisp_Object specified_file;
5277 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
5278 char *contents = NULL;
5279 char *end, *p;
5280 #ifndef USE_CAIRO
5281 XImagePtr ximg;
5282 #endif
5284 specified_file = image_spec_value (img->spec, QCfile, NULL);
5286 if (STRINGP (specified_file))
5288 int fd;
5289 Lisp_Object file = x_find_image_fd (specified_file, &fd);
5290 if (!STRINGP (file))
5292 image_error ("Cannot find image file `%s'", specified_file);
5293 return 0;
5296 ptrdiff_t size;
5297 contents = slurp_file (fd, &size);
5298 if (contents == NULL)
5300 image_error ("Error reading `%s'", file);
5301 return 0;
5304 p = contents;
5305 end = contents + size;
5307 else
5309 Lisp_Object data;
5310 data = image_spec_value (img->spec, QCdata, NULL);
5311 if (!STRINGP (data))
5313 image_error ("Invalid image data `%s'", data);
5314 return 0;
5316 p = SSDATA (data);
5317 end = p + SBYTES (data);
5320 /* Check magic number. */
5321 if (end - p < 2 || *p++ != 'P')
5323 image_error ("Not a PBM image: `%s'", img->spec);
5324 error:
5325 xfree (contents);
5326 img->pixmap = NO_PIXMAP;
5327 return 0;
5330 switch (*p++)
5332 case '1':
5333 raw_p = 0, type = PBM_MONO;
5334 break;
5336 case '2':
5337 raw_p = 0, type = PBM_GRAY;
5338 break;
5340 case '3':
5341 raw_p = 0, type = PBM_COLOR;
5342 break;
5344 case '4':
5345 raw_p = 1, type = PBM_MONO;
5346 break;
5348 case '5':
5349 raw_p = 1, type = PBM_GRAY;
5350 break;
5352 case '6':
5353 raw_p = 1, type = PBM_COLOR;
5354 break;
5356 default:
5357 image_error ("Not a PBM image: `%s'", img->spec);
5358 goto error;
5361 /* Read width, height, maximum color-component. Characters
5362 starting with `#' up to the end of a line are ignored. */
5363 width = pbm_scan_number (&p, end);
5364 height = pbm_scan_number (&p, end);
5366 #ifdef USE_CAIRO
5367 void *data = xmalloc (width * height * 4);
5368 uint32_t *dataptr = data;
5369 #endif
5371 if (type != PBM_MONO)
5373 max_color_idx = pbm_scan_number (&p, end);
5374 if (max_color_idx > 65535 || max_color_idx < 0)
5376 image_error ("Unsupported maximum PBM color value");
5377 goto error;
5381 if (!check_image_size (f, width, height))
5383 image_size_error ();
5384 goto error;
5387 #ifndef USE_CAIRO
5388 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0))
5389 goto error;
5390 #endif
5392 /* Initialize the color hash table. */
5393 init_color_table ();
5395 if (type == PBM_MONO)
5397 unsigned char c = 0;
5398 int g;
5399 struct image_keyword fmt[PBM_LAST];
5400 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
5401 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
5402 #ifdef USE_CAIRO
5403 XColor xfg, xbg;
5404 int fga32, bga32;
5405 #endif
5406 /* Parse the image specification. */
5407 memcpy (fmt, pbm_format, sizeof fmt);
5408 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
5410 /* Get foreground and background colors, maybe allocate colors. */
5411 #ifdef USE_CAIRO
5412 if (! fmt[PBM_FOREGROUND].count
5413 || ! STRINGP (fmt[PBM_FOREGROUND].value)
5414 || ! x_defined_color (f, SSDATA (fmt[PBM_FOREGROUND].value), &xfg, 0))
5416 xfg.pixel = fg;
5417 x_query_color (f, &xfg);
5419 fga32 = xcolor_to_argb32 (xfg);
5421 if (! fmt[PBM_BACKGROUND].count
5422 || ! STRINGP (fmt[PBM_BACKGROUND].value)
5423 || ! x_defined_color (f, SSDATA (fmt[PBM_BACKGROUND].value), &xbg, 0))
5425 xbg.pixel = bg;
5426 x_query_color (f, &xbg);
5428 bga32 = xcolor_to_argb32 (xbg);
5429 #else
5430 if (fmt[PBM_FOREGROUND].count
5431 && STRINGP (fmt[PBM_FOREGROUND].value))
5432 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
5433 if (fmt[PBM_BACKGROUND].count
5434 && STRINGP (fmt[PBM_BACKGROUND].value))
5436 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
5437 img->background = bg;
5438 img->background_valid = 1;
5440 #endif
5442 for (y = 0; y < height; ++y)
5443 for (x = 0; x < width; ++x)
5445 if (raw_p)
5447 if ((x & 7) == 0)
5449 if (p >= end)
5451 #ifdef USE_CAIRO
5452 xfree (data);
5453 #else
5454 x_destroy_x_image (ximg);
5455 #endif
5456 x_clear_image (f, img);
5457 image_error ("Invalid image size in image `%s'",
5458 img->spec);
5459 goto error;
5461 c = *p++;
5463 g = c & 0x80;
5464 c <<= 1;
5466 else
5468 int c = 0;
5469 /* Skip white-space and comments. */
5470 while ((c = pbm_next_char (&p, end)) != -1 && c_isspace (c))
5473 if (c == '0' || c == '1')
5474 g = c - '0';
5475 else
5476 g = 0;
5479 #ifdef USE_CAIRO
5480 *dataptr++ = g ? fga32 : bga32;
5481 #else
5482 XPutPixel (ximg, x, y, g ? fg : bg);
5483 #endif
5486 else
5488 int expected_size = height * width;
5489 if (max_color_idx > 255)
5490 expected_size *= 2;
5491 if (type == PBM_COLOR)
5492 expected_size *= 3;
5494 if (raw_p && p + expected_size > end)
5496 #ifdef USE_CAIRO
5497 xfree (data);
5498 #else
5499 x_destroy_x_image (ximg);
5500 #endif
5501 x_clear_image (f, img);
5502 image_error ("Invalid image size in image `%s'", img->spec);
5503 goto error;
5506 for (y = 0; y < height; ++y)
5507 for (x = 0; x < width; ++x)
5509 int r, g, b;
5511 if (type == PBM_GRAY && raw_p)
5513 r = g = b = *p++;
5514 if (max_color_idx > 255)
5515 r = g = b = r * 256 + *p++;
5517 else if (type == PBM_GRAY)
5518 r = g = b = pbm_scan_number (&p, end);
5519 else if (raw_p)
5521 r = *p++;
5522 if (max_color_idx > 255)
5523 r = r * 256 + *p++;
5524 g = *p++;
5525 if (max_color_idx > 255)
5526 g = g * 256 + *p++;
5527 b = *p++;
5528 if (max_color_idx > 255)
5529 b = b * 256 + *p++;
5531 else
5533 r = pbm_scan_number (&p, end);
5534 g = pbm_scan_number (&p, end);
5535 b = pbm_scan_number (&p, end);
5538 if (r < 0 || g < 0 || b < 0)
5540 #ifdef USE_CAIRO
5541 xfree (data);
5542 #else
5543 x_destroy_x_image (ximg);
5544 #endif
5545 image_error ("Invalid pixel value in image `%s'", img->spec);
5546 goto error;
5549 #ifdef USE_CAIRO
5550 r = (double) r * 255 / max_color_idx;
5551 g = (double) g * 255 / max_color_idx;
5552 b = (double) b * 255 / max_color_idx;
5553 *dataptr++ = (0xffu << 24) | (r << 16) | (g << 8) | b;
5554 #else
5555 /* RGB values are now in the range 0..max_color_idx.
5556 Scale this to the range 0..0xffff supported by X. */
5557 r = (double) r * 65535 / max_color_idx;
5558 g = (double) g * 65535 / max_color_idx;
5559 b = (double) b * 65535 / max_color_idx;
5560 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5561 #endif
5565 #ifdef COLOR_TABLE_SUPPORT
5566 /* Store in IMG->colors the colors allocated for the image, and
5567 free the color table. */
5568 img->colors = colors_in_color_table (&img->ncolors);
5569 free_color_table ();
5570 #endif /* COLOR_TABLE_SUPPORT */
5572 img->width = width;
5573 img->height = height;
5575 /* Maybe fill in the background field while we have ximg handy. */
5577 #ifdef USE_CAIRO
5578 create_cairo_image_surface (img, data, width, height);
5579 #else
5580 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5581 /* Casting avoids a GCC warning. */
5582 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5584 /* Put ximg into the image. */
5585 image_put_x_image (f, img, ximg, 0);
5586 #endif
5588 /* X and W32 versions did it here, MAC version above. ++kfs
5589 img->width = width;
5590 img->height = height; */
5592 xfree (contents);
5593 return 1;
5597 /***********************************************************************
5599 ***********************************************************************/
5601 #if defined (HAVE_PNG) || defined (HAVE_NS) || defined (USE_CAIRO)
5603 /* Function prototypes. */
5605 static bool png_image_p (Lisp_Object object);
5606 static bool png_load (struct frame *f, struct image *img);
5608 /* Indices of image specification fields in png_format, below. */
5610 enum png_keyword_index
5612 PNG_TYPE,
5613 PNG_DATA,
5614 PNG_FILE,
5615 PNG_ASCENT,
5616 PNG_MARGIN,
5617 PNG_RELIEF,
5618 PNG_ALGORITHM,
5619 PNG_HEURISTIC_MASK,
5620 PNG_MASK,
5621 PNG_BACKGROUND,
5622 PNG_LAST
5625 /* Vector of image_keyword structures describing the format
5626 of valid user-defined image specifications. */
5628 static const struct image_keyword png_format[PNG_LAST] =
5630 {":type", IMAGE_SYMBOL_VALUE, 1},
5631 {":data", IMAGE_STRING_VALUE, 0},
5632 {":file", IMAGE_STRING_VALUE, 0},
5633 {":ascent", IMAGE_ASCENT_VALUE, 0},
5634 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
5635 {":relief", IMAGE_INTEGER_VALUE, 0},
5636 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5637 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5638 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5639 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5642 #if defined HAVE_NTGUI && defined WINDOWSNT
5643 static bool init_png_functions (void);
5644 #else
5645 #define init_png_functions NULL
5646 #endif
5648 /* Structure describing the image type `png'. */
5650 static struct image_type png_type =
5652 SYMBOL_INDEX (Qpng),
5653 png_image_p,
5654 png_load,
5655 x_clear_image,
5656 init_png_functions,
5657 NULL
5660 /* Return true if OBJECT is a valid PNG image specification. */
5662 static bool
5663 png_image_p (Lisp_Object object)
5665 struct image_keyword fmt[PNG_LAST];
5666 memcpy (fmt, png_format, sizeof fmt);
5668 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
5669 return 0;
5671 /* Must specify either the :data or :file keyword. */
5672 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
5675 #endif /* HAVE_PNG || HAVE_NS || USE_CAIRO */
5678 #if (defined HAVE_PNG && !defined HAVE_NS) || defined USE_CAIRO
5680 # ifdef WINDOWSNT
5681 /* PNG library details. */
5683 DEF_DLL_FN (png_voidp, png_get_io_ptr, (png_structp));
5684 DEF_DLL_FN (int, png_sig_cmp, (png_bytep, png_size_t, png_size_t));
5685 DEF_DLL_FN (png_structp, png_create_read_struct,
5686 (png_const_charp, png_voidp, png_error_ptr, png_error_ptr));
5687 DEF_DLL_FN (png_infop, png_create_info_struct, (png_structp));
5688 DEF_DLL_FN (void, png_destroy_read_struct,
5689 (png_structpp, png_infopp, png_infopp));
5690 DEF_DLL_FN (void, png_set_read_fn, (png_structp, png_voidp, png_rw_ptr));
5691 DEF_DLL_FN (void, png_set_sig_bytes, (png_structp, int));
5692 DEF_DLL_FN (void, png_read_info, (png_structp, png_infop));
5693 DEF_DLL_FN (png_uint_32, png_get_IHDR,
5694 (png_structp, png_infop, png_uint_32 *, png_uint_32 *,
5695 int *, int *, int *, int *, int *));
5696 DEF_DLL_FN (png_uint_32, png_get_valid, (png_structp, png_infop, png_uint_32));
5697 DEF_DLL_FN (void, png_set_strip_16, (png_structp));
5698 DEF_DLL_FN (void, png_set_expand, (png_structp));
5699 DEF_DLL_FN (void, png_set_gray_to_rgb, (png_structp));
5700 DEF_DLL_FN (void, png_set_background,
5701 (png_structp, png_color_16p, int, int, double));
5702 DEF_DLL_FN (png_uint_32, png_get_bKGD,
5703 (png_structp, png_infop, png_color_16p *));
5704 DEF_DLL_FN (void, png_read_update_info, (png_structp, png_infop));
5705 DEF_DLL_FN (png_byte, png_get_channels, (png_structp, png_infop));
5706 DEF_DLL_FN (png_size_t, png_get_rowbytes, (png_structp, png_infop));
5707 DEF_DLL_FN (void, png_read_image, (png_structp, png_bytepp));
5708 DEF_DLL_FN (void, png_read_end, (png_structp, png_infop));
5709 DEF_DLL_FN (void, png_error, (png_structp, png_const_charp));
5711 # if (PNG_LIBPNG_VER >= 10500)
5712 DEF_DLL_FN (void, png_longjmp, (png_structp, int)) PNG_NORETURN;
5713 DEF_DLL_FN (jmp_buf *, png_set_longjmp_fn,
5714 (png_structp, png_longjmp_ptr, size_t));
5715 # endif /* libpng version >= 1.5 */
5717 static bool
5718 init_png_functions (void)
5720 HMODULE library;
5722 if (!(library = w32_delayed_load (Qpng)))
5723 return 0;
5725 LOAD_DLL_FN (library, png_get_io_ptr);
5726 LOAD_DLL_FN (library, png_sig_cmp);
5727 LOAD_DLL_FN (library, png_create_read_struct);
5728 LOAD_DLL_FN (library, png_create_info_struct);
5729 LOAD_DLL_FN (library, png_destroy_read_struct);
5730 LOAD_DLL_FN (library, png_set_read_fn);
5731 LOAD_DLL_FN (library, png_set_sig_bytes);
5732 LOAD_DLL_FN (library, png_read_info);
5733 LOAD_DLL_FN (library, png_get_IHDR);
5734 LOAD_DLL_FN (library, png_get_valid);
5735 LOAD_DLL_FN (library, png_set_strip_16);
5736 LOAD_DLL_FN (library, png_set_expand);
5737 LOAD_DLL_FN (library, png_set_gray_to_rgb);
5738 LOAD_DLL_FN (library, png_set_background);
5739 LOAD_DLL_FN (library, png_get_bKGD);
5740 LOAD_DLL_FN (library, png_read_update_info);
5741 LOAD_DLL_FN (library, png_get_channels);
5742 LOAD_DLL_FN (library, png_get_rowbytes);
5743 LOAD_DLL_FN (library, png_read_image);
5744 LOAD_DLL_FN (library, png_read_end);
5745 LOAD_DLL_FN (library, png_error);
5747 # if (PNG_LIBPNG_VER >= 10500)
5748 LOAD_DLL_FN (library, png_longjmp);
5749 LOAD_DLL_FN (library, png_set_longjmp_fn);
5750 # endif /* libpng version >= 1.5 */
5752 return 1;
5755 # undef png_create_info_struct
5756 # undef png_create_read_struct
5757 # undef png_destroy_read_struct
5758 # undef png_error
5759 # undef png_get_bKGD
5760 # undef png_get_channels
5761 # undef png_get_IHDR
5762 # undef png_get_io_ptr
5763 # undef png_get_rowbytes
5764 # undef png_get_valid
5765 # undef png_longjmp
5766 # undef png_read_end
5767 # undef png_read_image
5768 # undef png_read_info
5769 # undef png_read_update_info
5770 # undef png_set_background
5771 # undef png_set_expand
5772 # undef png_set_gray_to_rgb
5773 # undef png_set_longjmp_fn
5774 # undef png_set_read_fn
5775 # undef png_set_sig_bytes
5776 # undef png_set_strip_16
5777 # undef png_sig_cmp
5779 # define png_create_info_struct fn_png_create_info_struct
5780 # define png_create_read_struct fn_png_create_read_struct
5781 # define png_destroy_read_struct fn_png_destroy_read_struct
5782 # define png_error fn_png_error
5783 # define png_get_bKGD fn_png_get_bKGD
5784 # define png_get_channels fn_png_get_channels
5785 # define png_get_IHDR fn_png_get_IHDR
5786 # define png_get_io_ptr fn_png_get_io_ptr
5787 # define png_get_rowbytes fn_png_get_rowbytes
5788 # define png_get_valid fn_png_get_valid
5789 # define png_longjmp fn_png_longjmp
5790 # define png_read_end fn_png_read_end
5791 # define png_read_image fn_png_read_image
5792 # define png_read_info fn_png_read_info
5793 # define png_read_update_info fn_png_read_update_info
5794 # define png_set_background fn_png_set_background
5795 # define png_set_expand fn_png_set_expand
5796 # define png_set_gray_to_rgb fn_png_set_gray_to_rgb
5797 # define png_set_longjmp_fn fn_png_set_longjmp_fn
5798 # define png_set_read_fn fn_png_set_read_fn
5799 # define png_set_sig_bytes fn_png_set_sig_bytes
5800 # define png_set_strip_16 fn_png_set_strip_16
5801 # define png_sig_cmp fn_png_sig_cmp
5803 # endif /* WINDOWSNT */
5805 /* Fast implementations of setjmp and longjmp. Although setjmp and longjmp
5806 will do, POSIX _setjmp and _longjmp (if available) are often faster.
5807 Do not use sys_setjmp, as PNG supports only jmp_buf.
5808 It's OK if the longjmp substitute restores the signal mask. */
5809 # ifdef HAVE__SETJMP
5810 # define FAST_SETJMP(j) _setjmp (j)
5811 # define FAST_LONGJMP _longjmp
5812 # else
5813 # define FAST_SETJMP(j) setjmp (j)
5814 # define FAST_LONGJMP longjmp
5815 # endif
5817 # if PNG_LIBPNG_VER < 10500
5818 # define PNG_LONGJMP(ptr) FAST_LONGJMP ((ptr)->jmpbuf, 1)
5819 # define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5820 # else
5821 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5822 # define PNG_LONGJMP(ptr) png_longjmp (ptr, 1)
5823 # define PNG_JMPBUF(ptr) \
5824 (*png_set_longjmp_fn (ptr, FAST_LONGJMP, sizeof (jmp_buf)))
5825 # endif
5827 /* Error and warning handlers installed when the PNG library
5828 is initialized. */
5830 static _Noreturn void
5831 my_png_error (png_struct *png_ptr, const char *msg)
5833 eassert (png_ptr != NULL);
5834 /* Avoid compiler warning about deprecated direct access to
5835 png_ptr's fields in libpng versions 1.4.x. */
5836 image_error ("PNG error: %s", build_string (msg));
5837 PNG_LONGJMP (png_ptr);
5841 static void
5842 my_png_warning (png_struct *png_ptr, const char *msg)
5844 eassert (png_ptr != NULL);
5845 image_error ("PNG warning: %s", build_string (msg));
5848 /* Memory source for PNG decoding. */
5850 struct png_memory_storage
5852 unsigned char *bytes; /* The data */
5853 ptrdiff_t len; /* How big is it? */
5854 ptrdiff_t index; /* Where are we? */
5858 /* Function set as reader function when reading PNG image from memory.
5859 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5860 bytes from the input to DATA. */
5862 static void
5863 png_read_from_memory (png_structp png_ptr, png_bytep data, png_size_t length)
5865 struct png_memory_storage *tbr = png_get_io_ptr (png_ptr);
5867 if (length > tbr->len - tbr->index)
5868 png_error (png_ptr, "Read error");
5870 memcpy (data, tbr->bytes + tbr->index, length);
5871 tbr->index = tbr->index + length;
5875 /* Function set as reader function when reading PNG image from a file.
5876 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5877 bytes from the input to DATA. */
5879 static void
5880 png_read_from_file (png_structp png_ptr, png_bytep data, png_size_t length)
5882 FILE *fp = png_get_io_ptr (png_ptr);
5884 if (fread (data, 1, length, fp) < length)
5885 png_error (png_ptr, "Read error");
5889 /* Load PNG image IMG for use on frame F. Value is true if
5890 successful. */
5892 struct png_load_context
5894 /* These are members so that longjmp doesn't munge local variables. */
5895 png_struct *png_ptr;
5896 png_info *info_ptr;
5897 png_info *end_info;
5898 FILE *fp;
5899 png_byte *pixels;
5900 png_byte **rows;
5903 static bool
5904 png_load_body (struct frame *f, struct image *img, struct png_load_context *c)
5906 Lisp_Object specified_file, specified_data;
5907 FILE *fp = NULL;
5908 int x, y;
5909 ptrdiff_t i;
5910 png_struct *png_ptr;
5911 png_info *info_ptr = NULL, *end_info = NULL;
5912 png_byte sig[8];
5913 png_byte *pixels = NULL;
5914 png_byte **rows = NULL;
5915 png_uint_32 width, height;
5916 int bit_depth, color_type, interlace_type;
5917 png_byte channels;
5918 png_uint_32 row_bytes;
5919 bool transparent_p;
5920 struct png_memory_storage tbr; /* Data to be read */
5921 ptrdiff_t nbytes;
5923 #ifdef USE_CAIRO
5924 unsigned char *data = 0;
5925 uint32_t *dataptr;
5926 #else
5927 XImagePtr ximg, mask_img = NULL;
5928 #endif
5930 /* Find out what file to load. */
5931 specified_file = image_spec_value (img->spec, QCfile, NULL);
5932 specified_data = image_spec_value (img->spec, QCdata, NULL);
5934 if (NILP (specified_data))
5936 int fd;
5937 Lisp_Object file = x_find_image_fd (specified_file, &fd);
5938 if (!STRINGP (file))
5940 image_error ("Cannot find image file `%s'", specified_file);
5941 return 0;
5944 /* Open the image file. */
5945 fp = fdopen (fd, "rb");
5946 if (!fp)
5948 image_error ("Cannot open image file `%s'", file);
5949 return 0;
5952 /* Check PNG signature. */
5953 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
5954 || png_sig_cmp (sig, 0, sizeof sig))
5956 fclose (fp);
5957 image_error ("Not a PNG file: `%s'", file);
5958 return 0;
5961 else
5963 if (!STRINGP (specified_data))
5965 image_error ("Invalid image data `%s'", specified_data);
5966 return 0;
5969 /* Read from memory. */
5970 tbr.bytes = SDATA (specified_data);
5971 tbr.len = SBYTES (specified_data);
5972 tbr.index = 0;
5974 /* Check PNG signature. */
5975 if (tbr.len < sizeof sig
5976 || png_sig_cmp (tbr.bytes, 0, sizeof sig))
5978 image_error ("Not a PNG image: `%s'", img->spec);
5979 return 0;
5982 /* Need to skip past the signature. */
5983 tbr.bytes += sizeof (sig);
5986 /* Initialize read and info structs for PNG lib. */
5987 png_ptr = png_create_read_struct (PNG_LIBPNG_VER_STRING,
5988 NULL, my_png_error,
5989 my_png_warning);
5990 if (png_ptr)
5992 info_ptr = png_create_info_struct (png_ptr);
5993 end_info = png_create_info_struct (png_ptr);
5996 c->png_ptr = png_ptr;
5997 c->info_ptr = info_ptr;
5998 c->end_info = end_info;
5999 c->fp = fp;
6000 c->pixels = pixels;
6001 c->rows = rows;
6003 if (! (info_ptr && end_info))
6005 png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
6006 png_ptr = 0;
6008 if (! png_ptr)
6010 if (fp) fclose (fp);
6011 return 0;
6014 /* Set error jump-back. We come back here when the PNG library
6015 detects an error. */
6016 if (FAST_SETJMP (PNG_JMPBUF (png_ptr)))
6018 error:
6019 if (c->png_ptr)
6020 png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
6021 xfree (c->pixels);
6022 xfree (c->rows);
6023 if (c->fp)
6024 fclose (c->fp);
6025 return 0;
6028 /* Read image info. */
6029 if (!NILP (specified_data))
6030 png_set_read_fn (png_ptr, &tbr, png_read_from_memory);
6031 else
6032 png_set_read_fn (png_ptr, fp, png_read_from_file);
6034 png_set_sig_bytes (png_ptr, sizeof sig);
6035 png_read_info (png_ptr, info_ptr);
6036 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
6037 &interlace_type, NULL, NULL);
6039 if (! (width <= INT_MAX && height <= INT_MAX
6040 && check_image_size (f, width, height)))
6042 image_size_error ();
6043 goto error;
6046 #ifndef USE_CAIRO
6047 /* Create the X image and pixmap now, so that the work below can be
6048 omitted if the image is too large for X. */
6049 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0))
6050 goto error;
6051 #endif
6053 /* If image contains simply transparency data, we prefer to
6054 construct a clipping mask. */
6055 if (png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
6056 transparent_p = 1;
6057 else
6058 transparent_p = 0;
6060 /* This function is easier to write if we only have to handle
6061 one data format: RGB or RGBA with 8 bits per channel. Let's
6062 transform other formats into that format. */
6064 /* Strip more than 8 bits per channel. */
6065 if (bit_depth == 16)
6066 png_set_strip_16 (png_ptr);
6068 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
6069 if available. */
6070 png_set_expand (png_ptr);
6072 /* Convert grayscale images to RGB. */
6073 if (color_type == PNG_COLOR_TYPE_GRAY
6074 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
6075 png_set_gray_to_rgb (png_ptr);
6077 /* Handle alpha channel by combining the image with a background
6078 color. Do this only if a real alpha channel is supplied. For
6079 simple transparency, we prefer a clipping mask. */
6080 if (!transparent_p)
6082 /* png_color_16 *image_bg; */
6083 Lisp_Object specified_bg
6084 = image_spec_value (img->spec, QCbackground, NULL);
6085 XColor color;
6087 /* If the user specified a color, try to use it; if not, use the
6088 current frame background, ignoring any default background
6089 color set by the image. */
6090 if (STRINGP (specified_bg)
6091 ? x_defined_color (f, SSDATA (specified_bg), &color, false)
6092 : (x_query_frame_background_color (f, &color), true))
6093 /* The user specified `:background', use that. */
6095 int shift = bit_depth == 16 ? 0 : 8;
6096 png_color_16 bg = { 0 };
6097 bg.red = color.red >> shift;
6098 bg.green = color.green >> shift;
6099 bg.blue = color.blue >> shift;
6101 png_set_background (png_ptr, &bg,
6102 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
6106 /* Update info structure. */
6107 png_read_update_info (png_ptr, info_ptr);
6109 /* Get number of channels. Valid values are 1 for grayscale images
6110 and images with a palette, 2 for grayscale images with transparency
6111 information (alpha channel), 3 for RGB images, and 4 for RGB
6112 images with alpha channel, i.e. RGBA. If conversions above were
6113 sufficient we should only have 3 or 4 channels here. */
6114 channels = png_get_channels (png_ptr, info_ptr);
6115 eassert (channels == 3 || channels == 4);
6117 /* Number of bytes needed for one row of the image. */
6118 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
6120 /* Allocate memory for the image. */
6121 if (INT_MULTIPLY_WRAPV (row_bytes, sizeof *pixels, &nbytes)
6122 || INT_MULTIPLY_WRAPV (nbytes, height, &nbytes))
6123 memory_full (SIZE_MAX);
6124 c->pixels = pixels = xmalloc (nbytes);
6125 c->rows = rows = xmalloc (height * sizeof *rows);
6126 for (i = 0; i < height; ++i)
6127 rows[i] = pixels + i * row_bytes;
6129 /* Read the entire image. */
6130 png_read_image (png_ptr, rows);
6131 png_read_end (png_ptr, info_ptr);
6132 if (fp)
6134 fclose (fp);
6135 c->fp = NULL;
6138 #ifdef USE_CAIRO
6139 data = (unsigned char *) xmalloc (width * height * 4);
6140 dataptr = (uint32_t *) data;
6141 #else
6142 /* Create an image and pixmap serving as mask if the PNG image
6143 contains an alpha channel. */
6144 if (channels == 4
6145 && !transparent_p
6146 && !image_create_x_image_and_pixmap (f, img, width, height, 1,
6147 &mask_img, 1))
6149 x_destroy_x_image (ximg);
6150 x_clear_image_1 (f, img, CLEAR_IMAGE_PIXMAP);
6151 goto error;
6153 #endif
6155 /* Fill the X image and mask from PNG data. */
6156 init_color_table ();
6158 for (y = 0; y < height; ++y)
6160 png_byte *p = rows[y];
6162 for (x = 0; x < width; ++x)
6164 int r, g, b;
6166 #ifdef USE_CAIRO
6167 int a = 0xff;
6168 r = *p++;
6169 g = *p++;
6170 b = *p++;
6171 if (channels == 4) a = *p++;
6172 *dataptr++ = (a << 24) | (r << 16) | (g << 8) | b;
6173 #else
6174 r = *p++ << 8;
6175 g = *p++ << 8;
6176 b = *p++ << 8;
6177 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
6178 /* An alpha channel, aka mask channel, associates variable
6179 transparency with an image. Where other image formats
6180 support binary transparency---fully transparent or fully
6181 opaque---PNG allows up to 254 levels of partial transparency.
6182 The PNG library implements partial transparency by combining
6183 the image with a specified background color.
6185 I'm not sure how to handle this here nicely: because the
6186 background on which the image is displayed may change, for
6187 real alpha channel support, it would be necessary to create
6188 a new image for each possible background.
6190 What I'm doing now is that a mask is created if we have
6191 boolean transparency information. Otherwise I'm using
6192 the frame's background color to combine the image with. */
6194 if (channels == 4)
6196 if (mask_img)
6197 XPutPixel (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN);
6198 ++p;
6200 #endif
6204 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6205 /* Set IMG's background color from the PNG image, unless the user
6206 overrode it. */
6208 png_color_16 *bg;
6209 if (png_get_bKGD (png_ptr, info_ptr, &bg))
6211 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
6212 img->background_valid = 1;
6216 # ifdef COLOR_TABLE_SUPPORT
6217 /* Remember colors allocated for this image. */
6218 img->colors = colors_in_color_table (&img->ncolors);
6219 free_color_table ();
6220 # endif /* COLOR_TABLE_SUPPORT */
6222 /* Clean up. */
6223 png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
6224 xfree (rows);
6225 xfree (pixels);
6227 img->width = width;
6228 img->height = height;
6230 #ifdef USE_CAIRO
6231 create_cairo_image_surface (img, data, width, height);
6232 #else
6233 /* Maybe fill in the background field while we have ximg handy.
6234 Casting avoids a GCC warning. */
6235 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6237 /* Put ximg into the image. */
6238 image_put_x_image (f, img, ximg, 0);
6240 /* Same for the mask. */
6241 if (mask_img)
6243 /* Fill in the background_transparent field while we have the
6244 mask handy. Casting avoids a GCC warning. */
6245 image_background_transparent (img, f, (XImagePtr_or_DC)mask_img);
6247 image_put_x_image (f, img, mask_img, 1);
6249 #endif
6251 return 1;
6254 static bool
6255 png_load (struct frame *f, struct image *img)
6257 struct png_load_context c;
6258 return png_load_body (f, img, &c);
6261 #elif defined HAVE_NS
6263 static bool
6264 png_load (struct frame *f, struct image *img)
6266 return ns_load_image (f, img,
6267 image_spec_value (img->spec, QCfile, NULL),
6268 image_spec_value (img->spec, QCdata, NULL));
6272 #endif /* HAVE_NS */
6276 /***********************************************************************
6277 JPEG
6278 ***********************************************************************/
6280 #if defined (HAVE_JPEG) || defined (HAVE_NS)
6282 static bool jpeg_image_p (Lisp_Object object);
6283 static bool jpeg_load (struct frame *f, struct image *img);
6285 /* Indices of image specification fields in gs_format, below. */
6287 enum jpeg_keyword_index
6289 JPEG_TYPE,
6290 JPEG_DATA,
6291 JPEG_FILE,
6292 JPEG_ASCENT,
6293 JPEG_MARGIN,
6294 JPEG_RELIEF,
6295 JPEG_ALGORITHM,
6296 JPEG_HEURISTIC_MASK,
6297 JPEG_MASK,
6298 JPEG_BACKGROUND,
6299 JPEG_LAST
6302 /* Vector of image_keyword structures describing the format
6303 of valid user-defined image specifications. */
6305 static const struct image_keyword jpeg_format[JPEG_LAST] =
6307 {":type", IMAGE_SYMBOL_VALUE, 1},
6308 {":data", IMAGE_STRING_VALUE, 0},
6309 {":file", IMAGE_STRING_VALUE, 0},
6310 {":ascent", IMAGE_ASCENT_VALUE, 0},
6311 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
6312 {":relief", IMAGE_INTEGER_VALUE, 0},
6313 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6314 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6315 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6316 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
6319 #if defined HAVE_NTGUI && defined WINDOWSNT
6320 static bool init_jpeg_functions (void);
6321 #else
6322 #define init_jpeg_functions NULL
6323 #endif
6325 /* Structure describing the image type `jpeg'. */
6327 static struct image_type jpeg_type =
6329 SYMBOL_INDEX (Qjpeg),
6330 jpeg_image_p,
6331 jpeg_load,
6332 x_clear_image,
6333 init_jpeg_functions,
6334 NULL
6337 /* Return true if OBJECT is a valid JPEG image specification. */
6339 static bool
6340 jpeg_image_p (Lisp_Object object)
6342 struct image_keyword fmt[JPEG_LAST];
6344 memcpy (fmt, jpeg_format, sizeof fmt);
6346 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
6347 return 0;
6349 /* Must specify either the :data or :file keyword. */
6350 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
6353 #endif /* HAVE_JPEG || HAVE_NS */
6355 #ifdef HAVE_JPEG
6357 /* Work around a warning about HAVE_STDLIB_H being redefined in
6358 jconfig.h. */
6359 # ifdef HAVE_STDLIB_H
6360 # undef HAVE_STDLIB_H
6361 # endif
6363 # if defined (HAVE_NTGUI) && !defined (__WIN32__)
6364 /* In older releases of the jpeg library, jpeglib.h will define boolean
6365 differently depending on __WIN32__, so make sure it is defined. */
6366 # define __WIN32__ 1
6367 # endif
6369 /* rpcndr.h (via windows.h) and jpeglib.h both define boolean types.
6370 Some versions of jpeglib try to detect whether rpcndr.h is loaded,
6371 using the Windows boolean type instead of the jpeglib boolean type
6372 if so. Cygwin jpeglib, however, doesn't try to detect whether its
6373 headers are included along with windows.h, so under Cygwin, jpeglib
6374 attempts to define a conflicting boolean type. Worse, forcing
6375 Cygwin jpeglib headers to use the Windows boolean type doesn't work
6376 because it created an ABI incompatibility between the
6377 already-compiled jpeg library and the header interface definition.
6379 The best we can do is to define jpeglib's boolean type to a
6380 different name. This name, jpeg_boolean, remains in effect through
6381 the rest of image.c.
6383 # if defined CYGWIN && defined HAVE_NTGUI
6384 # define boolean jpeg_boolean
6385 # endif
6386 # include <jpeglib.h>
6387 # include <jerror.h>
6389 # ifdef WINDOWSNT
6391 /* JPEG library details. */
6392 DEF_DLL_FN (void, jpeg_CreateDecompress, (j_decompress_ptr, int, size_t));
6393 DEF_DLL_FN (boolean, jpeg_start_decompress, (j_decompress_ptr));
6394 DEF_DLL_FN (boolean, jpeg_finish_decompress, (j_decompress_ptr));
6395 DEF_DLL_FN (void, jpeg_destroy_decompress, (j_decompress_ptr));
6396 DEF_DLL_FN (int, jpeg_read_header, (j_decompress_ptr, boolean));
6397 DEF_DLL_FN (JDIMENSION, jpeg_read_scanlines,
6398 (j_decompress_ptr, JSAMPARRAY, JDIMENSION));
6399 DEF_DLL_FN (struct jpeg_error_mgr *, jpeg_std_error,
6400 (struct jpeg_error_mgr *));
6401 DEF_DLL_FN (boolean, jpeg_resync_to_restart, (j_decompress_ptr, int));
6403 static bool
6404 init_jpeg_functions (void)
6406 HMODULE library;
6408 if (!(library = w32_delayed_load (Qjpeg)))
6409 return 0;
6411 LOAD_DLL_FN (library, jpeg_finish_decompress);
6412 LOAD_DLL_FN (library, jpeg_read_scanlines);
6413 LOAD_DLL_FN (library, jpeg_start_decompress);
6414 LOAD_DLL_FN (library, jpeg_read_header);
6415 LOAD_DLL_FN (library, jpeg_CreateDecompress);
6416 LOAD_DLL_FN (library, jpeg_destroy_decompress);
6417 LOAD_DLL_FN (library, jpeg_std_error);
6418 LOAD_DLL_FN (library, jpeg_resync_to_restart);
6419 return 1;
6422 # undef jpeg_CreateDecompress
6423 # undef jpeg_destroy_decompress
6424 # undef jpeg_finish_decompress
6425 # undef jpeg_read_header
6426 # undef jpeg_read_scanlines
6427 # undef jpeg_resync_to_restart
6428 # undef jpeg_start_decompress
6429 # undef jpeg_std_error
6431 # define jpeg_CreateDecompress fn_jpeg_CreateDecompress
6432 # define jpeg_destroy_decompress fn_jpeg_destroy_decompress
6433 # define jpeg_finish_decompress fn_jpeg_finish_decompress
6434 # define jpeg_read_header fn_jpeg_read_header
6435 # define jpeg_read_scanlines fn_jpeg_read_scanlines
6436 # define jpeg_resync_to_restart fn_jpeg_resync_to_restart
6437 # define jpeg_start_decompress fn_jpeg_start_decompress
6438 # define jpeg_std_error fn_jpeg_std_error
6440 /* Wrapper since we can't directly assign the function pointer
6441 to another function pointer that was declared more completely easily. */
6442 static boolean
6443 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo, int desired)
6445 return jpeg_resync_to_restart (cinfo, desired);
6447 # undef jpeg_resync_to_restart
6448 # define jpeg_resync_to_restart jpeg_resync_to_restart_wrapper
6450 # endif /* WINDOWSNT */
6452 struct my_jpeg_error_mgr
6454 struct jpeg_error_mgr pub;
6455 sys_jmp_buf setjmp_buffer;
6457 /* The remaining members are so that longjmp doesn't munge local
6458 variables. */
6459 struct jpeg_decompress_struct cinfo;
6460 enum
6462 MY_JPEG_ERROR_EXIT,
6463 MY_JPEG_INVALID_IMAGE_SIZE,
6464 MY_JPEG_CANNOT_CREATE_X
6465 } failure_code;
6469 static _Noreturn void
6470 my_error_exit (j_common_ptr cinfo)
6472 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
6473 mgr->failure_code = MY_JPEG_ERROR_EXIT;
6474 sys_longjmp (mgr->setjmp_buffer, 1);
6478 /* Init source method for JPEG data source manager. Called by
6479 jpeg_read_header() before any data is actually read. See
6480 libjpeg.doc from the JPEG lib distribution. */
6482 static void
6483 our_common_init_source (j_decompress_ptr cinfo)
6488 /* Method to terminate data source. Called by
6489 jpeg_finish_decompress() after all data has been processed. */
6491 static void
6492 our_common_term_source (j_decompress_ptr cinfo)
6497 /* Fill input buffer method for JPEG data source manager. Called
6498 whenever more data is needed. We read the whole image in one step,
6499 so this only adds a fake end of input marker at the end. */
6501 static JOCTET our_memory_buffer[2];
6503 static boolean
6504 our_memory_fill_input_buffer (j_decompress_ptr cinfo)
6506 /* Insert a fake EOI marker. */
6507 struct jpeg_source_mgr *src = cinfo->src;
6509 our_memory_buffer[0] = (JOCTET) 0xFF;
6510 our_memory_buffer[1] = (JOCTET) JPEG_EOI;
6512 src->next_input_byte = our_memory_buffer;
6513 src->bytes_in_buffer = 2;
6514 return 1;
6518 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6519 is the JPEG data source manager. */
6521 static void
6522 our_memory_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6524 struct jpeg_source_mgr *src = cinfo->src;
6526 if (src)
6528 if (num_bytes > src->bytes_in_buffer)
6529 ERREXIT (cinfo, JERR_INPUT_EOF);
6531 src->bytes_in_buffer -= num_bytes;
6532 src->next_input_byte += num_bytes;
6537 /* Set up the JPEG lib for reading an image from DATA which contains
6538 LEN bytes. CINFO is the decompression info structure created for
6539 reading the image. */
6541 static void
6542 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, ptrdiff_t len)
6544 struct jpeg_source_mgr *src = cinfo->src;
6546 if (! src)
6548 /* First time for this JPEG object? */
6549 src = cinfo->mem->alloc_small ((j_common_ptr) cinfo,
6550 JPOOL_PERMANENT, sizeof *src);
6551 cinfo->src = src;
6552 src->next_input_byte = data;
6555 src->init_source = our_common_init_source;
6556 src->fill_input_buffer = our_memory_fill_input_buffer;
6557 src->skip_input_data = our_memory_skip_input_data;
6558 src->resync_to_restart = jpeg_resync_to_restart; /* Use default method. */
6559 src->term_source = our_common_term_source;
6560 src->bytes_in_buffer = len;
6561 src->next_input_byte = data;
6565 struct jpeg_stdio_mgr
6567 struct jpeg_source_mgr mgr;
6568 boolean finished;
6569 FILE *file;
6570 JOCTET *buffer;
6574 /* Size of buffer to read JPEG from file.
6575 Not too big, as we want to use alloc_small. */
6576 #define JPEG_STDIO_BUFFER_SIZE 8192
6579 /* Fill input buffer method for JPEG data source manager. Called
6580 whenever more data is needed. The data is read from a FILE *. */
6582 static boolean
6583 our_stdio_fill_input_buffer (j_decompress_ptr cinfo)
6585 struct jpeg_stdio_mgr *src;
6587 src = (struct jpeg_stdio_mgr *) cinfo->src;
6588 if (!src->finished)
6590 ptrdiff_t bytes;
6592 bytes = fread (src->buffer, 1, JPEG_STDIO_BUFFER_SIZE, src->file);
6593 if (bytes > 0)
6594 src->mgr.bytes_in_buffer = bytes;
6595 else
6597 WARNMS (cinfo, JWRN_JPEG_EOF);
6598 src->finished = 1;
6599 src->buffer[0] = (JOCTET) 0xFF;
6600 src->buffer[1] = (JOCTET) JPEG_EOI;
6601 src->mgr.bytes_in_buffer = 2;
6603 src->mgr.next_input_byte = src->buffer;
6606 return 1;
6610 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6611 is the JPEG data source manager. */
6613 static void
6614 our_stdio_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6616 struct jpeg_stdio_mgr *src;
6617 src = (struct jpeg_stdio_mgr *) cinfo->src;
6619 while (num_bytes > 0 && !src->finished)
6621 if (num_bytes <= src->mgr.bytes_in_buffer)
6623 src->mgr.bytes_in_buffer -= num_bytes;
6624 src->mgr.next_input_byte += num_bytes;
6625 break;
6627 else
6629 num_bytes -= src->mgr.bytes_in_buffer;
6630 src->mgr.bytes_in_buffer = 0;
6631 src->mgr.next_input_byte = NULL;
6633 our_stdio_fill_input_buffer (cinfo);
6639 /* Set up the JPEG lib for reading an image from a FILE *.
6640 CINFO is the decompression info structure created for
6641 reading the image. */
6643 static void
6644 jpeg_file_src (j_decompress_ptr cinfo, FILE *fp)
6646 struct jpeg_stdio_mgr *src = (struct jpeg_stdio_mgr *) cinfo->src;
6648 if (! src)
6650 /* First time for this JPEG object? */
6651 src = cinfo->mem->alloc_small ((j_common_ptr) cinfo,
6652 JPOOL_PERMANENT, sizeof *src);
6653 cinfo->src = (struct jpeg_source_mgr *) src;
6654 src->buffer = cinfo->mem->alloc_small ((j_common_ptr) cinfo,
6655 JPOOL_PERMANENT,
6656 JPEG_STDIO_BUFFER_SIZE);
6659 src->file = fp;
6660 src->finished = 0;
6661 src->mgr.init_source = our_common_init_source;
6662 src->mgr.fill_input_buffer = our_stdio_fill_input_buffer;
6663 src->mgr.skip_input_data = our_stdio_skip_input_data;
6664 src->mgr.resync_to_restart = jpeg_resync_to_restart; /* Use default. */
6665 src->mgr.term_source = our_common_term_source;
6666 src->mgr.bytes_in_buffer = 0;
6667 src->mgr.next_input_byte = NULL;
6670 /* Load image IMG for use on frame F. Patterned after example.c
6671 from the JPEG lib. */
6673 static bool
6674 jpeg_load_body (struct frame *f, struct image *img,
6675 struct my_jpeg_error_mgr *mgr)
6677 Lisp_Object specified_file, specified_data;
6678 FILE *volatile fp = NULL;
6679 JSAMPARRAY buffer;
6680 int row_stride, x, y;
6681 unsigned long *colors;
6682 int width, height;
6683 int i, ir, ig, ib;
6684 #ifndef USE_CAIRO
6685 XImagePtr ximg = NULL;
6686 #endif
6688 /* Open the JPEG file. */
6689 specified_file = image_spec_value (img->spec, QCfile, NULL);
6690 specified_data = image_spec_value (img->spec, QCdata, NULL);
6692 if (NILP (specified_data))
6694 int fd;
6695 Lisp_Object file = x_find_image_fd (specified_file, &fd);
6696 if (!STRINGP (file))
6698 image_error ("Cannot find image file `%s'", specified_file);
6699 return 0;
6702 fp = fdopen (fd, "rb");
6703 if (fp == NULL)
6705 image_error ("Cannot open `%s'", file);
6706 return 0;
6709 else if (!STRINGP (specified_data))
6711 image_error ("Invalid image data `%s'", specified_data);
6712 return 0;
6715 /* Customize libjpeg's error handling to call my_error_exit when an
6716 error is detected. This function will perform a longjmp. */
6717 mgr->cinfo.err = jpeg_std_error (&mgr->pub);
6718 mgr->pub.error_exit = my_error_exit;
6719 if (sys_setjmp (mgr->setjmp_buffer))
6721 switch (mgr->failure_code)
6723 case MY_JPEG_ERROR_EXIT:
6725 char buf[JMSG_LENGTH_MAX];
6726 mgr->cinfo.err->format_message ((j_common_ptr) &mgr->cinfo, buf);
6727 image_error ("Error reading JPEG image `%s': %s",
6728 img->spec, build_string (buf));
6729 break;
6732 case MY_JPEG_INVALID_IMAGE_SIZE:
6733 image_size_error ();
6734 break;
6736 case MY_JPEG_CANNOT_CREATE_X:
6737 break;
6740 /* Close the input file and destroy the JPEG object. */
6741 if (fp)
6742 fclose (fp);
6743 jpeg_destroy_decompress (&mgr->cinfo);
6745 /* If we already have an XImage, free that. */
6746 #ifndef USE_CAIRO
6747 x_destroy_x_image (ximg);
6748 #endif
6749 /* Free pixmap and colors. */
6750 x_clear_image (f, img);
6751 return 0;
6754 /* Create the JPEG decompression object. Let it read from fp.
6755 Read the JPEG image header. */
6756 jpeg_CreateDecompress (&mgr->cinfo, JPEG_LIB_VERSION, sizeof *&mgr->cinfo);
6758 if (NILP (specified_data))
6759 jpeg_file_src (&mgr->cinfo, fp);
6760 else
6761 jpeg_memory_src (&mgr->cinfo, SDATA (specified_data),
6762 SBYTES (specified_data));
6764 jpeg_read_header (&mgr->cinfo, 1);
6766 /* Customize decompression so that color quantization will be used.
6767 Start decompression. */
6768 mgr->cinfo.quantize_colors = 1;
6769 jpeg_start_decompress (&mgr->cinfo);
6770 width = img->width = mgr->cinfo.output_width;
6771 height = img->height = mgr->cinfo.output_height;
6773 if (!check_image_size (f, width, height))
6775 mgr->failure_code = MY_JPEG_INVALID_IMAGE_SIZE;
6776 sys_longjmp (mgr->setjmp_buffer, 1);
6779 #ifndef USE_CAIRO
6780 /* Create X image and pixmap. */
6781 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0))
6783 mgr->failure_code = MY_JPEG_CANNOT_CREATE_X;
6784 sys_longjmp (mgr->setjmp_buffer, 1);
6786 #endif
6788 /* Allocate colors. When color quantization is used,
6789 mgr->cinfo.actual_number_of_colors has been set with the number of
6790 colors generated, and mgr->cinfo.colormap is a two-dimensional array
6791 of color indices in the range 0..mgr->cinfo.actual_number_of_colors.
6792 No more than 255 colors will be generated. */
6793 USE_SAFE_ALLOCA;
6795 if (mgr->cinfo.out_color_components > 2)
6796 ir = 0, ig = 1, ib = 2;
6797 else if (mgr->cinfo.out_color_components > 1)
6798 ir = 0, ig = 1, ib = 0;
6799 else
6800 ir = 0, ig = 0, ib = 0;
6802 #ifndef CAIRO
6803 /* Use the color table mechanism because it handles colors that
6804 cannot be allocated nicely. Such colors will be replaced with
6805 a default color, and we don't have to care about which colors
6806 can be freed safely, and which can't. */
6807 init_color_table ();
6808 SAFE_NALLOCA (colors, 1, mgr->cinfo.actual_number_of_colors);
6810 for (i = 0; i < mgr->cinfo.actual_number_of_colors; ++i)
6812 /* Multiply RGB values with 255 because X expects RGB values
6813 in the range 0..0xffff. */
6814 int r = mgr->cinfo.colormap[ir][i] << 8;
6815 int g = mgr->cinfo.colormap[ig][i] << 8;
6816 int b = mgr->cinfo.colormap[ib][i] << 8;
6817 colors[i] = lookup_rgb_color (f, r, g, b);
6819 #endif
6821 #ifdef COLOR_TABLE_SUPPORT
6822 /* Remember those colors actually allocated. */
6823 img->colors = colors_in_color_table (&img->ncolors);
6824 free_color_table ();
6825 #endif /* COLOR_TABLE_SUPPORT */
6828 /* Read pixels. */
6829 row_stride = width * mgr->cinfo.output_components;
6830 buffer = mgr->cinfo.mem->alloc_sarray ((j_common_ptr) &mgr->cinfo,
6831 JPOOL_IMAGE, row_stride, 1);
6832 #ifdef USE_CAIRO
6834 unsigned char *data = (unsigned char *) xmalloc (width*height*4);
6835 uint32_t *dataptr = (uint32_t *) data;
6836 int r, g, b;
6838 for (y = 0; y < height; ++y)
6840 jpeg_read_scanlines (&mgr->cinfo, buffer, 1);
6842 for (x = 0; x < width; ++x)
6844 i = buffer[0][x];
6845 r = mgr->cinfo.colormap[ir][i];
6846 g = mgr->cinfo.colormap[ig][i];
6847 b = mgr->cinfo.colormap[ib][i];
6848 *dataptr++ = (0xffu << 24) | (r << 16) | (g << 8) | b;
6852 create_cairo_image_surface (img, data, width, height);
6854 #else
6855 for (y = 0; y < height; ++y)
6857 jpeg_read_scanlines (&mgr->cinfo, buffer, 1);
6858 for (x = 0; x < mgr->cinfo.output_width; ++x)
6859 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
6861 #endif
6863 /* Clean up. */
6864 jpeg_finish_decompress (&mgr->cinfo);
6865 jpeg_destroy_decompress (&mgr->cinfo);
6866 if (fp)
6867 fclose (fp);
6869 #ifndef USE_CAIRO
6870 /* Maybe fill in the background field while we have ximg handy. */
6871 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6872 /* Casting avoids a GCC warning. */
6873 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6875 /* Put ximg into the image. */
6876 image_put_x_image (f, img, ximg, 0);
6877 #endif
6878 SAFE_FREE ();
6879 return 1;
6882 static bool
6883 jpeg_load (struct frame *f, struct image *img)
6885 struct my_jpeg_error_mgr mgr;
6886 return jpeg_load_body (f, img, &mgr);
6889 #else /* HAVE_JPEG */
6891 #ifdef HAVE_NS
6892 static bool
6893 jpeg_load (struct frame *f, struct image *img)
6895 return ns_load_image (f, img,
6896 image_spec_value (img->spec, QCfile, NULL),
6897 image_spec_value (img->spec, QCdata, NULL));
6899 #endif /* HAVE_NS */
6901 #endif /* !HAVE_JPEG */
6905 /***********************************************************************
6906 TIFF
6907 ***********************************************************************/
6909 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6911 static bool tiff_image_p (Lisp_Object object);
6912 static bool tiff_load (struct frame *f, struct image *img);
6914 /* Indices of image specification fields in tiff_format, below. */
6916 enum tiff_keyword_index
6918 TIFF_TYPE,
6919 TIFF_DATA,
6920 TIFF_FILE,
6921 TIFF_ASCENT,
6922 TIFF_MARGIN,
6923 TIFF_RELIEF,
6924 TIFF_ALGORITHM,
6925 TIFF_HEURISTIC_MASK,
6926 TIFF_MASK,
6927 TIFF_BACKGROUND,
6928 TIFF_INDEX,
6929 TIFF_LAST
6932 /* Vector of image_keyword structures describing the format
6933 of valid user-defined image specifications. */
6935 static const struct image_keyword tiff_format[TIFF_LAST] =
6937 {":type", IMAGE_SYMBOL_VALUE, 1},
6938 {":data", IMAGE_STRING_VALUE, 0},
6939 {":file", IMAGE_STRING_VALUE, 0},
6940 {":ascent", IMAGE_ASCENT_VALUE, 0},
6941 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
6942 {":relief", IMAGE_INTEGER_VALUE, 0},
6943 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6944 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6945 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6946 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
6947 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
6950 #if defined HAVE_NTGUI && defined WINDOWSNT
6951 static bool init_tiff_functions (void);
6952 #else
6953 #define init_tiff_functions NULL
6954 #endif
6956 /* Structure describing the image type `tiff'. */
6958 static struct image_type tiff_type =
6960 SYMBOL_INDEX (Qtiff),
6961 tiff_image_p,
6962 tiff_load,
6963 x_clear_image,
6964 init_tiff_functions,
6965 NULL
6968 /* Return true if OBJECT is a valid TIFF image specification. */
6970 static bool
6971 tiff_image_p (Lisp_Object object)
6973 struct image_keyword fmt[TIFF_LAST];
6974 memcpy (fmt, tiff_format, sizeof fmt);
6976 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
6977 return 0;
6979 /* Must specify either the :data or :file keyword. */
6980 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
6983 #endif /* HAVE_TIFF || HAVE_NS */
6985 #ifdef HAVE_TIFF
6987 # include <tiffio.h>
6989 # ifdef WINDOWSNT
6991 /* TIFF library details. */
6992 DEF_DLL_FN (TIFFErrorHandler, TIFFSetErrorHandler, (TIFFErrorHandler));
6993 DEF_DLL_FN (TIFFErrorHandler, TIFFSetWarningHandler, (TIFFErrorHandler));
6994 DEF_DLL_FN (TIFF *, TIFFOpen, (const char *, const char *));
6995 DEF_DLL_FN (TIFF *, TIFFClientOpen,
6996 (const char *, const char *, thandle_t, TIFFReadWriteProc,
6997 TIFFReadWriteProc, TIFFSeekProc, TIFFCloseProc, TIFFSizeProc,
6998 TIFFMapFileProc, TIFFUnmapFileProc));
6999 DEF_DLL_FN (int, TIFFGetField, (TIFF *, ttag_t, ...));
7000 DEF_DLL_FN (int, TIFFReadRGBAImage, (TIFF *, uint32, uint32, uint32 *, int));
7001 DEF_DLL_FN (void, TIFFClose, (TIFF *));
7002 DEF_DLL_FN (int, TIFFSetDirectory, (TIFF *, tdir_t));
7004 static bool
7005 init_tiff_functions (void)
7007 HMODULE library;
7009 if (!(library = w32_delayed_load (Qtiff)))
7010 return 0;
7012 LOAD_DLL_FN (library, TIFFSetErrorHandler);
7013 LOAD_DLL_FN (library, TIFFSetWarningHandler);
7014 LOAD_DLL_FN (library, TIFFOpen);
7015 LOAD_DLL_FN (library, TIFFClientOpen);
7016 LOAD_DLL_FN (library, TIFFGetField);
7017 LOAD_DLL_FN (library, TIFFReadRGBAImage);
7018 LOAD_DLL_FN (library, TIFFClose);
7019 LOAD_DLL_FN (library, TIFFSetDirectory);
7020 return 1;
7023 # undef TIFFClientOpen
7024 # undef TIFFClose
7025 # undef TIFFGetField
7026 # undef TIFFOpen
7027 # undef TIFFReadRGBAImage
7028 # undef TIFFSetDirectory
7029 # undef TIFFSetErrorHandler
7030 # undef TIFFSetWarningHandler
7032 # define TIFFClientOpen fn_TIFFClientOpen
7033 # define TIFFClose fn_TIFFClose
7034 # define TIFFGetField fn_TIFFGetField
7035 # define TIFFOpen fn_TIFFOpen
7036 # define TIFFReadRGBAImage fn_TIFFReadRGBAImage
7037 # define TIFFSetDirectory fn_TIFFSetDirectory
7038 # define TIFFSetErrorHandler fn_TIFFSetErrorHandler
7039 # define TIFFSetWarningHandler fn_TIFFSetWarningHandler
7041 # endif /* WINDOWSNT */
7044 /* Reading from a memory buffer for TIFF images Based on the PNG
7045 memory source, but we have to provide a lot of extra functions.
7046 Blah.
7048 We really only need to implement read and seek, but I am not
7049 convinced that the TIFF library is smart enough not to destroy
7050 itself if we only hand it the function pointers we need to
7051 override. */
7053 typedef struct
7055 unsigned char *bytes;
7056 ptrdiff_t len;
7057 ptrdiff_t index;
7059 tiff_memory_source;
7061 static tsize_t
7062 tiff_read_from_memory (thandle_t data, tdata_t buf, tsize_t size)
7064 tiff_memory_source *src = (tiff_memory_source *) data;
7066 size = min (size, src->len - src->index);
7067 memcpy (buf, src->bytes + src->index, size);
7068 src->index += size;
7069 return size;
7072 static tsize_t
7073 tiff_write_from_memory (thandle_t data, tdata_t buf, tsize_t size)
7075 return -1;
7078 static toff_t
7079 tiff_seek_in_memory (thandle_t data, toff_t off, int whence)
7081 tiff_memory_source *src = (tiff_memory_source *) data;
7082 ptrdiff_t idx;
7084 switch (whence)
7086 case SEEK_SET: /* Go from beginning of source. */
7087 idx = off;
7088 break;
7090 case SEEK_END: /* Go from end of source. */
7091 idx = src->len + off;
7092 break;
7094 case SEEK_CUR: /* Go from current position. */
7095 idx = src->index + off;
7096 break;
7098 default: /* Invalid `whence'. */
7099 return -1;
7102 if (idx > src->len || idx < 0)
7103 return -1;
7105 src->index = idx;
7106 return src->index;
7109 static int
7110 tiff_close_memory (thandle_t data)
7112 /* NOOP */
7113 return 0;
7116 static int
7117 tiff_mmap_memory (thandle_t data, tdata_t *pbase, toff_t *psize)
7119 /* It is already _IN_ memory. */
7120 return 0;
7123 static void
7124 tiff_unmap_memory (thandle_t data, tdata_t base, toff_t size)
7126 /* We don't need to do this. */
7129 static toff_t
7130 tiff_size_of_memory (thandle_t data)
7132 return ((tiff_memory_source *) data)->len;
7135 /* GCC 3.x on x86 Windows targets has a bug that triggers an internal
7136 compiler error compiling tiff_handler, see Bugzilla bug #17406
7137 (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17406). Declaring
7138 this function as external works around that problem. */
7139 # if defined (__MINGW32__) && __GNUC__ == 3
7140 # define MINGW_STATIC
7141 # else
7142 # define MINGW_STATIC static
7143 # endif
7145 MINGW_STATIC void
7146 tiff_handler (const char *, const char *, const char *, va_list)
7147 ATTRIBUTE_FORMAT_PRINTF (3, 0);
7148 MINGW_STATIC void
7149 tiff_handler (const char *log_format, const char *title,
7150 const char *format, va_list ap)
7152 /* doprnt is not suitable here, as TIFF handlers are called from
7153 libtiff and are passed arbitrary printf directives. Instead, use
7154 vsnprintf, taking care to be portable to nonstandard environments
7155 where vsnprintf returns -1 on buffer overflow. Since it's just a
7156 log entry, it's OK to truncate it. */
7157 char buf[4000];
7158 int len = vsnprintf (buf, sizeof buf, format, ap);
7159 add_to_log (log_format, build_string (title),
7160 make_string (buf, max (0, min (len, sizeof buf - 1))));
7162 # undef MINGW_STATIC
7164 static void tiff_error_handler (const char *, const char *, va_list)
7165 ATTRIBUTE_FORMAT_PRINTF (2, 0);
7166 static void
7167 tiff_error_handler (const char *title, const char *format, va_list ap)
7169 tiff_handler ("TIFF error: %s %s", title, format, ap);
7173 static void tiff_warning_handler (const char *, const char *, va_list)
7174 ATTRIBUTE_FORMAT_PRINTF (2, 0);
7175 static void
7176 tiff_warning_handler (const char *title, const char *format, va_list ap)
7178 tiff_handler ("TIFF warning: %s %s", title, format, ap);
7182 /* Load TIFF image IMG for use on frame F. Value is true if
7183 successful. */
7185 static bool
7186 tiff_load (struct frame *f, struct image *img)
7188 Lisp_Object specified_file;
7189 Lisp_Object specified_data;
7190 TIFF *tiff;
7191 int width, height, x, y, count;
7192 uint32 *buf;
7193 int rc;
7194 XImagePtr ximg;
7195 tiff_memory_source memsrc;
7196 Lisp_Object image;
7198 specified_file = image_spec_value (img->spec, QCfile, NULL);
7199 specified_data = image_spec_value (img->spec, QCdata, NULL);
7201 TIFFSetErrorHandler ((TIFFErrorHandler) tiff_error_handler);
7202 TIFFSetWarningHandler ((TIFFErrorHandler) tiff_warning_handler);
7204 if (NILP (specified_data))
7206 /* Read from a file */
7207 Lisp_Object file = x_find_image_file (specified_file);
7208 if (!STRINGP (file))
7210 image_error ("Cannot find image file `%s'", specified_file);
7211 return 0;
7214 Lisp_Object encoded_file = ENCODE_FILE (file);
7215 # ifdef WINDOWSNT
7216 encoded_file = ansi_encode_filename (encoded_file);
7217 # endif
7219 /* Try to open the image file. */
7220 tiff = TIFFOpen (SSDATA (encoded_file), "r");
7221 if (tiff == NULL)
7223 image_error ("Cannot open `%s'", file);
7224 return 0;
7227 else
7229 if (!STRINGP (specified_data))
7231 image_error ("Invalid image data `%s'", specified_data);
7232 return 0;
7235 /* Memory source! */
7236 memsrc.bytes = SDATA (specified_data);
7237 memsrc.len = SBYTES (specified_data);
7238 memsrc.index = 0;
7240 tiff = TIFFClientOpen ("memory_source", "r", (thandle_t)&memsrc,
7241 tiff_read_from_memory,
7242 tiff_write_from_memory,
7243 tiff_seek_in_memory,
7244 tiff_close_memory,
7245 tiff_size_of_memory,
7246 tiff_mmap_memory,
7247 tiff_unmap_memory);
7249 if (!tiff)
7251 image_error ("Cannot open memory source for `%s'", img->spec);
7252 return 0;
7256 image = image_spec_value (img->spec, QCindex, NULL);
7257 if (INTEGERP (image))
7259 EMACS_INT ino = XFASTINT (image);
7260 if (! (TYPE_MINIMUM (tdir_t) <= ino && ino <= TYPE_MAXIMUM (tdir_t)
7261 && TIFFSetDirectory (tiff, ino)))
7263 image_error ("Invalid image number `%s' in image `%s'",
7264 image, img->spec);
7265 TIFFClose (tiff);
7266 return 0;
7270 /* Get width and height of the image, and allocate a raster buffer
7271 of width x height 32-bit values. */
7272 TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
7273 TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
7275 if (!check_image_size (f, width, height))
7277 image_size_error ();
7278 TIFFClose (tiff);
7279 return 0;
7282 /* Create the X image and pixmap. */
7283 if (! (height <= min (PTRDIFF_MAX, SIZE_MAX) / sizeof *buf / width
7284 && image_create_x_image_and_pixmap (f, img, width, height, 0,
7285 &ximg, 0)))
7287 TIFFClose (tiff);
7288 return 0;
7291 buf = xmalloc (sizeof *buf * width * height);
7293 rc = TIFFReadRGBAImage (tiff, width, height, buf, 0);
7295 /* Count the number of images in the file. */
7296 for (count = 1; TIFFSetDirectory (tiff, count); count++)
7297 continue;
7299 if (count > 1)
7300 img->lisp_data = Fcons (Qcount,
7301 Fcons (make_number (count),
7302 img->lisp_data));
7304 TIFFClose (tiff);
7305 if (!rc)
7307 image_error ("Error reading TIFF image `%s'", img->spec);
7308 xfree (buf);
7309 return 0;
7312 #ifdef USE_CAIRO
7314 unsigned char *data = (unsigned char *) xmalloc (width*height*4);
7315 uint32_t *dataptr = (uint32_t *) data;
7317 for (y = 0; y < height; ++y)
7319 uint32 *row = buf + (height - 1 - y) * width;
7320 for (x = 0; x < width; ++x)
7322 uint32 abgr = row[x];
7323 int r = TIFFGetR (abgr);
7324 int g = TIFFGetG (abgr);
7325 int b = TIFFGetB (abgr);
7326 int a = TIFFGetA (abgr);
7327 *dataptr++ = (a << 24) | (r << 16) | (g << 8) | b;
7331 create_cairo_image_surface (img, data, width, height);
7333 #else
7334 /* Initialize the color table. */
7335 init_color_table ();
7337 /* Process the pixel raster. Origin is in the lower-left corner. */
7338 for (y = 0; y < height; ++y)
7340 uint32 *row = buf + y * width;
7342 for (x = 0; x < width; ++x)
7344 uint32 abgr = row[x];
7345 int r = TIFFGetR (abgr) << 8;
7346 int g = TIFFGetG (abgr) << 8;
7347 int b = TIFFGetB (abgr) << 8;
7348 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
7352 # ifdef COLOR_TABLE_SUPPORT
7353 /* Remember the colors allocated for the image. Free the color table. */
7354 img->colors = colors_in_color_table (&img->ncolors);
7355 free_color_table ();
7356 # endif /* COLOR_TABLE_SUPPORT */
7358 img->width = width;
7359 img->height = height;
7361 /* Maybe fill in the background field while we have ximg handy. */
7362 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7363 /* Casting avoids a GCC warning on W32. */
7364 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
7366 /* Put ximg into the image. */
7367 image_put_x_image (f, img, ximg, 0);
7369 #endif /* ! USE_CAIRO */
7371 xfree (buf);
7372 return 1;
7375 #elif defined HAVE_NS
7377 static bool
7378 tiff_load (struct frame *f, struct image *img)
7380 return ns_load_image (f, img,
7381 image_spec_value (img->spec, QCfile, NULL),
7382 image_spec_value (img->spec, QCdata, NULL));
7385 #endif
7389 /***********************************************************************
7391 ***********************************************************************/
7393 #if defined (HAVE_GIF) || defined (HAVE_NS)
7395 static bool gif_image_p (Lisp_Object object);
7396 static bool gif_load (struct frame *f, struct image *img);
7397 static void gif_clear_image (struct frame *f, struct image *img);
7399 /* Indices of image specification fields in gif_format, below. */
7401 enum gif_keyword_index
7403 GIF_TYPE,
7404 GIF_DATA,
7405 GIF_FILE,
7406 GIF_ASCENT,
7407 GIF_MARGIN,
7408 GIF_RELIEF,
7409 GIF_ALGORITHM,
7410 GIF_HEURISTIC_MASK,
7411 GIF_MASK,
7412 GIF_IMAGE,
7413 GIF_BACKGROUND,
7414 GIF_LAST
7417 /* Vector of image_keyword structures describing the format
7418 of valid user-defined image specifications. */
7420 static const struct image_keyword gif_format[GIF_LAST] =
7422 {":type", IMAGE_SYMBOL_VALUE, 1},
7423 {":data", IMAGE_STRING_VALUE, 0},
7424 {":file", IMAGE_STRING_VALUE, 0},
7425 {":ascent", IMAGE_ASCENT_VALUE, 0},
7426 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
7427 {":relief", IMAGE_INTEGER_VALUE, 0},
7428 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7429 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7430 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7431 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
7432 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7435 #if defined HAVE_NTGUI && defined WINDOWSNT
7436 static bool init_gif_functions (void);
7437 #else
7438 #define init_gif_functions NULL
7439 #endif
7441 /* Structure describing the image type `gif'. */
7443 static struct image_type gif_type =
7445 SYMBOL_INDEX (Qgif),
7446 gif_image_p,
7447 gif_load,
7448 gif_clear_image,
7449 init_gif_functions,
7450 NULL
7453 /* Free X resources of GIF image IMG which is used on frame F. */
7455 static void
7456 gif_clear_image (struct frame *f, struct image *img)
7458 img->lisp_data = Qnil;
7459 x_clear_image (f, img);
7462 /* Return true if OBJECT is a valid GIF image specification. */
7464 static bool
7465 gif_image_p (Lisp_Object object)
7467 struct image_keyword fmt[GIF_LAST];
7468 memcpy (fmt, gif_format, sizeof fmt);
7470 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
7471 return 0;
7473 /* Must specify either the :data or :file keyword. */
7474 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
7477 #endif /* HAVE_GIF */
7479 #ifdef HAVE_GIF
7481 # ifdef HAVE_NTGUI
7483 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7484 Undefine before redefining to avoid a preprocessor warning. */
7485 # ifdef DrawText
7486 # undef DrawText
7487 # endif
7488 /* avoid conflict with QuickdrawText.h */
7489 # define DrawText gif_DrawText
7490 # include <gif_lib.h>
7491 /* The bogus ifdef below, which is always true, is to avoid a compiler
7492 warning about DrawText being unused. */
7493 # ifdef DrawText
7494 # undef DrawText
7495 # endif
7497 /* Giflib before 5.0 didn't define these macros (used only if HAVE_NTGUI). */
7498 # ifndef GIFLIB_MINOR
7499 # define GIFLIB_MINOR 0
7500 # endif
7501 # ifndef GIFLIB_RELEASE
7502 # define GIFLIB_RELEASE 0
7503 # endif
7505 # else /* HAVE_NTGUI */
7507 # include <gif_lib.h>
7509 # endif /* HAVE_NTGUI */
7511 /* Giflib before 5.0 didn't define these macros. */
7512 # ifndef GIFLIB_MAJOR
7513 # define GIFLIB_MAJOR 4
7514 # endif
7516 /* GifErrorString is declared to return char const * when GIFLIB_MAJOR
7517 and GIFLIB_MINOR indicate 5.1 or later. Do not bother using it in
7518 earlier releases, where either it returns char * or GIFLIB_MINOR
7519 may be incorrect. */
7520 # define HAVE_GIFERRORSTRING (5 < GIFLIB_MAJOR + (1 <= GIFLIB_MINOR))
7522 # ifdef WINDOWSNT
7524 /* GIF library details. */
7525 # if GIFLIB_MAJOR + (GIFLIB_MINOR >= 1) > 5
7526 DEF_DLL_FN (int, DGifCloseFile, (GifFileType *, int *));
7527 # else
7528 DEF_DLL_FN (int, DGifCloseFile, (GifFileType *));
7529 # endif
7530 DEF_DLL_FN (int, DGifSlurp, (GifFileType *));
7531 # if GIFLIB_MAJOR < 5
7532 DEF_DLL_FN (GifFileType *, DGifOpen, (void *, InputFunc));
7533 DEF_DLL_FN (GifFileType *, DGifOpenFileName, (const char *));
7534 # else
7535 DEF_DLL_FN (GifFileType *, DGifOpen, (void *, InputFunc, int *));
7536 DEF_DLL_FN (GifFileType *, DGifOpenFileName, (const char *, int *));
7537 # endif
7538 # if HAVE_GIFERRORSTRING
7539 DEF_DLL_FN (char const *, GifErrorString, (int));
7540 # endif
7542 static bool
7543 init_gif_functions (void)
7545 HMODULE library;
7547 if (!(library = w32_delayed_load (Qgif)))
7548 return 0;
7550 LOAD_DLL_FN (library, DGifCloseFile);
7551 LOAD_DLL_FN (library, DGifSlurp);
7552 LOAD_DLL_FN (library, DGifOpen);
7553 LOAD_DLL_FN (library, DGifOpenFileName);
7554 # if HAVE_GIFERRORSTRING
7555 LOAD_DLL_FN (library, GifErrorString);
7556 # endif
7557 return 1;
7560 # undef DGifCloseFile
7561 # undef DGifOpen
7562 # undef DGifOpenFileName
7563 # undef DGifSlurp
7564 # undef GifErrorString
7566 # define DGifCloseFile fn_DGifCloseFile
7567 # define DGifOpen fn_DGifOpen
7568 # define DGifOpenFileName fn_DGifOpenFileName
7569 # define DGifSlurp fn_DGifSlurp
7570 # define GifErrorString fn_GifErrorString
7572 # endif /* WINDOWSNT */
7574 /* Reading a GIF image from memory
7575 Based on the PNG memory stuff to a certain extent. */
7577 typedef struct
7579 unsigned char *bytes;
7580 ptrdiff_t len;
7581 ptrdiff_t index;
7583 gif_memory_source;
7585 /* Make the current memory source available to gif_read_from_memory.
7586 It's done this way because not all versions of libungif support
7587 a UserData field in the GifFileType structure. */
7588 static gif_memory_source *current_gif_memory_src;
7590 static int
7591 gif_read_from_memory (GifFileType *file, GifByteType *buf, int len)
7593 gif_memory_source *src = current_gif_memory_src;
7595 if (len > src->len - src->index)
7596 return -1;
7598 memcpy (buf, src->bytes + src->index, len);
7599 src->index += len;
7600 return len;
7603 static int
7604 gif_close (GifFileType *gif, int *err)
7606 int retval;
7608 #if GIFLIB_MAJOR + (GIFLIB_MINOR >= 1) > 5
7609 retval = DGifCloseFile (gif, err);
7610 #else
7611 retval = DGifCloseFile (gif);
7612 #if GIFLIB_MAJOR >= 5
7613 if (err)
7614 *err = gif->Error;
7615 #endif
7616 #endif
7617 return retval;
7620 /* Load GIF image IMG for use on frame F. Value is true if
7621 successful. */
7623 static const int interlace_start[] = {0, 4, 2, 1};
7624 static const int interlace_increment[] = {8, 8, 4, 2};
7626 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7628 static bool
7629 gif_load (struct frame *f, struct image *img)
7631 int rc, width, height, x, y, i, j;
7632 ColorMapObject *gif_color_map;
7633 GifFileType *gif;
7634 gif_memory_source memsrc;
7635 Lisp_Object specified_bg = image_spec_value (img->spec, QCbackground, NULL);
7636 Lisp_Object specified_file = image_spec_value (img->spec, QCfile, NULL);
7637 Lisp_Object specified_data = image_spec_value (img->spec, QCdata, NULL);
7638 EMACS_INT idx;
7639 int gif_err;
7641 if (NILP (specified_data))
7643 Lisp_Object file = x_find_image_file (specified_file);
7644 if (!STRINGP (file))
7646 image_error ("Cannot find image file `%s'", specified_file);
7647 return 0;
7650 Lisp_Object encoded_file = ENCODE_FILE (file);
7651 #ifdef WINDOWSNT
7652 encoded_file = ansi_encode_filename (encoded_file);
7653 #endif
7655 /* Open the GIF file. */
7656 #if GIFLIB_MAJOR < 5
7657 gif = DGifOpenFileName (SSDATA (encoded_file));
7658 #else
7659 gif = DGifOpenFileName (SSDATA (encoded_file), &gif_err);
7660 #endif
7661 if (gif == NULL)
7663 #if HAVE_GIFERRORSTRING
7664 image_error ("Cannot open `%s': %s",
7665 file, build_string (GifErrorString (gif_err)));
7666 #else
7667 image_error ("Cannot open `%s'", file);
7668 #endif
7669 return 0;
7672 else
7674 if (!STRINGP (specified_data))
7676 image_error ("Invalid image data `%s'", specified_data);
7677 return 0;
7680 /* Read from memory! */
7681 current_gif_memory_src = &memsrc;
7682 memsrc.bytes = SDATA (specified_data);
7683 memsrc.len = SBYTES (specified_data);
7684 memsrc.index = 0;
7686 #if GIFLIB_MAJOR < 5
7687 gif = DGifOpen (&memsrc, gif_read_from_memory);
7688 #else
7689 gif = DGifOpen (&memsrc, gif_read_from_memory, &gif_err);
7690 #endif
7691 if (!gif)
7693 #if HAVE_GIFERRORSTRING
7694 image_error ("Cannot open memory source `%s': %s",
7695 img->spec, build_string (GifErrorString (gif_err)));
7696 #else
7697 image_error ("Cannot open memory source `%s'", img->spec);
7698 #endif
7699 return 0;
7703 /* Before reading entire contents, check the declared image size. */
7704 if (!check_image_size (f, gif->SWidth, gif->SHeight))
7706 image_size_error ();
7707 gif_close (gif, NULL);
7708 return 0;
7711 /* Read entire contents. */
7712 rc = DGifSlurp (gif);
7713 if (rc == GIF_ERROR || gif->ImageCount <= 0)
7715 image_error ("Error reading `%s'", img->spec);
7716 gif_close (gif, NULL);
7717 return 0;
7720 /* Which sub-image are we to display? */
7722 Lisp_Object image_number = image_spec_value (img->spec, QCindex, NULL);
7723 idx = INTEGERP (image_number) ? XFASTINT (image_number) : 0;
7724 if (idx < 0 || idx >= gif->ImageCount)
7726 image_error ("Invalid image number `%s' in image `%s'",
7727 image_number, img->spec);
7728 gif_close (gif, NULL);
7729 return 0;
7733 width = img->width = gif->SWidth;
7734 height = img->height = gif->SHeight;
7736 img->corners[TOP_CORNER] = gif->SavedImages[0].ImageDesc.Top;
7737 img->corners[LEFT_CORNER] = gif->SavedImages[0].ImageDesc.Left;
7738 img->corners[BOT_CORNER]
7739 = img->corners[TOP_CORNER] + gif->SavedImages[0].ImageDesc.Height;
7740 img->corners[RIGHT_CORNER]
7741 = img->corners[LEFT_CORNER] + gif->SavedImages[0].ImageDesc.Width;
7743 if (!check_image_size (f, width, height))
7745 image_size_error ();
7746 gif_close (gif, NULL);
7747 return 0;
7750 /* Check that the selected subimages fit. It's not clear whether
7751 the GIF spec requires this, but Emacs can crash if they don't fit. */
7752 for (j = 0; j <= idx; ++j)
7754 struct SavedImage *subimage = gif->SavedImages + j;
7755 int subimg_width = subimage->ImageDesc.Width;
7756 int subimg_height = subimage->ImageDesc.Height;
7757 int subimg_top = subimage->ImageDesc.Top;
7758 int subimg_left = subimage->ImageDesc.Left;
7759 if (! (subimg_width >= 0 && subimg_height >= 0
7760 && 0 <= subimg_top && subimg_top <= height - subimg_height
7761 && 0 <= subimg_left && subimg_left <= width - subimg_width))
7763 image_error ("Subimage does not fit in image");
7764 gif_close (gif, NULL);
7765 return 0;
7769 #ifdef USE_CAIRO
7770 /* xzalloc so data is zero => transparent */
7771 void *data = xzalloc (width * height * 4);
7772 uint32_t *data32 = data;
7773 if (STRINGP (specified_bg))
7775 XColor color;
7776 if (x_defined_color (f, SSDATA (specified_bg), &color, 0))
7778 uint32_t *dataptr = data32;
7779 int r = color.red/256;
7780 int g = color.green/256;
7781 int b = color.blue/256;
7783 for (y = 0; y < height; ++y)
7784 for (x = 0; x < width; ++x)
7785 *dataptr++ = (0xffu << 24) | (r << 16) | (g << 8) | b;
7788 #else
7789 /* Create the X image and pixmap. */
7790 XImagePtr ximg;
7791 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0))
7793 gif_close (gif, NULL);
7794 return 0;
7797 /* Clear the part of the screen image not covered by the image.
7798 Full animated GIF support requires more here (see the gif89 spec,
7799 disposal methods). Let's simply assume that the part not covered
7800 by a sub-image is in the frame's background color. */
7801 for (y = 0; y < img->corners[TOP_CORNER]; ++y)
7802 for (x = 0; x < width; ++x)
7803 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7805 for (y = img->corners[BOT_CORNER]; y < height; ++y)
7806 for (x = 0; x < width; ++x)
7807 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7809 for (y = img->corners[TOP_CORNER]; y < img->corners[BOT_CORNER]; ++y)
7811 for (x = 0; x < img->corners[LEFT_CORNER]; ++x)
7812 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7813 for (x = img->corners[RIGHT_CORNER]; x < width; ++x)
7814 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7816 #endif
7818 /* Read the GIF image into the X image. */
7820 /* FIXME: With the current implementation, loading an animated gif
7821 is quadratic in the number of animation frames, since each frame
7822 is a separate struct image. We must provide a way for a single
7823 gif_load call to construct and save all animation frames. */
7825 init_color_table ();
7827 #ifndef USE_CAIRO
7828 unsigned long bgcolor;
7829 if (STRINGP (specified_bg))
7830 bgcolor = x_alloc_image_color (f, img, specified_bg,
7831 FRAME_BACKGROUND_PIXEL (f));
7832 #endif
7834 for (j = 0; j <= idx; ++j)
7836 /* We use a local variable `raster' here because RasterBits is a
7837 char *, which invites problems with bytes >= 0x80. */
7838 struct SavedImage *subimage = gif->SavedImages + j;
7839 unsigned char *raster = (unsigned char *) subimage->RasterBits;
7840 int transparency_color_index = -1;
7841 int disposal = 0;
7842 int subimg_width = subimage->ImageDesc.Width;
7843 int subimg_height = subimage->ImageDesc.Height;
7844 int subimg_top = subimage->ImageDesc.Top;
7845 int subimg_left = subimage->ImageDesc.Left;
7847 /* Find the Graphic Control Extension block for this sub-image.
7848 Extract the disposal method and transparency color. */
7849 for (i = 0; i < subimage->ExtensionBlockCount; i++)
7851 ExtensionBlock *extblock = subimage->ExtensionBlocks + i;
7853 if ((extblock->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION)
7854 && extblock->ByteCount == 4
7855 && extblock->Bytes[0] & 1)
7857 /* From gif89a spec: 1 = "keep in place", 2 = "restore
7858 to background". Treat any other value like 2. */
7859 disposal = (extblock->Bytes[0] >> 2) & 7;
7860 transparency_color_index = (unsigned char) extblock->Bytes[3];
7861 break;
7865 /* We can't "keep in place" the first subimage. */
7866 if (j == 0)
7867 disposal = 2;
7869 /* For disposal == 0, the spec says "No disposal specified. The
7870 decoder is not required to take any action." In practice, it
7871 seems we need to treat this like "keep in place", see e.g.
7872 http://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */
7873 if (disposal == 0)
7874 disposal = 1;
7876 gif_color_map = subimage->ImageDesc.ColorMap;
7877 if (!gif_color_map)
7878 gif_color_map = gif->SColorMap;
7880 #ifndef USE_CAIRO
7881 /* Allocate subimage colors. */
7882 unsigned long pixel_colors[256] = { 0, };
7884 if (gif_color_map)
7885 for (i = 0; i < gif_color_map->ColorCount; ++i)
7887 if (transparency_color_index == i)
7888 pixel_colors[i] = STRINGP (specified_bg)
7889 ? bgcolor : FRAME_BACKGROUND_PIXEL (f);
7890 else
7892 int r = gif_color_map->Colors[i].Red << 8;
7893 int g = gif_color_map->Colors[i].Green << 8;
7894 int b = gif_color_map->Colors[i].Blue << 8;
7895 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
7898 #endif
7900 /* Apply the pixel values. */
7901 if (GIFLIB_MAJOR < 5 && gif->SavedImages[j].ImageDesc.Interlace)
7903 int row, pass;
7905 for (y = 0, row = interlace_start[0], pass = 0;
7906 y < subimg_height;
7907 y++, row += interlace_increment[pass])
7909 while (subimg_height <= row)
7910 row = interlace_start[++pass];
7912 for (x = 0; x < subimg_width; x++)
7914 int c = raster[y * subimg_width + x];
7915 if (transparency_color_index != c || disposal != 1)
7917 #ifdef USE_CAIRO
7918 uint32_t *dataptr =
7919 (data32 + ((row + subimg_top) * subimg_width
7920 + x + subimg_left));
7921 int r = gif_color_map->Colors[c].Red;
7922 int g = gif_color_map->Colors[c].Green;
7923 int b = gif_color_map->Colors[c].Blue;
7925 if (transparency_color_index != c)
7926 *dataptr = (0xffu << 24) | (r << 16) | (g << 8) | b;
7927 #else
7928 XPutPixel (ximg, x + subimg_left, row + subimg_top,
7929 pixel_colors[c]);
7930 #endif
7935 else
7937 for (y = 0; y < subimg_height; ++y)
7938 for (x = 0; x < subimg_width; ++x)
7940 int c = raster[y * subimg_width + x];
7941 if (transparency_color_index != c || disposal != 1)
7943 #ifdef USE_CAIRO
7944 uint32_t *dataptr =
7945 (data32 + ((y + subimg_top) * subimg_width
7946 + x + subimg_left));
7947 int r = gif_color_map->Colors[c].Red;
7948 int g = gif_color_map->Colors[c].Green;
7949 int b = gif_color_map->Colors[c].Blue;
7950 if (transparency_color_index != c)
7951 *dataptr = (0xffu << 24) | (r << 16) | (g << 8) | b;
7952 #else
7953 XPutPixel (ximg, x + subimg_left, y + subimg_top,
7954 pixel_colors[c]);
7955 #endif
7961 #ifdef COLOR_TABLE_SUPPORT
7962 img->colors = colors_in_color_table (&img->ncolors);
7963 free_color_table ();
7964 #endif /* COLOR_TABLE_SUPPORT */
7966 /* Save GIF image extension data for `image-metadata'.
7967 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7968 img->lisp_data = Qnil;
7969 if (gif->SavedImages[idx].ExtensionBlockCount > 0)
7971 int delay = 0;
7972 ExtensionBlock *ext = gif->SavedImages[idx].ExtensionBlocks;
7973 for (i = 0; i < gif->SavedImages[idx].ExtensionBlockCount; i++, ext++)
7974 /* Append (... FUNCTION "BYTES") */
7976 img->lisp_data
7977 = Fcons (make_number (ext->Function),
7978 Fcons (make_unibyte_string ((char *) ext->Bytes,
7979 ext->ByteCount),
7980 img->lisp_data));
7981 if (ext->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION
7982 && ext->ByteCount == 4)
7984 delay = ext->Bytes[2] << CHAR_BIT;
7985 delay |= ext->Bytes[1];
7988 img->lisp_data = list2 (Qextension_data, img->lisp_data);
7989 if (delay)
7990 img->lisp_data
7991 = Fcons (Qdelay,
7992 Fcons (make_float (delay / 100.0),
7993 img->lisp_data));
7996 if (gif->ImageCount > 1)
7997 img->lisp_data = Fcons (Qcount,
7998 Fcons (make_number (gif->ImageCount),
7999 img->lisp_data));
8001 if (gif_close (gif, &gif_err) == GIF_ERROR)
8003 #if HAVE_GIFERRORSTRING
8004 char const *error_text = GifErrorString (gif_err);
8006 if (error_text)
8007 image_error ("Error closing `%s': %s",
8008 img->spec, build_string (error_text));
8009 #else
8010 image_error ("Error closing `%s'", img->spec);
8011 #endif
8014 #ifdef USE_CAIRO
8015 create_cairo_image_surface (img, data, width, height);
8016 #else
8017 /* Maybe fill in the background field while we have ximg handy. */
8018 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
8019 /* Casting avoids a GCC warning. */
8020 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
8022 /* Put ximg into the image. */
8023 image_put_x_image (f, img, ximg, 0);
8024 #endif
8026 return 1;
8029 #else /* !HAVE_GIF */
8031 #ifdef HAVE_NS
8032 static bool
8033 gif_load (struct frame *f, struct image *img)
8035 return ns_load_image (f, img,
8036 image_spec_value (img->spec, QCfile, NULL),
8037 image_spec_value (img->spec, QCdata, NULL));
8039 #endif /* HAVE_NS */
8041 #endif /* HAVE_GIF */
8044 #ifdef HAVE_IMAGEMAGICK
8046 /***********************************************************************
8047 ImageMagick
8048 ***********************************************************************/
8050 /* Scale an image size by returning SIZE / DIVISOR * MULTIPLIER,
8051 safely rounded and clipped to int range. */
8053 static int
8054 scale_image_size (int size, size_t divisor, size_t multiplier)
8056 if (divisor != 0)
8058 double s = size;
8059 double scaled = s * multiplier / divisor + 0.5;
8060 if (scaled < INT_MAX)
8061 return scaled;
8063 return INT_MAX;
8066 /* Compute the desired size of an image with native size WIDTH x HEIGHT.
8067 Use SPEC to deduce the size. Store the desired size into
8068 *D_WIDTH x *D_HEIGHT. Store -1 x -1 if the native size is OK. */
8069 static void
8070 compute_image_size (size_t width, size_t height,
8071 Lisp_Object spec,
8072 int *d_width, int *d_height)
8074 Lisp_Object value;
8075 int desired_width, desired_height;
8076 double scale = 1;
8078 value = image_spec_value (spec, QCscale, NULL);
8079 if (NUMBERP (value))
8080 scale = extract_float (value);
8082 /* If width and/or height is set in the display spec assume we want
8083 to scale to those values. If either h or w is unspecified, the
8084 unspecified should be calculated from the specified to preserve
8085 aspect ratio. */
8086 value = image_spec_value (spec, QCwidth, NULL);
8087 desired_width = NATNUMP (value) ?
8088 min (XFASTINT (value) * scale, INT_MAX) : -1;
8089 value = image_spec_value (spec, QCheight, NULL);
8090 desired_height = NATNUMP (value) ?
8091 min (XFASTINT (value) * scale, INT_MAX) : -1;
8093 width = width * scale;
8094 height = height * scale;
8096 if (desired_width == -1)
8098 value = image_spec_value (spec, QCmax_width, NULL);
8099 if (NATNUMP (value))
8101 int max_width = min (XFASTINT (value), INT_MAX);
8102 if (max_width < width)
8104 /* The image is wider than :max-width. */
8105 desired_width = max_width;
8106 if (desired_height == -1)
8108 desired_height = scale_image_size (desired_width,
8109 width, height);
8110 value = image_spec_value (spec, QCmax_height, NULL);
8111 if (NATNUMP (value))
8113 int max_height = min (XFASTINT (value), INT_MAX);
8114 if (max_height < desired_height)
8116 desired_height = max_height;
8117 desired_width = scale_image_size (desired_height,
8118 height, width);
8126 if (desired_height == -1)
8128 value = image_spec_value (spec, QCmax_height, NULL);
8129 if (NATNUMP (value))
8131 int max_height = min (XFASTINT (value), INT_MAX);
8132 if (max_height < height)
8133 desired_height = max_height;
8137 if (desired_width != -1 && desired_height == -1)
8138 /* w known, calculate h. */
8139 desired_height = scale_image_size (desired_width, width, height);
8141 if (desired_width == -1 && desired_height != -1)
8142 /* h known, calculate w. */
8143 desired_width = scale_image_size (desired_height, height, width);
8145 /* We have no width/height settings, so just apply the scale. */
8146 if (desired_width == -1 && desired_height == -1)
8148 desired_width = width;
8149 desired_height = height;
8152 *d_width = desired_width;
8153 *d_height = desired_height;
8156 static bool imagemagick_image_p (Lisp_Object);
8157 static bool imagemagick_load (struct frame *, struct image *);
8158 static void imagemagick_clear_image (struct frame *, struct image *);
8160 /* Indices of image specification fields in imagemagick_format. */
8162 enum imagemagick_keyword_index
8164 IMAGEMAGICK_TYPE,
8165 IMAGEMAGICK_DATA,
8166 IMAGEMAGICK_FILE,
8167 IMAGEMAGICK_ASCENT,
8168 IMAGEMAGICK_MARGIN,
8169 IMAGEMAGICK_RELIEF,
8170 IMAGEMAGICK_ALGORITHM,
8171 IMAGEMAGICK_HEURISTIC_MASK,
8172 IMAGEMAGICK_MASK,
8173 IMAGEMAGICK_BACKGROUND,
8174 IMAGEMAGICK_HEIGHT,
8175 IMAGEMAGICK_WIDTH,
8176 IMAGEMAGICK_MAX_HEIGHT,
8177 IMAGEMAGICK_MAX_WIDTH,
8178 IMAGEMAGICK_FORMAT,
8179 IMAGEMAGICK_ROTATION,
8180 IMAGEMAGICK_CROP,
8181 IMAGEMAGICK_LAST
8184 /* Vector of image_keyword structures describing the format
8185 of valid user-defined image specifications. */
8187 static struct image_keyword imagemagick_format[IMAGEMAGICK_LAST] =
8189 {":type", IMAGE_SYMBOL_VALUE, 1},
8190 {":data", IMAGE_STRING_VALUE, 0},
8191 {":file", IMAGE_STRING_VALUE, 0},
8192 {":ascent", IMAGE_ASCENT_VALUE, 0},
8193 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
8194 {":relief", IMAGE_INTEGER_VALUE, 0},
8195 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8196 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8197 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8198 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
8199 {":height", IMAGE_INTEGER_VALUE, 0},
8200 {":width", IMAGE_INTEGER_VALUE, 0},
8201 {":max-height", IMAGE_INTEGER_VALUE, 0},
8202 {":max-width", IMAGE_INTEGER_VALUE, 0},
8203 {":format", IMAGE_SYMBOL_VALUE, 0},
8204 {":rotation", IMAGE_NUMBER_VALUE, 0},
8205 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
8208 #if defined HAVE_NTGUI && defined WINDOWSNT
8209 static bool init_imagemagick_functions (void);
8210 #else
8211 #define init_imagemagick_functions NULL
8212 #endif
8214 /* Structure describing the image type for any image handled via
8215 ImageMagick. */
8217 static struct image_type imagemagick_type =
8219 SYMBOL_INDEX (Qimagemagick),
8220 imagemagick_image_p,
8221 imagemagick_load,
8222 imagemagick_clear_image,
8223 init_imagemagick_functions,
8224 NULL
8227 /* Free X resources of imagemagick image IMG which is used on frame F. */
8229 static void
8230 imagemagick_clear_image (struct frame *f,
8231 struct image *img)
8233 x_clear_image (f, img);
8236 /* Return true if OBJECT is a valid IMAGEMAGICK image specification. Do
8237 this by calling parse_image_spec and supplying the keywords that
8238 identify the IMAGEMAGICK format. */
8240 static bool
8241 imagemagick_image_p (Lisp_Object object)
8243 struct image_keyword fmt[IMAGEMAGICK_LAST];
8244 memcpy (fmt, imagemagick_format, sizeof fmt);
8246 if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
8247 return 0;
8249 /* Must specify either the :data or :file keyword. */
8250 return fmt[IMAGEMAGICK_FILE].count + fmt[IMAGEMAGICK_DATA].count == 1;
8253 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
8254 Therefore rename the function so it doesn't collide with ImageMagick. */
8255 #define DrawRectangle DrawRectangleGif
8256 #include <wand/MagickWand.h>
8258 /* ImageMagick 6.5.3 through 6.6.5 hid PixelGetMagickColor for some reason.
8259 Emacs seems to work fine with the hidden version, so unhide it. */
8260 #include <magick/version.h>
8261 #if 0x653 <= MagickLibVersion && MagickLibVersion <= 0x665
8262 extern WandExport void PixelGetMagickColor (const PixelWand *,
8263 MagickPixelPacket *);
8264 #endif
8266 /* Log ImageMagick error message.
8267 Useful when a ImageMagick function returns the status `MagickFalse'. */
8269 static void
8270 imagemagick_error (MagickWand *wand)
8272 char *description;
8273 ExceptionType severity;
8275 description = MagickGetException (wand, &severity);
8276 image_error ("ImageMagick error: %s", build_string (description));
8277 MagickRelinquishMemory (description);
8280 /* Possibly give ImageMagick some extra help to determine the image
8281 type by supplying a "dummy" filename based on the Content-Type. */
8283 static char *
8284 imagemagick_filename_hint (Lisp_Object spec, char hint_buffer[MaxTextExtent])
8286 Lisp_Object symbol = intern ("image-format-suffixes");
8287 Lisp_Object val = find_symbol_value (symbol);
8288 Lisp_Object format;
8290 if (! CONSP (val))
8291 return NULL;
8293 format = image_spec_value (spec, intern (":format"), NULL);
8294 val = Fcar_safe (Fcdr_safe (Fassq (format, val)));
8295 if (! STRINGP (val))
8296 return NULL;
8298 /* It's OK to truncate the hint if it has MaxTextExtent or more bytes,
8299 as ImageMagick would ignore the extra bytes anyway. */
8300 snprintf (hint_buffer, MaxTextExtent, "/tmp/foo.%s", SSDATA (val));
8301 return hint_buffer;
8304 /* Animated images (e.g., GIF89a) are composed from one "master image"
8305 (which is the first one, and then there's a number of images that
8306 follow. If following images have non-transparent colors, these are
8307 composed "on top" of the master image. So, in general, one has to
8308 compute ann the preceding images to be able to display a particular
8309 sub-image.
8311 Computing all the preceding images is too slow, so we maintain a
8312 cache of previously computed images. We have to maintain a cache
8313 separate from the image cache, because the images may be scaled
8314 before display. */
8316 struct animation_cache
8318 MagickWand *wand;
8319 int index;
8320 struct timespec update_time;
8321 struct animation_cache *next;
8322 char signature[FLEXIBLE_ARRAY_MEMBER];
8325 static struct animation_cache *animation_cache = NULL;
8327 static struct animation_cache *
8328 imagemagick_create_cache (char *signature)
8330 struct animation_cache *cache
8331 = xmalloc (FLEXSIZEOF (struct animation_cache, signature,
8332 strlen (signature) + 1));
8333 cache->wand = 0;
8334 cache->index = 0;
8335 cache->next = 0;
8336 strcpy (cache->signature, signature);
8337 return cache;
8340 /* Discard cached images that haven't been used for a minute. */
8341 static void
8342 imagemagick_prune_animation_cache (void)
8344 struct animation_cache **pcache = &animation_cache;
8345 struct timespec old = timespec_sub (current_timespec (),
8346 make_timespec (60, 0));
8348 while (*pcache)
8350 struct animation_cache *cache = *pcache;
8351 if (timespec_cmp (old, cache->update_time) <= 0)
8352 pcache = &cache->next;
8353 else
8355 if (cache->wand)
8356 DestroyMagickWand (cache->wand);
8357 *pcache = cache->next;
8358 xfree (cache);
8363 static struct animation_cache *
8364 imagemagick_get_animation_cache (MagickWand *wand)
8366 char *signature = MagickGetImageSignature (wand);
8367 struct animation_cache *cache;
8368 struct animation_cache **pcache = &animation_cache;
8370 imagemagick_prune_animation_cache ();
8372 while (1)
8374 cache = *pcache;
8375 if (! cache)
8377 *pcache = cache = imagemagick_create_cache (signature);
8378 break;
8380 if (strcmp (signature, cache->signature) == 0)
8381 break;
8382 pcache = &cache->next;
8385 DestroyString (signature);
8386 cache->update_time = current_timespec ();
8387 return cache;
8390 static MagickWand *
8391 imagemagick_compute_animated_image (MagickWand *super_wand, int ino)
8393 int i;
8394 MagickWand *composite_wand;
8395 size_t dest_width, dest_height;
8396 struct animation_cache *cache = imagemagick_get_animation_cache (super_wand);
8398 MagickSetIteratorIndex (super_wand, 0);
8400 if (ino == 0 || cache->wand == NULL || cache->index > ino)
8402 composite_wand = MagickGetImage (super_wand);
8403 if (cache->wand)
8404 DestroyMagickWand (cache->wand);
8406 else
8407 composite_wand = cache->wand;
8409 dest_height = MagickGetImageHeight (composite_wand);
8411 for (i = max (1, cache->index + 1); i <= ino; i++)
8413 MagickWand *sub_wand;
8414 PixelIterator *source_iterator, *dest_iterator;
8415 PixelWand **source, **dest;
8416 size_t source_width, source_height;
8417 ssize_t source_left, source_top;
8418 MagickPixelPacket pixel;
8419 DisposeType dispose;
8420 ptrdiff_t lines = 0;
8422 MagickSetIteratorIndex (super_wand, i);
8423 sub_wand = MagickGetImage (super_wand);
8425 MagickGetImagePage (sub_wand, &source_width, &source_height,
8426 &source_left, &source_top);
8428 /* This flag says how to handle transparent pixels. */
8429 dispose = MagickGetImageDispose (sub_wand);
8431 source_iterator = NewPixelIterator (sub_wand);
8432 if (! source_iterator)
8434 DestroyMagickWand (composite_wand);
8435 DestroyMagickWand (sub_wand);
8436 cache->wand = NULL;
8437 image_error ("Imagemagick pixel iterator creation failed");
8438 return NULL;
8441 dest_iterator = NewPixelIterator (composite_wand);
8442 if (! dest_iterator)
8444 DestroyMagickWand (composite_wand);
8445 DestroyMagickWand (sub_wand);
8446 DestroyPixelIterator (source_iterator);
8447 cache->wand = NULL;
8448 image_error ("Imagemagick pixel iterator creation failed");
8449 return NULL;
8452 /* The sub-image may not start at origin, so move the destination
8453 iterator to where the sub-image should start. */
8454 if (source_top > 0)
8456 PixelSetIteratorRow (dest_iterator, source_top);
8457 lines = source_top;
8460 while ((source = PixelGetNextIteratorRow (source_iterator, &source_width))
8461 != NULL)
8463 ptrdiff_t x;
8465 /* Sanity check. This shouldn't happen, but apparently
8466 does in some pictures. */
8467 if (++lines >= dest_height)
8468 break;
8470 dest = PixelGetNextIteratorRow (dest_iterator, &dest_width);
8471 for (x = 0; x < source_width; x++)
8473 /* Sanity check. This shouldn't happen, but apparently
8474 also does in some pictures. */
8475 if (x + source_left >= dest_width)
8476 break;
8477 /* Normally we only copy over non-transparent pixels,
8478 but if the disposal method is "Background", then we
8479 copy over all pixels. */
8480 if (dispose == BackgroundDispose || PixelGetAlpha (source[x]))
8482 PixelGetMagickColor (source[x], &pixel);
8483 PixelSetMagickColor (dest[x + source_left], &pixel);
8486 PixelSyncIterator (dest_iterator);
8489 DestroyPixelIterator (source_iterator);
8490 DestroyPixelIterator (dest_iterator);
8491 DestroyMagickWand (sub_wand);
8494 /* Cache a copy for the next iteration. The current wand will be
8495 destroyed by the caller. */
8496 cache->wand = CloneMagickWand (composite_wand);
8497 cache->index = ino;
8499 return composite_wand;
8503 /* Helper function for imagemagick_load, which does the actual loading
8504 given contents and size, apart from frame and image structures,
8505 passed from imagemagick_load. Uses librimagemagick to do most of
8506 the image processing.
8508 F is a pointer to the Emacs frame; IMG to the image structure to
8509 prepare; CONTENTS is the string containing the IMAGEMAGICK data to
8510 be parsed; SIZE is the number of bytes of data; and FILENAME is
8511 either the file name or the image data.
8513 Return true if successful. */
8515 static bool
8516 imagemagick_load_image (struct frame *f, struct image *img,
8517 unsigned char *contents, unsigned int size,
8518 char *filename)
8520 int width, height;
8521 size_t image_width, image_height;
8522 MagickBooleanType status;
8523 XImagePtr ximg;
8524 int x, y;
8525 MagickWand *image_wand;
8526 PixelIterator *iterator;
8527 PixelWand **pixels, *bg_wand = NULL;
8528 MagickPixelPacket pixel;
8529 Lisp_Object image;
8530 Lisp_Object value;
8531 Lisp_Object crop;
8532 EMACS_INT ino;
8533 int desired_width, desired_height;
8534 double rotation;
8535 char hint_buffer[MaxTextExtent];
8536 char *filename_hint = NULL;
8538 /* Handle image index for image types who can contain more than one image.
8539 Interface :index is same as for GIF. First we "ping" the image to see how
8540 many sub-images it contains. Pinging is faster than loading the image to
8541 find out things about it. */
8543 /* Initialize the imagemagick environment. */
8544 MagickWandGenesis ();
8545 image = image_spec_value (img->spec, QCindex, NULL);
8546 ino = INTEGERP (image) ? XFASTINT (image) : 0;
8547 image_wand = NewMagickWand ();
8549 if (filename)
8550 status = MagickReadImage (image_wand, filename);
8551 else
8553 Lisp_Object lwidth = image_spec_value (img->spec, QCwidth, NULL);
8554 Lisp_Object lheight = image_spec_value (img->spec, QCheight, NULL);
8556 if (NATNUMP (lwidth) && NATNUMP (lheight))
8558 MagickSetSize (image_wand, XFASTINT (lwidth), XFASTINT (lheight));
8559 MagickSetDepth (image_wand, 8);
8561 filename_hint = imagemagick_filename_hint (img->spec, hint_buffer);
8562 MagickSetFilename (image_wand, filename_hint);
8563 status = MagickReadImageBlob (image_wand, contents, size);
8566 if (status == MagickFalse)
8568 imagemagick_error (image_wand);
8569 DestroyMagickWand (image_wand);
8570 return 0;
8573 #ifdef HAVE_MAGICKAUTOORIENTIMAGE
8574 /* If no :rotation is explicitly specified, apply the automatic
8575 rotation from EXIF. */
8576 if (NILP (image_spec_value (img->spec, QCrotation, NULL)))
8577 if (MagickAutoOrientImage (image_wand) == MagickFalse)
8579 image_error ("Error applying automatic orientation in image `%s'", img->spec);
8580 DestroyMagickWand (image_wand);
8581 return 0;
8583 #endif
8585 if (ino < 0 || ino >= MagickGetNumberImages (image_wand))
8587 image_error ("Invalid image number `%s' in image `%s'", image, img->spec);
8588 DestroyMagickWand (image_wand);
8589 return 0;
8592 if (MagickGetImageDelay (image_wand) > 0)
8593 img->lisp_data =
8594 Fcons (Qdelay,
8595 Fcons (make_float (MagickGetImageDelay (image_wand) / 100.0),
8596 img->lisp_data));
8598 if (MagickGetNumberImages (image_wand) > 1)
8599 img->lisp_data =
8600 Fcons (Qcount,
8601 Fcons (make_number (MagickGetNumberImages (image_wand)),
8602 img->lisp_data));
8604 /* If we have an animated image, get the new wand based on the
8605 "super-wand". */
8606 if (MagickGetNumberImages (image_wand) > 1)
8608 MagickWand *super_wand = image_wand;
8609 image_wand = imagemagick_compute_animated_image (super_wand, ino);
8610 if (! image_wand)
8611 image_wand = super_wand;
8612 else
8613 DestroyMagickWand (super_wand);
8616 /* Retrieve the frame's background color, for use later. */
8618 XColor bgcolor;
8619 Lisp_Object specified_bg;
8621 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
8622 if (!STRINGP (specified_bg)
8623 || !x_defined_color (f, SSDATA (specified_bg), &bgcolor, 0))
8624 x_query_frame_background_color (f, &bgcolor);
8626 bg_wand = NewPixelWand ();
8627 PixelSetRed (bg_wand, (double) bgcolor.red / 65535);
8628 PixelSetGreen (bg_wand, (double) bgcolor.green / 65535);
8629 PixelSetBlue (bg_wand, (double) bgcolor.blue / 65535);
8632 compute_image_size (MagickGetImageWidth (image_wand),
8633 MagickGetImageHeight (image_wand),
8634 img->spec, &desired_width, &desired_height);
8636 if (desired_width != -1 && desired_height != -1)
8638 status = MagickScaleImage (image_wand, desired_width, desired_height);
8639 if (status == MagickFalse)
8641 image_error ("Imagemagick scale failed");
8642 imagemagick_error (image_wand);
8643 goto imagemagick_error;
8647 /* crop behaves similar to image slicing in Emacs but is more memory
8648 efficient. */
8649 crop = image_spec_value (img->spec, QCcrop, NULL);
8651 if (CONSP (crop) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop)))
8653 /* After some testing, it seems MagickCropImage is the fastest crop
8654 function in ImageMagick. This crop function seems to do less copying
8655 than the alternatives, but it still reads the entire image into memory
8656 before cropping, which is apparently difficult to avoid when using
8657 imagemagick. */
8658 size_t crop_width = XINT (XCAR (crop));
8659 crop = XCDR (crop);
8660 if (CONSP (crop) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop)))
8662 size_t crop_height = XINT (XCAR (crop));
8663 crop = XCDR (crop);
8664 if (CONSP (crop) && TYPE_RANGED_INTEGERP (ssize_t, XCAR (crop)))
8666 ssize_t crop_x = XINT (XCAR (crop));
8667 crop = XCDR (crop);
8668 if (CONSP (crop) && TYPE_RANGED_INTEGERP (ssize_t, XCAR (crop)))
8670 ssize_t crop_y = XINT (XCAR (crop));
8671 MagickCropImage (image_wand, crop_width, crop_height,
8672 crop_x, crop_y);
8678 /* Furthermore :rotation. we need background color and angle for
8679 rotation. */
8681 TODO background handling for rotation specified_bg =
8682 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
8683 (specified_bg). */
8684 value = image_spec_value (img->spec, QCrotation, NULL);
8685 if (FLOATP (value))
8687 rotation = extract_float (value);
8688 status = MagickRotateImage (image_wand, bg_wand, rotation);
8689 if (status == MagickFalse)
8691 image_error ("Imagemagick image rotate failed");
8692 imagemagick_error (image_wand);
8693 goto imagemagick_error;
8697 /* Set the canvas background color to the frame or specified
8698 background, and flatten the image. Note: as of ImageMagick
8699 6.6.0, SVG image transparency is not handled properly
8700 (e.g. etc/images/splash.svg shows a white background always). */
8702 MagickWand *new_wand;
8703 MagickSetImageBackgroundColor (image_wand, bg_wand);
8704 #ifdef HAVE_MAGICKMERGEIMAGELAYERS
8705 new_wand = MagickMergeImageLayers (image_wand, MergeLayer);
8706 #else
8707 new_wand = MagickFlattenImages (image_wand);
8708 #endif
8709 DestroyMagickWand (image_wand);
8710 image_wand = new_wand;
8713 /* Finally we are done manipulating the image. Figure out the
8714 resulting width/height and transfer ownership to Emacs. */
8715 image_height = MagickGetImageHeight (image_wand);
8716 image_width = MagickGetImageWidth (image_wand);
8718 if (! (image_width <= INT_MAX && image_height <= INT_MAX
8719 && check_image_size (f, image_width, image_height)))
8721 image_size_error ();
8722 goto imagemagick_error;
8725 width = image_width;
8726 height = image_height;
8728 /* We can now get a valid pixel buffer from the imagemagick file, if all
8729 went ok. */
8731 init_color_table ();
8733 #if defined (HAVE_MAGICKEXPORTIMAGEPIXELS) && ! defined (HAVE_NS)
8734 if (imagemagick_render_type != 0)
8736 /* Magicexportimage is normally faster than pixelpushing. This
8737 method is also well tested. Some aspects of this method are
8738 ad-hoc and needs to be more researched. */
8739 int imagedepth = 24; /*MagickGetImageDepth(image_wand);*/
8740 const char *exportdepth = imagedepth <= 8 ? "I" : "BGRP"; /*"RGBP";*/
8741 /* Try to create a x pixmap to hold the imagemagick pixmap. */
8742 if (!image_create_x_image_and_pixmap (f, img, width, height, imagedepth,
8743 &ximg, 0))
8745 #ifdef COLOR_TABLE_SUPPORT
8746 free_color_table ();
8747 #endif
8748 image_error ("Imagemagick X bitmap allocation failure");
8749 goto imagemagick_error;
8752 /* Oddly, the below code doesn't seem to work:*/
8753 /* switch(ximg->bitmap_unit){ */
8754 /* case 8: */
8755 /* pixelwidth=CharPixel; */
8756 /* break; */
8757 /* case 16: */
8758 /* pixelwidth=ShortPixel; */
8759 /* break; */
8760 /* case 32: */
8761 /* pixelwidth=LongPixel; */
8762 /* break; */
8763 /* } */
8765 Here im just guessing the format of the bitmap.
8766 happens to work fine for:
8767 - bw djvu images
8768 on rgb display.
8769 seems about 3 times as fast as pixel pushing(not carefully measured)
8771 int pixelwidth = CharPixel; /*??? TODO figure out*/
8772 MagickExportImagePixels (image_wand, 0, 0, width, height,
8773 exportdepth, pixelwidth, ximg->data);
8775 else
8776 #endif /* HAVE_MAGICKEXPORTIMAGEPIXELS */
8778 size_t image_height;
8779 MagickRealType color_scale = 65535.0 / QuantumRange;
8781 /* Try to create a x pixmap to hold the imagemagick pixmap. */
8782 if (!image_create_x_image_and_pixmap (f, img, width, height, 0,
8783 &ximg, 0))
8785 #ifdef COLOR_TABLE_SUPPORT
8786 free_color_table ();
8787 #endif
8788 image_error ("Imagemagick X bitmap allocation failure");
8789 goto imagemagick_error;
8792 /* Copy imagemagick image to x with primitive yet robust pixel
8793 pusher loop. This has been tested a lot with many different
8794 images. */
8796 /* Copy pixels from the imagemagick image structure to the x image map. */
8797 iterator = NewPixelIterator (image_wand);
8798 if (! iterator)
8800 #ifdef COLOR_TABLE_SUPPORT
8801 free_color_table ();
8802 #endif
8803 x_destroy_x_image (ximg);
8804 image_error ("Imagemagick pixel iterator creation failed");
8805 goto imagemagick_error;
8808 image_height = MagickGetImageHeight (image_wand);
8809 for (y = 0; y < image_height; y++)
8811 size_t row_width;
8812 pixels = PixelGetNextIteratorRow (iterator, &row_width);
8813 if (! pixels)
8814 break;
8815 int xlim = min (row_width, width);
8816 for (x = 0; x < xlim; x++)
8818 PixelGetMagickColor (pixels[x], &pixel);
8819 XPutPixel (ximg, x, y,
8820 lookup_rgb_color (f,
8821 color_scale * pixel.red,
8822 color_scale * pixel.green,
8823 color_scale * pixel.blue));
8826 DestroyPixelIterator (iterator);
8829 #ifdef COLOR_TABLE_SUPPORT
8830 /* Remember colors allocated for this image. */
8831 img->colors = colors_in_color_table (&img->ncolors);
8832 free_color_table ();
8833 #endif /* COLOR_TABLE_SUPPORT */
8835 img->width = width;
8836 img->height = height;
8838 /* Put ximg into the image. */
8839 image_put_x_image (f, img, ximg, 0);
8841 /* Final cleanup. image_wand should be the only resource left. */
8842 DestroyMagickWand (image_wand);
8843 if (bg_wand) DestroyPixelWand (bg_wand);
8845 /* `MagickWandTerminus' terminates the imagemagick environment. */
8846 MagickWandTerminus ();
8848 return 1;
8850 imagemagick_error:
8851 DestroyMagickWand (image_wand);
8852 if (bg_wand) DestroyPixelWand (bg_wand);
8854 MagickWandTerminus ();
8855 /* TODO more cleanup. */
8856 image_error ("Error parsing IMAGEMAGICK image `%s'", img->spec);
8857 return 0;
8861 /* Load IMAGEMAGICK image IMG for use on frame F. Value is true if
8862 successful. this function will go into the imagemagick_type structure, and
8863 the prototype thus needs to be compatible with that structure. */
8865 static bool
8866 imagemagick_load (struct frame *f, struct image *img)
8868 bool success_p = 0;
8869 Lisp_Object file_name;
8871 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8872 file_name = image_spec_value (img->spec, QCfile, NULL);
8873 if (STRINGP (file_name))
8875 Lisp_Object file = x_find_image_file (file_name);
8876 if (!STRINGP (file))
8878 image_error ("Cannot find image file `%s'", file_name);
8879 return 0;
8881 file = ENCODE_FILE (file);
8882 #ifdef WINDOWSNT
8883 file = ansi_encode_filename (file);
8884 #endif
8885 success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file));
8887 /* Else its not a file, its a lisp object. Load the image from a
8888 lisp object rather than a file. */
8889 else
8891 Lisp_Object data;
8893 data = image_spec_value (img->spec, QCdata, NULL);
8894 if (!STRINGP (data))
8896 image_error ("Invalid image data `%s'", data);
8897 return 0;
8899 success_p = imagemagick_load_image (f, img, SDATA (data),
8900 SBYTES (data), NULL);
8903 return success_p;
8906 DEFUN ("imagemagick-types", Fimagemagick_types, Simagemagick_types, 0, 0, 0,
8907 doc: /* Return a list of image types supported by ImageMagick.
8908 Each entry in this list is a symbol named after an ImageMagick format
8909 tag. See the ImageMagick manual for a list of ImageMagick formats and
8910 their descriptions (http://www.imagemagick.org/script/formats.php).
8911 You can also try the shell command: `identify -list format'.
8913 Note that ImageMagick recognizes many file-types that Emacs does not
8914 recognize as images, such as C. See `imagemagick-types-enable'
8915 and `imagemagick-types-inhibit'. */)
8916 (void)
8918 Lisp_Object typelist = Qnil;
8919 size_t numf = 0;
8920 ExceptionInfo *ex;
8921 char **imtypes;
8922 size_t i;
8924 ex = AcquireExceptionInfo ();
8925 imtypes = GetMagickList ("*", &numf, ex);
8926 DestroyExceptionInfo (ex);
8928 for (i = 0; i < numf; i++)
8930 Lisp_Object imagemagicktype = intern (imtypes[i]);
8931 typelist = Fcons (imagemagicktype, typelist);
8932 imtypes[i] = MagickRelinquishMemory (imtypes[i]);
8935 MagickRelinquishMemory (imtypes);
8936 return Fnreverse (typelist);
8939 #endif /* defined (HAVE_IMAGEMAGICK) */
8943 /***********************************************************************
8945 ***********************************************************************/
8947 #ifdef HAVE_RSVG
8949 /* Function prototypes. */
8951 static bool svg_image_p (Lisp_Object object);
8952 static bool svg_load (struct frame *f, struct image *img);
8954 static bool svg_load_image (struct frame *, struct image *,
8955 char *, ptrdiff_t, char *);
8957 /* Indices of image specification fields in svg_format, below. */
8959 enum svg_keyword_index
8961 SVG_TYPE,
8962 SVG_DATA,
8963 SVG_FILE,
8964 SVG_ASCENT,
8965 SVG_MARGIN,
8966 SVG_RELIEF,
8967 SVG_ALGORITHM,
8968 SVG_HEURISTIC_MASK,
8969 SVG_MASK,
8970 SVG_BACKGROUND,
8971 SVG_LAST
8974 /* Vector of image_keyword structures describing the format
8975 of valid user-defined image specifications. */
8977 static const struct image_keyword svg_format[SVG_LAST] =
8979 {":type", IMAGE_SYMBOL_VALUE, 1},
8980 {":data", IMAGE_STRING_VALUE, 0},
8981 {":file", IMAGE_STRING_VALUE, 0},
8982 {":ascent", IMAGE_ASCENT_VALUE, 0},
8983 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
8984 {":relief", IMAGE_INTEGER_VALUE, 0},
8985 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8986 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8987 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8988 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8991 # if defined HAVE_NTGUI && defined WINDOWSNT
8992 static bool init_svg_functions (void);
8993 # else
8994 #define init_svg_functions NULL
8995 # endif
8997 /* Structure describing the image type `svg'. Its the same type of
8998 structure defined for all image formats, handled by emacs image
8999 functions. See struct image_type in dispextern.h. */
9001 static struct image_type svg_type =
9003 SYMBOL_INDEX (Qsvg),
9004 svg_image_p,
9005 svg_load,
9006 x_clear_image,
9007 init_svg_functions,
9008 NULL
9012 /* Return true if OBJECT is a valid SVG image specification. Do
9013 this by calling parse_image_spec and supplying the keywords that
9014 identify the SVG format. */
9016 static bool
9017 svg_image_p (Lisp_Object object)
9019 struct image_keyword fmt[SVG_LAST];
9020 memcpy (fmt, svg_format, sizeof fmt);
9022 if (!parse_image_spec (object, fmt, SVG_LAST, Qsvg))
9023 return 0;
9025 /* Must specify either the :data or :file keyword. */
9026 return fmt[SVG_FILE].count + fmt[SVG_DATA].count == 1;
9029 /* Some versions of glib's gatomic.h define MemoryBarrier, but MinGW
9030 w32api 3.18 and later has its own definition. The following gross
9031 hack avoids the clash. */
9032 # ifdef WINDOWSNT
9033 # if (__W32API_MAJOR_VERSION + (__W32API_MINOR_VERSION >= 18)) >= 4
9034 # define W32_SAVE_MINGW_VERSION __MINGW_MAJOR_VERSION
9035 # undef __MINGW_MAJOR_VERSION
9036 # define __MINGW_MAJOR_VERSION 4
9037 # endif
9038 # endif
9040 # include <librsvg/rsvg.h>
9042 # ifdef WINDOWSNT
9044 /* Restore the original definition of __MINGW_MAJOR_VERSION. */
9045 # ifdef W32_SAVE_MINGW_VERSION
9046 # undef __MINGW_MAJOR_VERSION
9047 # define __MINGW_MAJOR_VERSION W32_SAVE_MINGW_VERSION
9048 # ifdef __MINGW_MAJOR_VERSION
9049 # undef W32_SAVE_MINGW_VERSION
9050 # endif
9051 # endif
9053 /* SVG library functions. */
9054 DEF_DLL_FN (RsvgHandle *, rsvg_handle_new, (void));
9055 DEF_DLL_FN (void, rsvg_handle_get_dimensions,
9056 (RsvgHandle *, RsvgDimensionData *));
9057 DEF_DLL_FN (gboolean, rsvg_handle_write,
9058 (RsvgHandle *, const guchar *, gsize, GError **));
9059 DEF_DLL_FN (gboolean, rsvg_handle_close, (RsvgHandle *, GError **));
9060 DEF_DLL_FN (GdkPixbuf *, rsvg_handle_get_pixbuf, (RsvgHandle *));
9061 DEF_DLL_FN (void, rsvg_handle_set_base_uri, (RsvgHandle *, const char *));
9063 DEF_DLL_FN (int, gdk_pixbuf_get_width, (const GdkPixbuf *));
9064 DEF_DLL_FN (int, gdk_pixbuf_get_height, (const GdkPixbuf *));
9065 DEF_DLL_FN (guchar *, gdk_pixbuf_get_pixels, (const GdkPixbuf *));
9066 DEF_DLL_FN (int, gdk_pixbuf_get_rowstride, (const GdkPixbuf *));
9067 DEF_DLL_FN (GdkColorspace, gdk_pixbuf_get_colorspace, (const GdkPixbuf *));
9068 DEF_DLL_FN (int, gdk_pixbuf_get_n_channels, (const GdkPixbuf *));
9069 DEF_DLL_FN (gboolean, gdk_pixbuf_get_has_alpha, (const GdkPixbuf *));
9070 DEF_DLL_FN (int, gdk_pixbuf_get_bits_per_sample, (const GdkPixbuf *));
9072 # if ! GLIB_CHECK_VERSION (2, 36, 0)
9073 DEF_DLL_FN (void, g_type_init, (void));
9074 # endif
9075 DEF_DLL_FN (void, g_object_unref, (gpointer));
9076 DEF_DLL_FN (void, g_clear_error, (GError **));
9078 static bool
9079 init_svg_functions (void)
9081 HMODULE library, gdklib = NULL, glib = NULL, gobject = NULL;
9083 if (!(glib = w32_delayed_load (Qglib))
9084 || !(gobject = w32_delayed_load (Qgobject))
9085 || !(gdklib = w32_delayed_load (Qgdk_pixbuf))
9086 || !(library = w32_delayed_load (Qsvg)))
9088 if (gdklib) FreeLibrary (gdklib);
9089 if (gobject) FreeLibrary (gobject);
9090 if (glib) FreeLibrary (glib);
9091 return 0;
9094 LOAD_DLL_FN (library, rsvg_handle_new);
9095 LOAD_DLL_FN (library, rsvg_handle_get_dimensions);
9096 LOAD_DLL_FN (library, rsvg_handle_write);
9097 LOAD_DLL_FN (library, rsvg_handle_close);
9098 LOAD_DLL_FN (library, rsvg_handle_get_pixbuf);
9099 LOAD_DLL_FN (library, rsvg_handle_set_base_uri);
9101 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_width);
9102 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_height);
9103 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_pixels);
9104 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_rowstride);
9105 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_colorspace);
9106 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_n_channels);
9107 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_has_alpha);
9108 LOAD_DLL_FN (gdklib, gdk_pixbuf_get_bits_per_sample);
9110 # if ! GLIB_CHECK_VERSION (2, 36, 0)
9111 LOAD_DLL_FN (gobject, g_type_init);
9112 # endif
9113 LOAD_DLL_FN (gobject, g_object_unref);
9114 LOAD_DLL_FN (glib, g_clear_error);
9116 return 1;
9119 /* The following aliases for library functions allow dynamic loading
9120 to be used on some platforms. */
9122 # undef gdk_pixbuf_get_bits_per_sample
9123 # undef gdk_pixbuf_get_colorspace
9124 # undef gdk_pixbuf_get_has_alpha
9125 # undef gdk_pixbuf_get_height
9126 # undef gdk_pixbuf_get_n_channels
9127 # undef gdk_pixbuf_get_pixels
9128 # undef gdk_pixbuf_get_rowstride
9129 # undef gdk_pixbuf_get_width
9130 # undef g_clear_error
9131 # undef g_object_unref
9132 # undef g_type_init
9133 # undef rsvg_handle_close
9134 # undef rsvg_handle_get_dimensions
9135 # undef rsvg_handle_get_pixbuf
9136 # undef rsvg_handle_new
9137 # undef rsvg_handle_set_base_uri
9138 # undef rsvg_handle_write
9140 # define gdk_pixbuf_get_bits_per_sample fn_gdk_pixbuf_get_bits_per_sample
9141 # define gdk_pixbuf_get_colorspace fn_gdk_pixbuf_get_colorspace
9142 # define gdk_pixbuf_get_has_alpha fn_gdk_pixbuf_get_has_alpha
9143 # define gdk_pixbuf_get_height fn_gdk_pixbuf_get_height
9144 # define gdk_pixbuf_get_n_channels fn_gdk_pixbuf_get_n_channels
9145 # define gdk_pixbuf_get_pixels fn_gdk_pixbuf_get_pixels
9146 # define gdk_pixbuf_get_rowstride fn_gdk_pixbuf_get_rowstride
9147 # define gdk_pixbuf_get_width fn_gdk_pixbuf_get_width
9148 # define g_clear_error fn_g_clear_error
9149 # define g_object_unref fn_g_object_unref
9150 # if ! GLIB_CHECK_VERSION (2, 36, 0)
9151 # define g_type_init fn_g_type_init
9152 # endif
9153 # define rsvg_handle_close fn_rsvg_handle_close
9154 # define rsvg_handle_get_dimensions fn_rsvg_handle_get_dimensions
9155 # define rsvg_handle_get_pixbuf fn_rsvg_handle_get_pixbuf
9156 # define rsvg_handle_new fn_rsvg_handle_new
9157 # define rsvg_handle_set_base_uri fn_rsvg_handle_set_base_uri
9158 # define rsvg_handle_write fn_rsvg_handle_write
9160 # endif /* !WINDOWSNT */
9162 /* Load SVG image IMG for use on frame F. Value is true if
9163 successful. */
9165 static bool
9166 svg_load (struct frame *f, struct image *img)
9168 bool success_p = 0;
9169 Lisp_Object file_name;
9171 /* If IMG->spec specifies a file name, create a non-file spec from it. */
9172 file_name = image_spec_value (img->spec, QCfile, NULL);
9173 if (STRINGP (file_name))
9175 int fd;
9176 Lisp_Object file = x_find_image_fd (file_name, &fd);
9177 if (!STRINGP (file))
9179 image_error ("Cannot find image file `%s'", file_name);
9180 return 0;
9183 /* Read the entire file into memory. */
9184 ptrdiff_t size;
9185 char *contents = slurp_file (fd, &size);
9186 if (contents == NULL)
9188 image_error ("Error loading SVG image `%s'", file);
9189 return 0;
9191 /* If the file was slurped into memory properly, parse it. */
9192 success_p = svg_load_image (f, img, contents, size,
9193 SSDATA (ENCODE_FILE (file)));
9194 xfree (contents);
9196 /* Else its not a file, its a lisp object. Load the image from a
9197 lisp object rather than a file. */
9198 else
9200 Lisp_Object data, original_filename;
9202 data = image_spec_value (img->spec, QCdata, NULL);
9203 if (!STRINGP (data))
9205 image_error ("Invalid image data `%s'", data);
9206 return 0;
9208 original_filename = BVAR (current_buffer, filename);
9209 success_p = svg_load_image (f, img, SSDATA (data), SBYTES (data),
9210 (NILP (original_filename) ? NULL
9211 : SSDATA (original_filename)));
9214 return success_p;
9217 /* Load frame F and image IMG. CONTENTS contains the SVG XML data to
9218 be parsed, SIZE is its size, and FILENAME is the name of the SVG
9219 file being loaded.
9221 Use librsvg to do most of the image processing.
9223 Return true when successful. */
9224 static bool
9225 svg_load_image (struct frame *f, struct image *img, char *contents,
9226 ptrdiff_t size, char *filename)
9228 RsvgHandle *rsvg_handle;
9229 RsvgDimensionData dimension_data;
9230 GError *err = NULL;
9231 GdkPixbuf *pixbuf;
9232 int width;
9233 int height;
9234 const guint8 *pixels;
9235 int rowstride;
9237 #if ! GLIB_CHECK_VERSION (2, 36, 0)
9238 /* g_type_init is a glib function that must be called prior to
9239 using gnome type library functions (obsolete since 2.36.0). */
9240 g_type_init ();
9241 #endif
9243 /* Make a handle to a new rsvg object. */
9244 rsvg_handle = rsvg_handle_new ();
9246 /* Set base_uri for properly handling referenced images (via 'href').
9247 See rsvg bug 596114 - "image refs are relative to curdir, not .svg file"
9248 (https://bugzilla.gnome.org/show_bug.cgi?id=596114). */
9249 if (filename)
9250 rsvg_handle_set_base_uri(rsvg_handle, filename);
9252 /* Parse the contents argument and fill in the rsvg_handle. */
9253 rsvg_handle_write (rsvg_handle, (unsigned char *) contents, size, &err);
9254 if (err) goto rsvg_error;
9256 /* The parsing is complete, rsvg_handle is ready to used, close it
9257 for further writes. */
9258 rsvg_handle_close (rsvg_handle, &err);
9259 if (err) goto rsvg_error;
9261 rsvg_handle_get_dimensions (rsvg_handle, &dimension_data);
9262 if (! check_image_size (f, dimension_data.width, dimension_data.height))
9264 image_size_error ();
9265 goto rsvg_error;
9268 /* We can now get a valid pixel buffer from the svg file, if all
9269 went ok. */
9270 pixbuf = rsvg_handle_get_pixbuf (rsvg_handle);
9271 if (!pixbuf) goto rsvg_error;
9272 g_object_unref (rsvg_handle);
9274 /* Extract some meta data from the svg handle. */
9275 width = gdk_pixbuf_get_width (pixbuf);
9276 height = gdk_pixbuf_get_height (pixbuf);
9277 pixels = gdk_pixbuf_get_pixels (pixbuf);
9278 rowstride = gdk_pixbuf_get_rowstride (pixbuf);
9280 /* Validate the svg meta data. */
9281 eassert (gdk_pixbuf_get_colorspace (pixbuf) == GDK_COLORSPACE_RGB);
9282 eassert (gdk_pixbuf_get_n_channels (pixbuf) == 4);
9283 eassert (gdk_pixbuf_get_has_alpha (pixbuf));
9284 eassert (gdk_pixbuf_get_bits_per_sample (pixbuf) == 8);
9287 #ifdef USE_CAIRO
9288 unsigned char *data = (unsigned char *) xmalloc (width*height*4);
9289 uint32_t bgcolor = get_spec_bg_or_alpha_as_argb (img, f);
9291 for (int y = 0; y < height; ++y)
9293 const guchar *iconptr = pixels + y * rowstride;
9294 uint32_t *dataptr = (uint32_t *) (data + y * rowstride);
9296 for (int x = 0; x < width; ++x)
9298 if (iconptr[3] == 0)
9299 *dataptr = bgcolor;
9300 else
9301 *dataptr = (iconptr[0] << 16)
9302 | (iconptr[1] << 8)
9303 | iconptr[2]
9304 | (iconptr[3] << 24);
9306 iconptr += 4;
9307 ++dataptr;
9311 create_cairo_image_surface (img, data, width, height);
9312 g_object_unref (pixbuf);
9313 #else
9314 /* Try to create a x pixmap to hold the svg pixmap. */
9315 XImagePtr ximg;
9316 if (!image_create_x_image_and_pixmap (f, img, width, height, 0, &ximg, 0))
9318 g_object_unref (pixbuf);
9319 return 0;
9322 init_color_table ();
9324 /* Handle alpha channel by combining the image with a background
9325 color. */
9326 XColor background;
9327 Lisp_Object specified_bg = image_spec_value (img->spec, QCbackground, NULL);
9328 if (!STRINGP (specified_bg)
9329 || !x_defined_color (f, SSDATA (specified_bg), &background, 0))
9330 x_query_frame_background_color (f, &background);
9332 /* SVG pixmaps specify transparency in the last byte, so right
9333 shift 8 bits to get rid of it, since emacs doesn't support
9334 transparency. */
9335 background.red >>= 8;
9336 background.green >>= 8;
9337 background.blue >>= 8;
9339 /* This loop handles opacity values, since Emacs assumes
9340 non-transparent images. Each pixel must be "flattened" by
9341 calculating the resulting color, given the transparency of the
9342 pixel, and the image background color. */
9343 for (int y = 0; y < height; ++y)
9345 for (int x = 0; x < width; ++x)
9347 int red = *pixels++;
9348 int green = *pixels++;
9349 int blue = *pixels++;
9350 int opacity = *pixels++;
9352 red = ((red * opacity)
9353 + (background.red * ((1 << 8) - opacity)));
9354 green = ((green * opacity)
9355 + (background.green * ((1 << 8) - opacity)));
9356 blue = ((blue * opacity)
9357 + (background.blue * ((1 << 8) - opacity)));
9359 XPutPixel (ximg, x, y, lookup_rgb_color (f, red, green, blue));
9362 pixels += rowstride - 4 * width;
9365 #ifdef COLOR_TABLE_SUPPORT
9366 /* Remember colors allocated for this image. */
9367 img->colors = colors_in_color_table (&img->ncolors);
9368 free_color_table ();
9369 #endif /* COLOR_TABLE_SUPPORT */
9371 g_object_unref (pixbuf);
9373 img->width = width;
9374 img->height = height;
9376 /* Maybe fill in the background field while we have ximg handy.
9377 Casting avoids a GCC warning. */
9378 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
9380 /* Put ximg into the image. */
9381 image_put_x_image (f, img, ximg, 0);
9382 #endif /* ! USE_CAIRO */
9385 return 1;
9387 rsvg_error:
9388 g_object_unref (rsvg_handle);
9389 /* FIXME: Use error->message so the user knows what is the actual
9390 problem with the image. */
9391 image_error ("Error parsing SVG image `%s'", img->spec);
9392 g_clear_error (&err);
9393 return 0;
9396 #endif /* defined (HAVE_RSVG) */
9401 /***********************************************************************
9402 Ghostscript
9403 ***********************************************************************/
9405 #ifdef HAVE_X_WINDOWS
9406 #define HAVE_GHOSTSCRIPT 1
9407 #endif /* HAVE_X_WINDOWS */
9409 #ifdef HAVE_GHOSTSCRIPT
9411 static bool gs_image_p (Lisp_Object object);
9412 static bool gs_load (struct frame *f, struct image *img);
9413 static void gs_clear_image (struct frame *f, struct image *img);
9415 /* Indices of image specification fields in gs_format, below. */
9417 enum gs_keyword_index
9419 GS_TYPE,
9420 GS_PT_WIDTH,
9421 GS_PT_HEIGHT,
9422 GS_FILE,
9423 GS_LOADER,
9424 GS_BOUNDING_BOX,
9425 GS_ASCENT,
9426 GS_MARGIN,
9427 GS_RELIEF,
9428 GS_ALGORITHM,
9429 GS_HEURISTIC_MASK,
9430 GS_MASK,
9431 GS_BACKGROUND,
9432 GS_LAST
9435 /* Vector of image_keyword structures describing the format
9436 of valid user-defined image specifications. */
9438 static const struct image_keyword gs_format[GS_LAST] =
9440 {":type", IMAGE_SYMBOL_VALUE, 1},
9441 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9442 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
9443 {":file", IMAGE_STRING_VALUE, 1},
9444 {":loader", IMAGE_FUNCTION_VALUE, 0},
9445 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
9446 {":ascent", IMAGE_ASCENT_VALUE, 0},
9447 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
9448 {":relief", IMAGE_INTEGER_VALUE, 0},
9449 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9450 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9451 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
9452 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
9455 /* Structure describing the image type `ghostscript'. */
9457 static struct image_type gs_type =
9459 SYMBOL_INDEX (Qpostscript),
9460 gs_image_p,
9461 gs_load,
9462 gs_clear_image,
9463 NULL,
9464 NULL
9468 /* Free X resources of Ghostscript image IMG which is used on frame F. */
9470 static void
9471 gs_clear_image (struct frame *f, struct image *img)
9473 x_clear_image (f, img);
9477 /* Return true if OBJECT is a valid Ghostscript image
9478 specification. */
9480 static bool
9481 gs_image_p (Lisp_Object object)
9483 struct image_keyword fmt[GS_LAST];
9484 Lisp_Object tem;
9485 int i;
9487 memcpy (fmt, gs_format, sizeof fmt);
9489 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
9490 return 0;
9492 /* Bounding box must be a list or vector containing 4 integers. */
9493 tem = fmt[GS_BOUNDING_BOX].value;
9494 if (CONSP (tem))
9496 for (i = 0; i < 4; ++i, tem = XCDR (tem))
9497 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
9498 return 0;
9499 if (!NILP (tem))
9500 return 0;
9502 else if (VECTORP (tem))
9504 if (ASIZE (tem) != 4)
9505 return 0;
9506 for (i = 0; i < 4; ++i)
9507 if (!INTEGERP (AREF (tem, i)))
9508 return 0;
9510 else
9511 return 0;
9513 return 1;
9517 /* Load Ghostscript image IMG for use on frame F. Value is true
9518 if successful. */
9520 static bool
9521 gs_load (struct frame *f, struct image *img)
9523 uprintmax_t printnum1, printnum2;
9524 char buffer[sizeof " " + INT_STRLEN_BOUND (printmax_t)];
9525 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
9526 Lisp_Object frame;
9527 double in_width, in_height;
9528 Lisp_Object pixel_colors = Qnil;
9530 /* Compute pixel size of pixmap needed from the given size in the
9531 image specification. Sizes in the specification are in pt. 1 pt
9532 = 1/72 in, xdpi and ydpi are stored in the frame's X display
9533 info. */
9534 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
9535 in_width = INTEGERP (pt_width) ? XFASTINT (pt_width) / 72.0 : 0;
9536 in_width *= FRAME_RES_X (f);
9537 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
9538 in_height = INTEGERP (pt_height) ? XFASTINT (pt_height) / 72.0 : 0;
9539 in_height *= FRAME_RES_Y (f);
9541 if (! (in_width <= INT_MAX && in_height <= INT_MAX
9542 && check_image_size (f, in_width, in_height)))
9544 image_size_error ();
9545 return 0;
9547 img->width = in_width;
9548 img->height = in_height;
9550 /* Create the pixmap. */
9551 eassert (img->pixmap == NO_PIXMAP);
9553 if (x_check_image_size (0, img->width, img->height))
9555 /* Only W32 version did BLOCK_INPUT here. ++kfs */
9556 block_input ();
9557 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_DRAWABLE (f),
9558 img->width, img->height,
9559 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
9560 unblock_input ();
9563 if (!img->pixmap)
9565 image_error ("Unable to create pixmap for `%s'" , img->spec);
9566 return 0;
9569 /* Call the loader to fill the pixmap. It returns a process object
9570 if successful. We do not record_unwind_protect here because
9571 other places in redisplay like calling window scroll functions
9572 don't either. Let the Lisp loader use `unwind-protect' instead. */
9573 printnum1 = FRAME_X_DRAWABLE (f);
9574 printnum2 = img->pixmap;
9575 window_and_pixmap_id
9576 = make_formatted_string (buffer, "%"pMu" %"pMu, printnum1, printnum2);
9578 printnum1 = FRAME_FOREGROUND_PIXEL (f);
9579 printnum2 = FRAME_BACKGROUND_PIXEL (f);
9580 pixel_colors
9581 = make_formatted_string (buffer, "%"pMu" %"pMu, printnum1, printnum2);
9583 XSETFRAME (frame, f);
9584 loader = image_spec_value (img->spec, QCloader, NULL);
9585 if (NILP (loader))
9586 loader = intern ("gs-load-image");
9588 img->lisp_data = call6 (loader, frame, img->spec,
9589 make_number (img->width),
9590 make_number (img->height),
9591 window_and_pixmap_id,
9592 pixel_colors);
9593 return PROCESSP (img->lisp_data);
9597 /* Kill the Ghostscript process that was started to fill PIXMAP on
9598 frame F. Called from XTread_socket when receiving an event
9599 telling Emacs that Ghostscript has finished drawing. */
9601 void
9602 x_kill_gs_process (Pixmap pixmap, struct frame *f)
9604 struct image_cache *c = FRAME_IMAGE_CACHE (f);
9605 ptrdiff_t i;
9606 struct image *img;
9608 /* Find the image containing PIXMAP. */
9609 for (i = 0; i < c->used; ++i)
9610 if (c->images[i]->pixmap == pixmap)
9611 break;
9613 /* Should someone in between have cleared the image cache, for
9614 instance, give up. */
9615 if (i == c->used)
9616 return;
9618 /* Kill the GS process. We should have found PIXMAP in the image
9619 cache and its image should contain a process object. */
9620 img = c->images[i];
9621 eassert (PROCESSP (img->lisp_data));
9622 Fkill_process (img->lisp_data, Qnil);
9623 img->lisp_data = Qnil;
9625 #if defined (HAVE_X_WINDOWS)
9627 /* On displays with a mutable colormap, figure out the colors
9628 allocated for the image by looking at the pixels of an XImage for
9629 img->pixmap. */
9630 if (x_mutable_colormap (FRAME_X_VISUAL (f)))
9632 XImagePtr ximg;
9634 block_input ();
9636 /* Try to get an XImage for img->pixmep. */
9637 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
9638 0, 0, img->width, img->height, ~0, ZPixmap);
9639 if (ximg)
9641 /* Initialize the color table. */
9642 init_color_table ();
9644 /* For each pixel of the image, look its color up in the
9645 color table. After having done so, the color table will
9646 contain an entry for each color used by the image. */
9647 #ifdef COLOR_TABLE_SUPPORT
9648 for (int y = 0; y < img->height; ++y)
9649 for (int x = 0; x < img->width; ++x)
9651 unsigned long pixel = XGetPixel (ximg, x, y);
9653 lookup_pixel_color (f, pixel);
9656 /* Record colors in the image. Free color table and XImage. */
9657 img->colors = colors_in_color_table (&img->ncolors);
9658 free_color_table ();
9659 #endif
9660 XDestroyImage (ximg);
9662 #if 0 /* This doesn't seem to be the case. If we free the colors
9663 here, we get a BadAccess later in x_clear_image when
9664 freeing the colors. */
9665 /* We have allocated colors once, but Ghostscript has also
9666 allocated colors on behalf of us. So, to get the
9667 reference counts right, free them once. */
9668 if (img->ncolors)
9669 x_free_colors (f, img->colors, img->ncolors);
9670 #endif
9672 else
9673 image_error ("Cannot get X image of `%s'; colors will not be freed",
9674 img->spec);
9676 unblock_input ();
9678 #endif /* HAVE_X_WINDOWS */
9680 /* Now that we have the pixmap, compute mask and transform the
9681 image if requested. */
9682 block_input ();
9683 postprocess_image (f, img);
9684 unblock_input ();
9687 #endif /* HAVE_GHOSTSCRIPT */
9690 /***********************************************************************
9691 Tests
9692 ***********************************************************************/
9694 #ifdef GLYPH_DEBUG
9696 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
9697 doc: /* Value is non-nil if SPEC is a valid image specification. */)
9698 (Lisp_Object spec)
9700 return valid_image_p (spec) ? Qt : Qnil;
9704 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0,
9705 doc: /* */)
9706 (Lisp_Object spec)
9708 ptrdiff_t id = -1;
9710 if (valid_image_p (spec))
9711 id = lookup_image (SELECTED_FRAME (), spec);
9713 debug_print (spec);
9714 return make_number (id);
9717 #endif /* GLYPH_DEBUG */
9720 /***********************************************************************
9721 Initialization
9722 ***********************************************************************/
9724 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 1, 1, 0,
9725 doc: /* Initialize image library implementing image type TYPE.
9726 Return non-nil if TYPE is a supported image type.
9728 If image libraries are loaded dynamically (currently only the case on
9729 MS-Windows), load the library for TYPE if it is not yet loaded, using
9730 the library file(s) specified by `dynamic-library-alist'. */)
9731 (Lisp_Object type)
9733 return lookup_image_type (type) ? Qt : Qnil;
9736 /* Look up image type TYPE, and return a pointer to its image_type
9737 structure. Return 0 if TYPE is not a known image type. */
9739 static struct image_type *
9740 lookup_image_type (Lisp_Object type)
9742 /* Types pbm and xbm are built-in and always available. */
9743 if (EQ (type, Qpbm))
9744 return define_image_type (&pbm_type);
9746 if (EQ (type, Qxbm))
9747 return define_image_type (&xbm_type);
9749 #if defined (HAVE_XPM) || defined (HAVE_NS)
9750 if (EQ (type, Qxpm))
9751 return define_image_type (&xpm_type);
9752 #endif
9754 #if defined (HAVE_JPEG) || defined (HAVE_NS)
9755 if (EQ (type, Qjpeg))
9756 return define_image_type (&jpeg_type);
9757 #endif
9759 #if defined (HAVE_TIFF) || defined (HAVE_NS)
9760 if (EQ (type, Qtiff))
9761 return define_image_type (&tiff_type);
9762 #endif
9764 #if defined (HAVE_GIF) || defined (HAVE_NS)
9765 if (EQ (type, Qgif))
9766 return define_image_type (&gif_type);
9767 #endif
9769 #if defined (HAVE_PNG) || defined (HAVE_NS) || defined (USE_CAIRO)
9770 if (EQ (type, Qpng))
9771 return define_image_type (&png_type);
9772 #endif
9774 #if defined (HAVE_RSVG)
9775 if (EQ (type, Qsvg))
9776 return define_image_type (&svg_type);
9777 #endif
9779 #if defined (HAVE_IMAGEMAGICK)
9780 if (EQ (type, Qimagemagick))
9781 return define_image_type (&imagemagick_type);
9782 #endif
9784 #ifdef HAVE_GHOSTSCRIPT
9785 if (EQ (type, Qpostscript))
9786 return define_image_type (&gs_type);
9787 #endif
9789 return NULL;
9792 #if !defined CANNOT_DUMP && defined HAVE_WINDOW_SYSTEM
9794 /* Reset image_types before dumping.
9795 Called from Fdump_emacs. */
9797 void
9798 reset_image_types (void)
9800 while (image_types)
9802 struct image_type *next = image_types->next;
9803 xfree (image_types);
9804 image_types = next;
9807 #endif
9809 void
9810 syms_of_image (void)
9812 /* Initialize this only once; it will be reset before dumping. */
9813 image_types = NULL;
9815 /* Must be defined now because we're going to update it below, while
9816 defining the supported image types. */
9817 DEFVAR_LISP ("image-types", Vimage_types,
9818 doc: /* List of potentially supported image types.
9819 Each element of the list is a symbol for an image type, like `jpeg' or `png'.
9820 To check whether it is really supported, use `image-type-available-p'. */);
9821 Vimage_types = Qnil;
9823 DEFVAR_LISP ("max-image-size", Vmax_image_size,
9824 doc: /* Maximum size of images.
9825 Emacs will not load an image into memory if its pixel width or
9826 pixel height exceeds this limit.
9828 If the value is an integer, it directly specifies the maximum
9829 image height and width, measured in pixels. If it is a floating
9830 point number, it specifies the maximum image height and width
9831 as a ratio to the frame height and width. If the value is
9832 non-numeric, there is no explicit limit on the size of images. */);
9833 Vmax_image_size = make_float (MAX_IMAGE_SIZE);
9835 /* Other symbols. */
9836 DEFSYM (Qcount, "count");
9837 DEFSYM (Qextension_data, "extension-data");
9838 DEFSYM (Qdelay, "delay");
9840 /* Keywords. */
9841 DEFSYM (QCascent, ":ascent");
9842 DEFSYM (QCmargin, ":margin");
9843 DEFSYM (QCrelief, ":relief");
9844 DEFSYM (QCconversion, ":conversion");
9845 DEFSYM (QCcolor_symbols, ":color-symbols");
9846 DEFSYM (QCheuristic_mask, ":heuristic-mask");
9847 DEFSYM (QCindex, ":index");
9848 DEFSYM (QCcrop, ":crop");
9849 DEFSYM (QCrotation, ":rotation");
9850 DEFSYM (QCmatrix, ":matrix");
9851 DEFSYM (QCscale, ":scale");
9852 DEFSYM (QCcolor_adjustment, ":color-adjustment");
9853 DEFSYM (QCmask, ":mask");
9855 /* Other symbols. */
9856 DEFSYM (Qlaplace, "laplace");
9857 DEFSYM (Qemboss, "emboss");
9858 DEFSYM (Qedge_detection, "edge-detection");
9859 DEFSYM (Qheuristic, "heuristic");
9861 DEFSYM (Qpostscript, "postscript");
9862 DEFSYM (QCmax_width, ":max-width");
9863 DEFSYM (QCmax_height, ":max-height");
9864 #ifdef HAVE_GHOSTSCRIPT
9865 ADD_IMAGE_TYPE (Qpostscript);
9866 DEFSYM (QCloader, ":loader");
9867 DEFSYM (QCpt_width, ":pt-width");
9868 DEFSYM (QCpt_height, ":pt-height");
9869 #endif /* HAVE_GHOSTSCRIPT */
9871 #ifdef HAVE_NTGUI
9872 /* Versions of libpng, libgif, and libjpeg that we were compiled with,
9873 or -1 if no PNG/GIF support was compiled in. This is tested by
9874 w32-win.el to correctly set up the alist used to search for the
9875 respective image libraries. */
9876 DEFSYM (Qlibpng_version, "libpng-version");
9877 Fset (Qlibpng_version,
9878 #if HAVE_PNG
9879 make_number (PNG_LIBPNG_VER)
9880 #else
9881 make_number (-1)
9882 #endif
9884 DEFSYM (Qlibgif_version, "libgif-version");
9885 Fset (Qlibgif_version,
9886 #ifdef HAVE_GIF
9887 make_number (GIFLIB_MAJOR * 10000
9888 + GIFLIB_MINOR * 100
9889 + GIFLIB_RELEASE)
9890 #else
9891 make_number (-1)
9892 #endif
9894 DEFSYM (Qlibjpeg_version, "libjpeg-version");
9895 Fset (Qlibjpeg_version,
9896 #if HAVE_JPEG
9897 make_number (JPEG_LIB_VERSION)
9898 #else
9899 make_number (-1)
9900 #endif
9902 #endif
9904 DEFSYM (Qpbm, "pbm");
9905 ADD_IMAGE_TYPE (Qpbm);
9907 DEFSYM (Qxbm, "xbm");
9908 ADD_IMAGE_TYPE (Qxbm);
9910 #if defined (HAVE_XPM) || defined (HAVE_NS)
9911 DEFSYM (Qxpm, "xpm");
9912 ADD_IMAGE_TYPE (Qxpm);
9913 #endif
9915 #if defined (HAVE_JPEG) || defined (HAVE_NS)
9916 DEFSYM (Qjpeg, "jpeg");
9917 ADD_IMAGE_TYPE (Qjpeg);
9918 #endif
9920 #if defined (HAVE_TIFF) || defined (HAVE_NS)
9921 DEFSYM (Qtiff, "tiff");
9922 ADD_IMAGE_TYPE (Qtiff);
9923 #endif
9925 #if defined (HAVE_GIF) || defined (HAVE_NS)
9926 DEFSYM (Qgif, "gif");
9927 ADD_IMAGE_TYPE (Qgif);
9928 #endif
9930 #if defined (HAVE_PNG) || defined (HAVE_NS)
9931 DEFSYM (Qpng, "png");
9932 ADD_IMAGE_TYPE (Qpng);
9933 #endif
9935 #if defined (HAVE_IMAGEMAGICK)
9936 DEFSYM (Qimagemagick, "imagemagick");
9937 ADD_IMAGE_TYPE (Qimagemagick);
9938 #endif
9940 #if defined (HAVE_RSVG)
9941 DEFSYM (Qsvg, "svg");
9942 ADD_IMAGE_TYPE (Qsvg);
9943 #ifdef HAVE_NTGUI
9944 /* Other libraries used directly by svg code. */
9945 DEFSYM (Qgdk_pixbuf, "gdk-pixbuf");
9946 DEFSYM (Qglib, "glib");
9947 DEFSYM (Qgobject, "gobject");
9948 #endif /* HAVE_NTGUI */
9949 #endif /* HAVE_RSVG */
9951 defsubr (&Sinit_image_library);
9952 #ifdef HAVE_IMAGEMAGICK
9953 defsubr (&Simagemagick_types);
9954 #endif
9955 defsubr (&Sclear_image_cache);
9956 defsubr (&Simage_flush);
9957 defsubr (&Simage_size);
9958 defsubr (&Simage_mask_p);
9959 defsubr (&Simage_metadata);
9961 #ifdef GLYPH_DEBUG
9962 defsubr (&Simagep);
9963 defsubr (&Slookup_image);
9964 #endif
9966 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images,
9967 doc: /* Non-nil means always draw a cross over disabled images.
9968 Disabled images are those having a `:conversion disabled' property.
9969 A cross is always drawn on black & white displays. */);
9970 cross_disabled_images = 0;
9972 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path,
9973 doc: /* List of directories to search for window system bitmap files. */);
9974 Vx_bitmap_file_path = decode_env_path (0, PATH_BITMAPS, 0);
9976 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay,
9977 doc: /* Maximum time after which images are removed from the cache.
9978 When an image has not been displayed this many seconds, Emacs
9979 automatically removes it from the image cache. If the cache contains
9980 a large number of images, the actual eviction time may be shorter.
9981 The value can also be nil, meaning the cache is never cleared.
9983 The function `clear-image-cache' disregards this variable. */);
9984 Vimage_cache_eviction_delay = make_number (300);
9985 #ifdef HAVE_IMAGEMAGICK
9986 DEFVAR_INT ("imagemagick-render-type", imagemagick_render_type,
9987 doc: /* Integer indicating which ImageMagick rendering method to use.
9988 The options are:
9989 0 -- the default method (pixel pushing)
9990 1 -- a newer method ("MagickExportImagePixels") that may perform
9991 better (speed etc) in some cases, but has not been as thoroughly
9992 tested with Emacs as the default method. This method requires
9993 ImageMagick version 6.4.6 (approximately) or later.
9994 */);
9995 /* MagickExportImagePixels is in 6.4.6-9, but not 6.4.4-10. */
9996 imagemagick_render_type = 0;
9997 #endif