ChangeLog fixes from M-x authors
[emacs.git] / src / image.c
blobce36699767d38476abdc513fda17d0569af6e4a3
1 /* Functions for image support on window system.
3 Copyright (C) 1989, 1992-2013 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 #include <config.h>
21 #include <stdio.h>
22 #include <unistd.h>
24 #ifdef HAVE_PNG
25 #if defined HAVE_LIBPNG_PNG_H
26 # include <libpng/png.h>
27 #else
28 # include <png.h>
29 #endif
30 #endif
32 #include <setjmp.h>
34 #include <c-ctype.h>
36 /* This makes the fields of a Display accessible, in Xlib header files. */
38 #define XLIB_ILLEGAL_ACCESS
40 #include "lisp.h"
41 #include "frame.h"
42 #include "window.h"
43 #include "dispextern.h"
44 #include "blockinput.h"
45 #include "systime.h"
46 #include <epaths.h>
47 #include "character.h"
48 #include "coding.h"
49 #include "termhooks.h"
50 #include "font.h"
52 #ifdef HAVE_SYS_STAT_H
53 #include <sys/stat.h>
54 #endif /* HAVE_SYS_STAT_H */
56 #ifdef HAVE_SYS_TYPES_H
57 #include <sys/types.h>
58 #endif /* HAVE_SYS_TYPES_H */
60 #ifdef HAVE_WINDOW_SYSTEM
61 #include TERM_HEADER
62 #endif /* HAVE_WINDOW_SYSTEM */
64 #ifdef HAVE_X_WINDOWS
65 #define COLOR_TABLE_SUPPORT 1
67 typedef struct x_bitmap_record Bitmap_Record;
68 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
69 #define NO_PIXMAP None
71 #define RGB_PIXEL_COLOR unsigned long
73 #define PIX_MASK_RETAIN 0
74 #define PIX_MASK_DRAW 1
75 #endif /* HAVE_X_WINDOWS */
77 #ifdef HAVE_NTGUI
79 /* We need (or want) w32.h only when we're _not_ compiling for Cygwin. */
80 #ifdef WINDOWSNT
81 # include "w32.h"
82 #endif
84 /* W32_TODO : Color tables on W32. */
85 #undef COLOR_TABLE_SUPPORT
87 typedef struct w32_bitmap_record Bitmap_Record;
88 #define GET_PIXEL(ximg, x, y) GetPixel (ximg, x, y)
89 #define NO_PIXMAP 0
91 #define RGB_PIXEL_COLOR COLORREF
93 #define PIX_MASK_RETAIN 0
94 #define PIX_MASK_DRAW 1
96 #define x_defined_color w32_defined_color
97 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
99 /* Version of libpng that we were compiled with, or -1 if no PNG
100 support was compiled in. This is tested by w32-win.el to correctly
101 set up the alist used to search for PNG libraries. */
102 Lisp_Object Qlibpng_version;
103 #endif /* HAVE_NTGUI */
105 #ifdef HAVE_NS
106 #undef COLOR_TABLE_SUPPORT
108 typedef struct ns_bitmap_record Bitmap_Record;
110 #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y)
111 #define NO_PIXMAP 0
113 #define RGB_PIXEL_COLOR unsigned long
114 #define ZPixmap 0
116 #define PIX_MASK_RETAIN 0
117 #define PIX_MASK_DRAW 1
119 #define x_defined_color(f, name, color_def, alloc) \
120 ns_defined_color (f, name, color_def, alloc, 0)
121 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
122 #endif /* HAVE_NS */
125 /* The symbol `postscript' identifying images of this type. */
127 static Lisp_Object Qpostscript;
129 static void x_disable_image (struct frame *, struct image *);
130 static void x_edge_detection (struct frame *, struct image *, Lisp_Object,
131 Lisp_Object);
133 static void init_color_table (void);
134 static unsigned long lookup_rgb_color (struct frame *f, int r, int g, int b);
135 #ifdef COLOR_TABLE_SUPPORT
136 static void free_color_table (void);
137 static unsigned long *colors_in_color_table (int *n);
138 #endif
140 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
141 id, which is just an int that this section returns. Bitmaps are
142 reference counted so they can be shared among frames.
144 Bitmap indices are guaranteed to be > 0, so a negative number can
145 be used to indicate no bitmap.
147 If you use x_create_bitmap_from_data, then you must keep track of
148 the bitmaps yourself. That is, creating a bitmap from the same
149 data more than once will not be caught. */
151 #ifdef HAVE_NS
152 XImagePtr
153 XGetImage (Display *display, Pixmap pixmap, int x, int y,
154 unsigned int width, unsigned int height,
155 unsigned long plane_mask, int format)
157 /* TODO: not sure what this function is supposed to do.. */
158 ns_retain_object (pixmap);
159 return pixmap;
162 /* use with imgs created by ns_image_for_XPM */
163 unsigned long
164 XGetPixel (XImagePtr ximage, int x, int y)
166 return ns_get_pixel (ximage, x, y);
169 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
170 pixel is assumed to be in form RGB */
171 void
172 XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel)
174 ns_put_pixel (ximage, x, y, pixel);
176 #endif /* HAVE_NS */
179 /* Functions to access the contents of a bitmap, given an id. */
182 x_bitmap_height (FRAME_PTR f, ptrdiff_t id)
184 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
188 x_bitmap_width (FRAME_PTR f, ptrdiff_t id)
190 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
193 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
194 ptrdiff_t
195 x_bitmap_pixmap (FRAME_PTR f, ptrdiff_t id)
197 /* HAVE_NTGUI needs the explicit cast here. */
198 return (ptrdiff_t) FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
200 #endif
202 #ifdef HAVE_X_WINDOWS
204 x_bitmap_mask (FRAME_PTR f, ptrdiff_t id)
206 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].mask;
208 #endif
210 /* Allocate a new bitmap record. Returns index of new record. */
212 static ptrdiff_t
213 x_allocate_bitmap_record (FRAME_PTR f)
215 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
216 ptrdiff_t i;
218 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
219 return ++dpyinfo->bitmaps_last;
221 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
222 if (dpyinfo->bitmaps[i].refcount == 0)
223 return i + 1;
225 dpyinfo->bitmaps =
226 xpalloc (dpyinfo->bitmaps, &dpyinfo->bitmaps_size,
227 10, -1, sizeof *dpyinfo->bitmaps);
228 return ++dpyinfo->bitmaps_last;
231 /* Add one reference to the reference count of the bitmap with id ID. */
233 void
234 x_reference_bitmap (FRAME_PTR f, ptrdiff_t id)
236 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
239 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
241 ptrdiff_t
242 x_create_bitmap_from_data (struct frame *f, char *bits, unsigned int width, unsigned int height)
244 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
245 ptrdiff_t id;
247 #ifdef HAVE_X_WINDOWS
248 Pixmap bitmap;
249 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
250 bits, width, height);
251 if (! bitmap)
252 return -1;
253 #endif /* HAVE_X_WINDOWS */
255 #ifdef HAVE_NTGUI
256 Pixmap bitmap;
257 bitmap = CreateBitmap (width, height,
258 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_planes,
259 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_cbits,
260 bits);
261 if (! bitmap)
262 return -1;
263 #endif /* HAVE_NTGUI */
265 #ifdef HAVE_NS
266 void *bitmap = ns_image_from_XBM (bits, width, height);
267 if (!bitmap)
268 return -1;
269 #endif
271 id = x_allocate_bitmap_record (f);
273 #ifdef HAVE_NS
274 dpyinfo->bitmaps[id - 1].img = bitmap;
275 dpyinfo->bitmaps[id - 1].depth = 1;
276 #endif
278 dpyinfo->bitmaps[id - 1].file = NULL;
279 dpyinfo->bitmaps[id - 1].height = height;
280 dpyinfo->bitmaps[id - 1].width = width;
281 dpyinfo->bitmaps[id - 1].refcount = 1;
283 #ifdef HAVE_X_WINDOWS
284 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
285 dpyinfo->bitmaps[id - 1].have_mask = 0;
286 dpyinfo->bitmaps[id - 1].depth = 1;
287 #endif /* HAVE_X_WINDOWS */
289 #ifdef HAVE_NTGUI
290 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
291 dpyinfo->bitmaps[id - 1].hinst = NULL;
292 dpyinfo->bitmaps[id - 1].depth = 1;
293 #endif /* HAVE_NTGUI */
295 return id;
298 /* Create bitmap from file FILE for frame F. */
300 ptrdiff_t
301 x_create_bitmap_from_file (struct frame *f, Lisp_Object file)
303 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
305 #ifdef HAVE_NTGUI
306 return -1; /* W32_TODO : bitmap support */
307 #endif /* HAVE_NTGUI */
309 #ifdef HAVE_NS
310 ptrdiff_t id;
311 void *bitmap = ns_image_from_file (file);
313 if (!bitmap)
314 return -1;
317 id = x_allocate_bitmap_record (f);
318 dpyinfo->bitmaps[id - 1].img = bitmap;
319 dpyinfo->bitmaps[id - 1].refcount = 1;
320 dpyinfo->bitmaps[id - 1].file = xmalloc (SBYTES (file) + 1);
321 dpyinfo->bitmaps[id - 1].depth = 1;
322 dpyinfo->bitmaps[id - 1].height = ns_image_width (bitmap);
323 dpyinfo->bitmaps[id - 1].width = ns_image_height (bitmap);
324 strcpy (dpyinfo->bitmaps[id - 1].file, SSDATA (file));
325 return id;
326 #endif
328 #ifdef HAVE_X_WINDOWS
329 unsigned int width, height;
330 Pixmap bitmap;
331 int xhot, yhot, result;
332 ptrdiff_t id;
333 Lisp_Object found;
334 int fd;
335 char *filename;
337 /* Look for an existing bitmap with the same name. */
338 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
340 if (dpyinfo->bitmaps[id].refcount
341 && dpyinfo->bitmaps[id].file
342 && !strcmp (dpyinfo->bitmaps[id].file, SSDATA (file)))
344 ++dpyinfo->bitmaps[id].refcount;
345 return id + 1;
349 /* Search bitmap-file-path for the file, if appropriate. */
350 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
351 if (fd < 0)
352 return -1;
353 emacs_close (fd);
355 filename = SSDATA (found);
357 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
358 filename, &width, &height, &bitmap, &xhot, &yhot);
359 if (result != BitmapSuccess)
360 return -1;
362 id = x_allocate_bitmap_record (f);
363 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
364 dpyinfo->bitmaps[id - 1].have_mask = 0;
365 dpyinfo->bitmaps[id - 1].refcount = 1;
366 dpyinfo->bitmaps[id - 1].file = xmalloc (SBYTES (file) + 1);
367 dpyinfo->bitmaps[id - 1].depth = 1;
368 dpyinfo->bitmaps[id - 1].height = height;
369 dpyinfo->bitmaps[id - 1].width = width;
370 strcpy (dpyinfo->bitmaps[id - 1].file, SSDATA (file));
372 return id;
373 #endif /* HAVE_X_WINDOWS */
376 /* Free bitmap B. */
378 static void
379 free_bitmap_record (Display_Info *dpyinfo, Bitmap_Record *bm)
381 #ifdef HAVE_X_WINDOWS
382 XFreePixmap (dpyinfo->display, bm->pixmap);
383 if (bm->have_mask)
384 XFreePixmap (dpyinfo->display, bm->mask);
385 #endif /* HAVE_X_WINDOWS */
387 #ifdef HAVE_NTGUI
388 DeleteObject (bm->pixmap);
389 #endif /* HAVE_NTGUI */
391 #ifdef HAVE_NS
392 ns_release_object (bm->img);
393 #endif
395 if (bm->file)
397 xfree (bm->file);
398 bm->file = NULL;
402 /* Remove reference to bitmap with id number ID. */
404 void
405 x_destroy_bitmap (FRAME_PTR f, ptrdiff_t id)
407 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
409 if (id > 0)
411 Bitmap_Record *bm = &dpyinfo->bitmaps[id - 1];
413 if (--bm->refcount == 0)
415 block_input ();
416 free_bitmap_record (dpyinfo, bm);
417 unblock_input ();
422 /* Free all the bitmaps for the display specified by DPYINFO. */
424 void
425 x_destroy_all_bitmaps (Display_Info *dpyinfo)
427 ptrdiff_t i;
428 Bitmap_Record *bm = dpyinfo->bitmaps;
430 for (i = 0; i < dpyinfo->bitmaps_last; i++, bm++)
431 if (bm->refcount > 0)
432 free_bitmap_record (dpyinfo, bm);
434 dpyinfo->bitmaps_last = 0;
437 static bool x_create_x_image_and_pixmap (struct frame *, int, int, int,
438 XImagePtr *, Pixmap *);
439 static void x_destroy_x_image (XImagePtr ximg);
441 #ifdef HAVE_X_WINDOWS
443 /* Useful functions defined in the section
444 `Image type independent image structures' below. */
446 static unsigned long four_corners_best (XImagePtr ximg,
447 int *corners,
448 unsigned long width,
449 unsigned long height);
452 /* Create a mask of a bitmap. Note is this not a perfect mask.
453 It's nicer with some borders in this context */
455 void
456 x_create_bitmap_mask (struct frame *f, ptrdiff_t id)
458 Pixmap pixmap, mask;
459 XImagePtr ximg, mask_img;
460 unsigned long width, height;
461 bool result;
462 unsigned long bg;
463 unsigned long x, y, xp, xm, yp, ym;
464 GC gc;
466 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
468 if (!(id > 0))
469 return;
471 pixmap = x_bitmap_pixmap (f, id);
472 width = x_bitmap_width (f, id);
473 height = x_bitmap_height (f, id);
475 block_input ();
476 ximg = XGetImage (FRAME_X_DISPLAY (f), pixmap, 0, 0, width, height,
477 ~0, ZPixmap);
479 if (!ximg)
481 unblock_input ();
482 return;
485 result = x_create_x_image_and_pixmap (f, width, height, 1, &mask_img, &mask);
487 unblock_input ();
488 if (!result)
490 XDestroyImage (ximg);
491 return;
494 bg = four_corners_best (ximg, NULL, width, height);
496 for (y = 0; y < ximg->height; ++y)
498 for (x = 0; x < ximg->width; ++x)
500 xp = x != ximg->width - 1 ? x + 1 : 0;
501 xm = x != 0 ? x - 1 : ximg->width - 1;
502 yp = y != ximg->height - 1 ? y + 1 : 0;
503 ym = y != 0 ? y - 1 : ximg->height - 1;
504 if (XGetPixel (ximg, x, y) == bg
505 && XGetPixel (ximg, x, yp) == bg
506 && XGetPixel (ximg, x, ym) == bg
507 && XGetPixel (ximg, xp, y) == bg
508 && XGetPixel (ximg, xp, yp) == bg
509 && XGetPixel (ximg, xp, ym) == bg
510 && XGetPixel (ximg, xm, y) == bg
511 && XGetPixel (ximg, xm, yp) == bg
512 && XGetPixel (ximg, xm, ym) == bg)
513 XPutPixel (mask_img, x, y, 0);
514 else
515 XPutPixel (mask_img, x, y, 1);
519 eassert (input_blocked_p ());
520 gc = XCreateGC (FRAME_X_DISPLAY (f), mask, 0, NULL);
521 XPutImage (FRAME_X_DISPLAY (f), mask, gc, mask_img, 0, 0, 0, 0,
522 width, height);
523 XFreeGC (FRAME_X_DISPLAY (f), gc);
525 dpyinfo->bitmaps[id - 1].have_mask = 1;
526 dpyinfo->bitmaps[id - 1].mask = mask;
528 XDestroyImage (ximg);
529 x_destroy_x_image (mask_img);
532 #endif /* HAVE_X_WINDOWS */
535 /***********************************************************************
536 Image types
537 ***********************************************************************/
539 /* List of supported image types. Use define_image_type to add new
540 types. Use lookup_image_type to find a type for a given symbol. */
542 static struct image_type *image_types;
544 /* The symbol `xbm' which is used as the type symbol for XBM images. */
546 static Lisp_Object Qxbm;
548 /* Keywords. */
550 Lisp_Object QCascent, QCmargin, QCrelief;
551 Lisp_Object QCconversion;
552 static Lisp_Object QCheuristic_mask;
553 static Lisp_Object QCcolor_symbols;
554 static Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask, QCgeometry;
555 static Lisp_Object QCcrop, QCrotation;
557 /* Other symbols. */
559 static Lisp_Object Qcount, Qextension_data, Qdelay;
560 static Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
562 /* Forward function prototypes. */
564 static struct image_type *lookup_image_type (Lisp_Object);
565 static void x_laplace (struct frame *, struct image *);
566 static void x_emboss (struct frame *, struct image *);
567 static void x_build_heuristic_mask (struct frame *, struct image *,
568 Lisp_Object);
569 #ifdef WINDOWSNT
570 extern Lisp_Object Vlibrary_cache;
571 #define CACHE_IMAGE_TYPE(type, status) \
572 do { Vlibrary_cache = Fcons (Fcons (type, status), Vlibrary_cache); } while (0)
573 #else
574 #define CACHE_IMAGE_TYPE(type, status)
575 #endif
577 #define ADD_IMAGE_TYPE(type) \
578 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
580 /* Define a new image type from TYPE. This adds a copy of TYPE to
581 image_types and caches the loading status of TYPE. */
583 static struct image_type *
584 define_image_type (struct image_type *type)
586 struct image_type *p = NULL;
587 Lisp_Object target_type = *type->type;
588 bool type_valid = 1;
590 block_input ();
592 for (p = image_types; p; p = p->next)
593 if (EQ (*p->type, target_type))
594 goto done;
596 if (type->init)
598 #if defined HAVE_NTGUI && defined WINDOWSNT
599 /* If we failed to load the library before, don't try again. */
600 Lisp_Object tested = Fassq (target_type, Vlibrary_cache);
601 if (CONSP (tested) && NILP (XCDR (tested)))
602 type_valid = 0;
603 else
604 #endif
606 type_valid = type->init ();
607 CACHE_IMAGE_TYPE (target_type, type_valid ? Qt : Qnil);
611 if (type_valid)
613 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
614 The initialized data segment is read-only. */
615 p = xmalloc (sizeof *p);
616 *p = *type;
617 p->next = image_types;
618 image_types = p;
621 done:
622 unblock_input ();
623 return p;
627 /* Value is true if OBJECT is a valid Lisp image specification. A
628 valid image specification is a list whose car is the symbol
629 `image', and whose rest is a property list. The property list must
630 contain a value for key `:type'. That value must be the name of a
631 supported image type. The rest of the property list depends on the
632 image type. */
634 bool
635 valid_image_p (Lisp_Object object)
637 bool valid_p = 0;
639 if (IMAGEP (object))
641 Lisp_Object tem;
643 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
644 if (EQ (XCAR (tem), QCtype))
646 tem = XCDR (tem);
647 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
649 struct image_type *type;
650 type = lookup_image_type (XCAR (tem));
651 if (type)
652 valid_p = type->valid_p (object);
655 break;
659 return valid_p;
663 /* Log error message with format string FORMAT and argument ARG.
664 Signaling an error, e.g. when an image cannot be loaded, is not a
665 good idea because this would interrupt redisplay, and the error
666 message display would lead to another redisplay. This function
667 therefore simply displays a message. */
669 static void
670 image_error (const char *format, Lisp_Object arg1, Lisp_Object arg2)
672 add_to_log (format, arg1, arg2);
677 /***********************************************************************
678 Image specifications
679 ***********************************************************************/
681 enum image_value_type
683 IMAGE_DONT_CHECK_VALUE_TYPE,
684 IMAGE_STRING_VALUE,
685 IMAGE_STRING_OR_NIL_VALUE,
686 IMAGE_SYMBOL_VALUE,
687 IMAGE_POSITIVE_INTEGER_VALUE,
688 IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR,
689 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
690 IMAGE_ASCENT_VALUE,
691 IMAGE_INTEGER_VALUE,
692 IMAGE_FUNCTION_VALUE,
693 IMAGE_NUMBER_VALUE,
694 IMAGE_BOOL_VALUE
697 /* Structure used when parsing image specifications. */
699 struct image_keyword
701 /* Name of keyword. */
702 const char *name;
704 /* The type of value allowed. */
705 enum image_value_type type;
707 /* True means key must be present. */
708 bool mandatory_p;
710 /* Used to recognize duplicate keywords in a property list. */
711 int count;
713 /* The value that was found. */
714 Lisp_Object value;
718 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
719 has the format (image KEYWORD VALUE ...). One of the keyword/
720 value pairs must be `:type TYPE'. KEYWORDS is a vector of
721 image_keywords structures of size NKEYWORDS describing other
722 allowed keyword/value pairs. Value is true if SPEC is valid. */
724 static bool
725 parse_image_spec (Lisp_Object spec, struct image_keyword *keywords,
726 int nkeywords, Lisp_Object type)
728 int i;
729 Lisp_Object plist;
731 if (!IMAGEP (spec))
732 return 0;
734 plist = XCDR (spec);
735 while (CONSP (plist))
737 Lisp_Object key, value;
739 /* First element of a pair must be a symbol. */
740 key = XCAR (plist);
741 plist = XCDR (plist);
742 if (!SYMBOLP (key))
743 return 0;
745 /* There must follow a value. */
746 if (!CONSP (plist))
747 return 0;
748 value = XCAR (plist);
749 plist = XCDR (plist);
751 /* Find key in KEYWORDS. Error if not found. */
752 for (i = 0; i < nkeywords; ++i)
753 if (strcmp (keywords[i].name, SSDATA (SYMBOL_NAME (key))) == 0)
754 break;
756 if (i == nkeywords)
757 continue;
759 /* Record that we recognized the keyword. If a keywords
760 was found more than once, it's an error. */
761 keywords[i].value = value;
762 if (keywords[i].count > 1)
763 return 0;
764 ++keywords[i].count;
766 /* Check type of value against allowed type. */
767 switch (keywords[i].type)
769 case IMAGE_STRING_VALUE:
770 if (!STRINGP (value))
771 return 0;
772 break;
774 case IMAGE_STRING_OR_NIL_VALUE:
775 if (!STRINGP (value) && !NILP (value))
776 return 0;
777 break;
779 case IMAGE_SYMBOL_VALUE:
780 if (!SYMBOLP (value))
781 return 0;
782 break;
784 case IMAGE_POSITIVE_INTEGER_VALUE:
785 if (! RANGED_INTEGERP (1, value, INT_MAX))
786 return 0;
787 break;
789 case IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR:
790 if (RANGED_INTEGERP (0, value, INT_MAX))
791 break;
792 if (CONSP (value)
793 && RANGED_INTEGERP (0, XCAR (value), INT_MAX)
794 && RANGED_INTEGERP (0, XCDR (value), INT_MAX))
795 break;
796 return 0;
798 case IMAGE_ASCENT_VALUE:
799 if (SYMBOLP (value) && EQ (value, Qcenter))
800 break;
801 else if (RANGED_INTEGERP (0, value, 100))
802 break;
803 return 0;
805 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
806 /* Unlike the other integer-related cases, this one does not
807 verify that VALUE fits in 'int'. This is because callers
808 want EMACS_INT. */
809 if (!INTEGERP (value) || XINT (value) < 0)
810 return 0;
811 break;
813 case IMAGE_DONT_CHECK_VALUE_TYPE:
814 break;
816 case IMAGE_FUNCTION_VALUE:
817 value = indirect_function (value);
818 if (!NILP (Ffunctionp (value)))
819 break;
820 return 0;
822 case IMAGE_NUMBER_VALUE:
823 if (!INTEGERP (value) && !FLOATP (value))
824 return 0;
825 break;
827 case IMAGE_INTEGER_VALUE:
828 if (! TYPE_RANGED_INTEGERP (int, value))
829 return 0;
830 break;
832 case IMAGE_BOOL_VALUE:
833 if (!NILP (value) && !EQ (value, Qt))
834 return 0;
835 break;
837 default:
838 emacs_abort ();
839 break;
842 if (EQ (key, QCtype) && !EQ (type, value))
843 return 0;
846 /* Check that all mandatory fields are present. */
847 for (i = 0; i < nkeywords; ++i)
848 if (keywords[i].mandatory_p && keywords[i].count == 0)
849 return 0;
851 return NILP (plist);
855 /* Return the value of KEY in image specification SPEC. Value is nil
856 if KEY is not present in SPEC. Set *FOUND depending on whether KEY
857 was found in SPEC. */
859 static Lisp_Object
860 image_spec_value (Lisp_Object spec, Lisp_Object key, bool *found)
862 Lisp_Object tail;
864 eassert (valid_image_p (spec));
866 for (tail = XCDR (spec);
867 CONSP (tail) && CONSP (XCDR (tail));
868 tail = XCDR (XCDR (tail)))
870 if (EQ (XCAR (tail), key))
872 if (found)
873 *found = 1;
874 return XCAR (XCDR (tail));
878 if (found)
879 *found = 0;
880 return Qnil;
884 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
885 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
886 PIXELS non-nil means return the size in pixels, otherwise return the
887 size in canonical character units.
888 FRAME is the frame on which the image will be displayed. FRAME nil
889 or omitted means use the selected frame. */)
890 (Lisp_Object spec, Lisp_Object pixels, Lisp_Object frame)
892 Lisp_Object size;
894 size = Qnil;
895 if (valid_image_p (spec))
897 struct frame *f = check_x_frame (frame);
898 ptrdiff_t id = lookup_image (f, spec);
899 struct image *img = IMAGE_FROM_ID (f, id);
900 int width = img->width + 2 * img->hmargin;
901 int height = img->height + 2 * img->vmargin;
903 if (NILP (pixels))
904 size = Fcons (make_float ((double) width / FRAME_COLUMN_WIDTH (f)),
905 make_float ((double) height / FRAME_LINE_HEIGHT (f)));
906 else
907 size = Fcons (make_number (width), make_number (height));
909 else
910 error ("Invalid image specification");
912 return size;
916 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
917 doc: /* Return t if image SPEC has a mask bitmap.
918 FRAME is the frame on which the image will be displayed. FRAME nil
919 or omitted means use the selected frame. */)
920 (Lisp_Object spec, Lisp_Object frame)
922 Lisp_Object mask;
924 mask = Qnil;
925 if (valid_image_p (spec))
927 struct frame *f = check_x_frame (frame);
928 ptrdiff_t id = lookup_image (f, spec);
929 struct image *img = IMAGE_FROM_ID (f, id);
930 if (img->mask)
931 mask = Qt;
933 else
934 error ("Invalid image specification");
936 return mask;
939 DEFUN ("image-metadata", Fimage_metadata, Simage_metadata, 1, 2, 0,
940 doc: /* Return metadata for image SPEC.
941 FRAME is the frame on which the image will be displayed. FRAME nil
942 or omitted means use the selected frame. */)
943 (Lisp_Object spec, Lisp_Object frame)
945 Lisp_Object ext;
947 ext = Qnil;
948 if (valid_image_p (spec))
950 struct frame *f = check_x_frame (frame);
951 ptrdiff_t id = lookup_image (f, spec);
952 struct image *img = IMAGE_FROM_ID (f, id);
953 ext = img->lisp_data;
956 return ext;
960 /***********************************************************************
961 Image type independent image structures
962 ***********************************************************************/
964 #define MAX_IMAGE_SIZE 10.0
965 /* Allocate and return a new image structure for image specification
966 SPEC. SPEC has a hash value of HASH. */
968 static struct image *
969 make_image (Lisp_Object spec, EMACS_UINT hash)
971 struct image *img = xzalloc (sizeof *img);
972 Lisp_Object file = image_spec_value (spec, QCfile, NULL);
974 eassert (valid_image_p (spec));
975 img->dependencies = NILP (file) ? Qnil : list1 (file);
976 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
977 eassert (img->type != NULL);
978 img->spec = spec;
979 img->lisp_data = Qnil;
980 img->ascent = DEFAULT_IMAGE_ASCENT;
981 img->hash = hash;
982 img->corners[BOT_CORNER] = -1; /* Full image */
983 return img;
987 /* Free image IMG which was used on frame F, including its resources. */
989 static void
990 free_image (struct frame *f, struct image *img)
992 if (img)
994 struct image_cache *c = FRAME_IMAGE_CACHE (f);
996 /* Remove IMG from the hash table of its cache. */
997 if (img->prev)
998 img->prev->next = img->next;
999 else
1000 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
1002 if (img->next)
1003 img->next->prev = img->prev;
1005 c->images[img->id] = NULL;
1007 /* Free resources, then free IMG. */
1008 img->type->free (f, img);
1009 xfree (img);
1013 /* Return true if the given widths and heights are valid for display. */
1015 static bool
1016 check_image_size (struct frame *f, int width, int height)
1018 int w, h;
1020 if (width <= 0 || height <= 0)
1021 return 0;
1023 if (INTEGERP (Vmax_image_size))
1024 return (width <= XINT (Vmax_image_size)
1025 && height <= XINT (Vmax_image_size));
1026 else if (FLOATP (Vmax_image_size))
1028 if (f != NULL)
1030 w = FRAME_PIXEL_WIDTH (f);
1031 h = FRAME_PIXEL_HEIGHT (f);
1033 else
1034 w = h = 1024; /* Arbitrary size for unknown frame. */
1035 return (width <= XFLOAT_DATA (Vmax_image_size) * w
1036 && height <= XFLOAT_DATA (Vmax_image_size) * h);
1038 else
1039 return 1;
1042 /* Prepare image IMG for display on frame F. Must be called before
1043 drawing an image. */
1045 void
1046 prepare_image_for_display (struct frame *f, struct image *img)
1048 /* We're about to display IMG, so set its timestamp to `now'. */
1049 img->timestamp = current_emacs_time ();
1051 /* If IMG doesn't have a pixmap yet, load it now, using the image
1052 type dependent loader function. */
1053 if (img->pixmap == NO_PIXMAP && !img->load_failed_p)
1054 img->load_failed_p = ! img->type->load (f, img);
1059 /* Value is the number of pixels for the ascent of image IMG when
1060 drawn in face FACE. */
1063 image_ascent (struct image *img, struct face *face, struct glyph_slice *slice)
1065 int height;
1066 int ascent;
1068 if (slice->height == img->height)
1069 height = img->height + img->vmargin;
1070 else if (slice->y == 0)
1071 height = slice->height + img->vmargin;
1072 else
1073 height = slice->height;
1075 if (img->ascent == CENTERED_IMAGE_ASCENT)
1077 if (face->font)
1079 #ifdef HAVE_NTGUI
1080 /* W32 specific version. Why?. ++kfs */
1081 ascent = height / 2 - (FONT_DESCENT (face->font)
1082 - FONT_BASE (face->font)) / 2;
1083 #else
1084 /* This expression is arranged so that if the image can't be
1085 exactly centered, it will be moved slightly up. This is
1086 because a typical font is `top-heavy' (due to the presence
1087 uppercase letters), so the image placement should err towards
1088 being top-heavy too. It also just generally looks better. */
1089 ascent = (height + FONT_BASE (face->font)
1090 - FONT_DESCENT (face->font) + 1) / 2;
1091 #endif /* HAVE_NTGUI */
1093 else
1094 ascent = height / 2;
1096 else
1097 ascent = height * (img->ascent / 100.0);
1099 return ascent;
1103 /* Image background colors. */
1105 /* Find the "best" corner color of a bitmap.
1106 On W32, XIMG is assumed to a device context with the bitmap selected. */
1108 static RGB_PIXEL_COLOR
1109 four_corners_best (XImagePtr_or_DC ximg, int *corners,
1110 unsigned long width, unsigned long height)
1112 RGB_PIXEL_COLOR corner_pixels[4], best IF_LINT (= 0);
1113 int i, best_count;
1115 if (corners && corners[BOT_CORNER] >= 0)
1117 /* Get the colors at the corner_pixels of ximg. */
1118 corner_pixels[0] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[TOP_CORNER]);
1119 corner_pixels[1] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[TOP_CORNER]);
1120 corner_pixels[2] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[BOT_CORNER] - 1);
1121 corner_pixels[3] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[BOT_CORNER] - 1);
1123 else
1125 /* Get the colors at the corner_pixels of ximg. */
1126 corner_pixels[0] = GET_PIXEL (ximg, 0, 0);
1127 corner_pixels[1] = GET_PIXEL (ximg, width - 1, 0);
1128 corner_pixels[2] = GET_PIXEL (ximg, width - 1, height - 1);
1129 corner_pixels[3] = GET_PIXEL (ximg, 0, height - 1);
1131 /* Choose the most frequently found color as background. */
1132 for (i = best_count = 0; i < 4; ++i)
1134 int j, n;
1136 for (j = n = 0; j < 4; ++j)
1137 if (corner_pixels[i] == corner_pixels[j])
1138 ++n;
1140 if (n > best_count)
1141 best = corner_pixels[i], best_count = n;
1144 return best;
1147 /* Portability macros */
1149 #ifdef HAVE_NTGUI
1151 #define Destroy_Image(img_dc, prev) \
1152 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1154 #define Free_Pixmap(display, pixmap) \
1155 DeleteObject (pixmap)
1157 #elif defined (HAVE_NS)
1159 #define Destroy_Image(ximg, dummy) \
1160 ns_release_object (ximg)
1162 #define Free_Pixmap(display, pixmap) \
1163 ns_release_object (pixmap)
1165 #else
1167 #define Destroy_Image(ximg, dummy) \
1168 XDestroyImage (ximg)
1170 #define Free_Pixmap(display, pixmap) \
1171 XFreePixmap (display, pixmap)
1173 #endif /* !HAVE_NTGUI && !HAVE_NS */
1176 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1177 it is guessed heuristically. If non-zero, XIMG is an existing
1178 XImage object (or device context with the image selected on W32) to
1179 use for the heuristic. */
1181 RGB_PIXEL_COLOR
1182 image_background (struct image *img, struct frame *f, XImagePtr_or_DC ximg)
1184 if (! img->background_valid)
1185 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1187 bool free_ximg = !ximg;
1188 #ifdef HAVE_NTGUI
1189 HGDIOBJ prev;
1190 #endif /* HAVE_NTGUI */
1192 if (free_ximg)
1194 #ifndef HAVE_NTGUI
1195 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
1196 0, 0, img->width, img->height, ~0, ZPixmap);
1197 #else
1198 HDC frame_dc = get_frame_dc (f);
1199 ximg = CreateCompatibleDC (frame_dc);
1200 release_frame_dc (f, frame_dc);
1201 prev = SelectObject (ximg, img->pixmap);
1202 #endif /* !HAVE_NTGUI */
1205 img->background = four_corners_best (ximg, img->corners, img->width, img->height);
1207 if (free_ximg)
1208 Destroy_Image (ximg, prev);
1210 img->background_valid = 1;
1213 return img->background;
1216 /* Return the `background_transparent' field of IMG. If IMG doesn't
1217 have one yet, it is guessed heuristically. If non-zero, MASK is an
1218 existing XImage object to use for the heuristic. */
1221 image_background_transparent (struct image *img, struct frame *f, XImagePtr_or_DC mask)
1223 if (! img->background_transparent_valid)
1224 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1226 if (img->mask)
1228 bool free_mask = !mask;
1229 #ifdef HAVE_NTGUI
1230 HGDIOBJ prev;
1231 #endif /* HAVE_NTGUI */
1233 if (free_mask)
1235 #ifndef HAVE_NTGUI
1236 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
1237 0, 0, img->width, img->height, ~0, ZPixmap);
1238 #else
1239 HDC frame_dc = get_frame_dc (f);
1240 mask = CreateCompatibleDC (frame_dc);
1241 release_frame_dc (f, frame_dc);
1242 prev = SelectObject (mask, img->mask);
1243 #endif /* HAVE_NTGUI */
1246 img->background_transparent
1247 = (four_corners_best (mask, img->corners, img->width, img->height) == PIX_MASK_RETAIN);
1249 if (free_mask)
1250 Destroy_Image (mask, prev);
1252 else
1253 img->background_transparent = 0;
1255 img->background_transparent_valid = 1;
1258 return img->background_transparent;
1262 /***********************************************************************
1263 Helper functions for X image types
1264 ***********************************************************************/
1266 /* Clear X resources of image IMG on frame F. PIXMAP_P means free the
1267 pixmap if any. MASK_P means clear the mask pixmap if any.
1268 COLORS_P means free colors allocated for the image, if any. */
1270 static void
1271 x_clear_image_1 (struct frame *f, struct image *img, bool pixmap_p,
1272 bool mask_p, bool colors_p)
1274 if (pixmap_p && img->pixmap)
1276 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
1277 img->pixmap = NO_PIXMAP;
1278 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1279 img->background_valid = 0;
1282 if (mask_p && img->mask)
1284 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1285 img->mask = NO_PIXMAP;
1286 img->background_transparent_valid = 0;
1289 if (colors_p && img->ncolors)
1291 /* W32_TODO: color table support. */
1292 #ifdef HAVE_X_WINDOWS
1293 x_free_colors (f, img->colors, img->ncolors);
1294 #endif /* HAVE_X_WINDOWS */
1295 xfree (img->colors);
1296 img->colors = NULL;
1297 img->ncolors = 0;
1302 /* Free X resources of image IMG which is used on frame F. */
1304 static void
1305 x_clear_image (struct frame *f, struct image *img)
1307 block_input ();
1308 x_clear_image_1 (f, img, 1, 1, 1);
1309 unblock_input ();
1313 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1314 cannot be allocated, use DFLT. Add a newly allocated color to
1315 IMG->colors, so that it can be freed again. Value is the pixel
1316 color. */
1318 static unsigned long
1319 x_alloc_image_color (struct frame *f, struct image *img, Lisp_Object color_name,
1320 unsigned long dflt)
1322 XColor color;
1323 unsigned long result;
1325 eassert (STRINGP (color_name));
1327 if (x_defined_color (f, SSDATA (color_name), &color, 1)
1328 && img->ncolors < min (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *img->colors,
1329 INT_MAX))
1331 /* This isn't called frequently so we get away with simply
1332 reallocating the color vector to the needed size, here. */
1333 ptrdiff_t ncolors = img->ncolors + 1;
1334 img->colors = xrealloc (img->colors, ncolors * sizeof *img->colors);
1335 img->colors[ncolors - 1] = color.pixel;
1336 img->ncolors = ncolors;
1337 result = color.pixel;
1339 else
1340 result = dflt;
1342 return result;
1347 /***********************************************************************
1348 Image Cache
1349 ***********************************************************************/
1351 static void cache_image (struct frame *f, struct image *img);
1353 /* Return a new, initialized image cache that is allocated from the
1354 heap. Call free_image_cache to free an image cache. */
1356 struct image_cache *
1357 make_image_cache (void)
1359 struct image_cache *c = xzalloc (sizeof *c);
1360 int size;
1362 size = 50;
1363 c->images = xmalloc (size * sizeof *c->images);
1364 c->size = size;
1365 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
1366 c->buckets = xzalloc (size);
1367 return c;
1371 /* Find an image matching SPEC in the cache, and return it. If no
1372 image is found, return NULL. */
1373 static struct image *
1374 search_image_cache (struct frame *f, Lisp_Object spec, EMACS_UINT hash)
1376 struct image *img;
1377 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1378 int i = hash % IMAGE_CACHE_BUCKETS_SIZE;
1380 if (!c) return NULL;
1382 /* If the image spec does not specify a background color, the cached
1383 image must have the same background color as the current frame.
1384 The foreground color must also match, for the sake of monochrome
1385 images.
1387 In fact, we could ignore the foreground color matching condition
1388 for color images, or if the image spec specifies :foreground;
1389 similarly we could ignore the background color matching condition
1390 for formats that don't use transparency (such as jpeg), or if the
1391 image spec specifies :background. However, the extra memory
1392 usage is probably negligible in practice, so we don't bother. */
1394 for (img = c->buckets[i]; img; img = img->next)
1395 if (img->hash == hash
1396 && !NILP (Fequal (img->spec, spec))
1397 && img->frame_foreground == FRAME_FOREGROUND_PIXEL (f)
1398 && img->frame_background == FRAME_BACKGROUND_PIXEL (f))
1399 break;
1400 return img;
1404 /* Search frame F for an image with spec SPEC, and free it. */
1406 static void
1407 uncache_image (struct frame *f, Lisp_Object spec)
1409 struct image *img = search_image_cache (f, spec, sxhash (spec, 0));
1410 if (img)
1412 free_image (f, img);
1413 /* As display glyphs may still be referring to the image ID, we
1414 must garbage the frame (Bug#6426). */
1415 SET_FRAME_GARBAGED (f);
1420 /* Free image cache of frame F. Be aware that X frames share images
1421 caches. */
1423 void
1424 free_image_cache (struct frame *f)
1426 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1427 if (c)
1429 ptrdiff_t i;
1431 /* Cache should not be referenced by any frame when freed. */
1432 eassert (c->refcount == 0);
1434 for (i = 0; i < c->used; ++i)
1435 free_image (f, c->images[i]);
1436 xfree (c->images);
1437 xfree (c->buckets);
1438 xfree (c);
1439 FRAME_IMAGE_CACHE (f) = NULL;
1444 /* Clear image cache of frame F. FILTER=t means free all images.
1445 FILTER=nil means clear only images that haven't been
1446 displayed for some time.
1447 Else, only free the images which have FILTER in their `dependencies'.
1448 Should be called from time to time to reduce the number of loaded images.
1449 If image-cache-eviction-delay is non-nil, this frees images in the cache
1450 which weren't displayed for at least that many seconds. */
1452 static void
1453 clear_image_cache (struct frame *f, Lisp_Object filter)
1455 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1457 if (c)
1459 ptrdiff_t i, nfreed = 0;
1461 /* Block input so that we won't be interrupted by a SIGIO
1462 while being in an inconsistent state. */
1463 block_input ();
1465 if (!NILP (filter))
1467 /* Filter image cache. */
1468 for (i = 0; i < c->used; ++i)
1470 struct image *img = c->images[i];
1471 if (img && (EQ (Qt, filter)
1472 || !NILP (Fmember (filter, img->dependencies))))
1474 free_image (f, img);
1475 ++nfreed;
1479 else if (INTEGERP (Vimage_cache_eviction_delay))
1481 /* Free cache based on timestamp. */
1482 EMACS_TIME old, t;
1483 double delay;
1484 ptrdiff_t nimages = 0;
1486 for (i = 0; i < c->used; ++i)
1487 if (c->images[i])
1488 nimages++;
1490 /* If the number of cached images has grown unusually large,
1491 decrease the cache eviction delay (Bug#6230). */
1492 delay = XINT (Vimage_cache_eviction_delay);
1493 if (nimages > 40)
1494 delay = 1600 * delay / nimages / nimages;
1495 delay = max (delay, 1);
1497 t = current_emacs_time ();
1498 old = sub_emacs_time (t, EMACS_TIME_FROM_DOUBLE (delay));
1500 for (i = 0; i < c->used; ++i)
1502 struct image *img = c->images[i];
1503 if (img && EMACS_TIME_LT (img->timestamp, old))
1505 free_image (f, img);
1506 ++nfreed;
1511 /* We may be clearing the image cache because, for example,
1512 Emacs was iconified for a longer period of time. In that
1513 case, current matrices may still contain references to
1514 images freed above. So, clear these matrices. */
1515 if (nfreed)
1517 Lisp_Object tail, frame;
1519 FOR_EACH_FRAME (tail, frame)
1521 struct frame *fr = XFRAME (frame);
1522 if (FRAME_IMAGE_CACHE (fr) == c)
1523 clear_current_matrices (fr);
1526 ++windows_or_buffers_changed;
1529 unblock_input ();
1533 void
1534 clear_image_caches (Lisp_Object filter)
1536 /* FIXME: We want to do
1537 * struct terminal *t;
1538 * for (t = terminal_list; t; t = t->next_terminal)
1539 * clear_image_cache (t, filter); */
1540 Lisp_Object tail, frame;
1541 FOR_EACH_FRAME (tail, frame)
1542 if (FRAME_WINDOW_P (XFRAME (frame)))
1543 clear_image_cache (XFRAME (frame), filter);
1546 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
1547 0, 1, 0,
1548 doc: /* Clear the image cache.
1549 FILTER nil or a frame means clear all images in the selected frame.
1550 FILTER t means clear the image caches of all frames.
1551 Anything else, means only clear those images which refer to FILTER,
1552 which is then usually a filename. */)
1553 (Lisp_Object filter)
1555 if (!(EQ (filter, Qnil) || FRAMEP (filter)))
1556 clear_image_caches (filter);
1557 else
1558 clear_image_cache (check_x_frame (filter), Qt);
1560 return Qnil;
1564 DEFUN ("image-flush", Fimage_flush, Simage_flush,
1565 1, 2, 0,
1566 doc: /* Fush the image with specification SPEC on frame FRAME.
1567 This removes the image from the Emacs image cache. If SPEC specifies
1568 an image file, the next redisplay of this image will read from the
1569 current contents of that file.
1571 FRAME nil or omitted means use the selected frame.
1572 FRAME t means refresh the image on all frames. */)
1573 (Lisp_Object spec, Lisp_Object frame)
1575 if (!valid_image_p (spec))
1576 error ("Invalid image specification");
1578 if (EQ (frame, Qt))
1580 Lisp_Object tail;
1581 FOR_EACH_FRAME (tail, frame)
1583 struct frame *f = XFRAME (frame);
1584 if (FRAME_WINDOW_P (f))
1585 uncache_image (f, spec);
1588 else
1589 uncache_image (check_x_frame (frame), spec);
1591 return Qnil;
1595 /* Compute masks and transform image IMG on frame F, as specified
1596 by the image's specification, */
1598 static void
1599 postprocess_image (struct frame *f, struct image *img)
1601 /* Manipulation of the image's mask. */
1602 if (img->pixmap)
1604 Lisp_Object conversion, spec;
1605 Lisp_Object mask;
1607 spec = img->spec;
1609 /* `:heuristic-mask t'
1610 `:mask heuristic'
1611 means build a mask heuristically.
1612 `:heuristic-mask (R G B)'
1613 `:mask (heuristic (R G B))'
1614 means build a mask from color (R G B) in the
1615 image.
1616 `:mask nil'
1617 means remove a mask, if any. */
1619 mask = image_spec_value (spec, QCheuristic_mask, NULL);
1620 if (!NILP (mask))
1621 x_build_heuristic_mask (f, img, mask);
1622 else
1624 bool found_p;
1626 mask = image_spec_value (spec, QCmask, &found_p);
1628 if (EQ (mask, Qheuristic))
1629 x_build_heuristic_mask (f, img, Qt);
1630 else if (CONSP (mask)
1631 && EQ (XCAR (mask), Qheuristic))
1633 if (CONSP (XCDR (mask)))
1634 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
1635 else
1636 x_build_heuristic_mask (f, img, XCDR (mask));
1638 else if (NILP (mask) && found_p && img->mask)
1640 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1641 img->mask = NO_PIXMAP;
1646 /* Should we apply an image transformation algorithm? */
1647 conversion = image_spec_value (spec, QCconversion, NULL);
1648 if (EQ (conversion, Qdisabled))
1649 x_disable_image (f, img);
1650 else if (EQ (conversion, Qlaplace))
1651 x_laplace (f, img);
1652 else if (EQ (conversion, Qemboss))
1653 x_emboss (f, img);
1654 else if (CONSP (conversion)
1655 && EQ (XCAR (conversion), Qedge_detection))
1657 Lisp_Object tem;
1658 tem = XCDR (conversion);
1659 if (CONSP (tem))
1660 x_edge_detection (f, img,
1661 Fplist_get (tem, QCmatrix),
1662 Fplist_get (tem, QCcolor_adjustment));
1668 /* Return the id of image with Lisp specification SPEC on frame F.
1669 SPEC must be a valid Lisp image specification (see valid_image_p). */
1671 ptrdiff_t
1672 lookup_image (struct frame *f, Lisp_Object spec)
1674 struct image *img;
1675 EMACS_UINT hash;
1677 /* F must be a window-system frame, and SPEC must be a valid image
1678 specification. */
1679 eassert (FRAME_WINDOW_P (f));
1680 eassert (valid_image_p (spec));
1682 /* Look up SPEC in the hash table of the image cache. */
1683 hash = sxhash (spec, 0);
1684 img = search_image_cache (f, spec, hash);
1685 if (img && img->load_failed_p)
1687 free_image (f, img);
1688 img = NULL;
1691 /* If not found, create a new image and cache it. */
1692 if (img == NULL)
1694 block_input ();
1695 img = make_image (spec, hash);
1696 cache_image (f, img);
1697 img->load_failed_p = ! img->type->load (f, img);
1698 img->frame_foreground = FRAME_FOREGROUND_PIXEL (f);
1699 img->frame_background = FRAME_BACKGROUND_PIXEL (f);
1701 /* If we can't load the image, and we don't have a width and
1702 height, use some arbitrary width and height so that we can
1703 draw a rectangle for it. */
1704 if (img->load_failed_p)
1706 Lisp_Object value;
1708 value = image_spec_value (spec, QCwidth, NULL);
1709 img->width = (INTEGERP (value)
1710 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
1711 value = image_spec_value (spec, QCheight, NULL);
1712 img->height = (INTEGERP (value)
1713 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
1715 else
1717 /* Handle image type independent image attributes
1718 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1719 `:background COLOR'. */
1720 Lisp_Object ascent, margin, relief, bg;
1721 int relief_bound;
1723 ascent = image_spec_value (spec, QCascent, NULL);
1724 if (INTEGERP (ascent))
1725 img->ascent = XFASTINT (ascent);
1726 else if (EQ (ascent, Qcenter))
1727 img->ascent = CENTERED_IMAGE_ASCENT;
1729 margin = image_spec_value (spec, QCmargin, NULL);
1730 if (INTEGERP (margin))
1731 img->vmargin = img->hmargin = XFASTINT (margin);
1732 else if (CONSP (margin))
1734 img->hmargin = XFASTINT (XCAR (margin));
1735 img->vmargin = XFASTINT (XCDR (margin));
1738 relief = image_spec_value (spec, QCrelief, NULL);
1739 relief_bound = INT_MAX - max (img->hmargin, img->vmargin);
1740 if (RANGED_INTEGERP (- relief_bound, relief, relief_bound))
1742 img->relief = XINT (relief);
1743 img->hmargin += eabs (img->relief);
1744 img->vmargin += eabs (img->relief);
1747 if (! img->background_valid)
1749 bg = image_spec_value (img->spec, QCbackground, NULL);
1750 if (!NILP (bg))
1752 img->background
1753 = x_alloc_image_color (f, img, bg,
1754 FRAME_BACKGROUND_PIXEL (f));
1755 img->background_valid = 1;
1759 /* Do image transformations and compute masks, unless we
1760 don't have the image yet. */
1761 if (!EQ (*img->type->type, Qpostscript))
1762 postprocess_image (f, img);
1765 unblock_input ();
1768 /* We're using IMG, so set its timestamp to `now'. */
1769 img->timestamp = current_emacs_time ();
1771 /* Value is the image id. */
1772 return img->id;
1776 /* Cache image IMG in the image cache of frame F. */
1778 static void
1779 cache_image (struct frame *f, struct image *img)
1781 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1782 ptrdiff_t i;
1784 /* Find a free slot in c->images. */
1785 for (i = 0; i < c->used; ++i)
1786 if (c->images[i] == NULL)
1787 break;
1789 /* If no free slot found, maybe enlarge c->images. */
1790 if (i == c->used && c->used == c->size)
1791 c->images = xpalloc (c->images, &c->size, 1, -1, sizeof *c->images);
1793 /* Add IMG to c->images, and assign IMG an id. */
1794 c->images[i] = img;
1795 img->id = i;
1796 if (i == c->used)
1797 ++c->used;
1799 /* Add IMG to the cache's hash table. */
1800 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
1801 img->next = c->buckets[i];
1802 if (img->next)
1803 img->next->prev = img;
1804 img->prev = NULL;
1805 c->buckets[i] = img;
1809 /* Call FN on every image in the image cache of frame F. Used to mark
1810 Lisp Objects in the image cache. */
1812 /* Mark Lisp objects in image IMG. */
1814 static void
1815 mark_image (struct image *img)
1817 mark_object (img->spec);
1818 mark_object (img->dependencies);
1820 if (!NILP (img->lisp_data))
1821 mark_object (img->lisp_data);
1825 void
1826 mark_image_cache (struct image_cache *c)
1828 if (c)
1830 ptrdiff_t i;
1831 for (i = 0; i < c->used; ++i)
1832 if (c->images[i])
1833 mark_image (c->images[i]);
1839 /***********************************************************************
1840 X / NS / W32 support code
1841 ***********************************************************************/
1843 #ifdef WINDOWSNT
1845 /* Macro for defining functions that will be loaded from image DLLs. */
1846 #define DEF_IMGLIB_FN(rettype,func,args) static rettype (FAR CDECL *fn_##func)args
1848 /* Macro for loading those image functions from the library. */
1849 #define LOAD_IMGLIB_FN(lib,func) { \
1850 fn_##func = (void *) GetProcAddress (lib, #func); \
1851 if (!fn_##func) return 0; \
1854 #endif /* WINDOWSNT */
1856 /* Return true if XIMG's size WIDTH x HEIGHT doesn't break the
1857 windowing system.
1858 WIDTH and HEIGHT must both be positive.
1859 If XIMG is null, assume it is a bitmap. */
1860 static bool
1861 x_check_image_size (XImagePtr ximg, int width, int height)
1863 #ifdef HAVE_X_WINDOWS
1864 /* Respect Xlib's limits: it cannot deal with images that have more
1865 than INT_MAX (and/or UINT_MAX) bytes. And respect Emacs's limits
1866 of PTRDIFF_MAX (and/or SIZE_MAX) bytes for any object. */
1867 enum
1869 XLIB_BYTES_MAX = min (INT_MAX, UINT_MAX),
1870 X_IMAGE_BYTES_MAX = min (XLIB_BYTES_MAX, min (PTRDIFF_MAX, SIZE_MAX))
1873 int bitmap_pad, depth, bytes_per_line;
1874 if (ximg)
1876 bitmap_pad = ximg->bitmap_pad;
1877 depth = ximg->depth;
1878 bytes_per_line = ximg->bytes_per_line;
1880 else
1882 bitmap_pad = 8;
1883 depth = 1;
1884 bytes_per_line = (width >> 3) + ((width & 7) != 0);
1886 return (width <= (INT_MAX - (bitmap_pad - 1)) / depth
1887 && height <= X_IMAGE_BYTES_MAX / bytes_per_line);
1888 #else
1889 /* FIXME: Implement this check for the HAVE_NS and HAVE_NTGUI cases.
1890 For now, assume that every image size is allowed on these systems. */
1891 return 1;
1892 #endif
1895 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1896 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1897 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1898 via xmalloc. Print error messages via image_error if an error
1899 occurs. Value is true if successful.
1901 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1902 should indicate the bit depth of the image. */
1904 static bool
1905 x_create_x_image_and_pixmap (struct frame *f, int width, int height, int depth,
1906 XImagePtr *ximg, Pixmap *pixmap)
1908 #ifdef HAVE_X_WINDOWS
1909 Display *display = FRAME_X_DISPLAY (f);
1910 Window window = FRAME_X_WINDOW (f);
1911 Screen *screen = FRAME_X_SCREEN (f);
1913 eassert (input_blocked_p ());
1915 if (depth <= 0)
1916 depth = DefaultDepthOfScreen (screen);
1917 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
1918 depth, ZPixmap, 0, NULL, width, height,
1919 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
1920 if (*ximg == NULL)
1922 image_error ("Unable to allocate X image", Qnil, Qnil);
1923 return 0;
1926 if (! x_check_image_size (*ximg, width, height))
1928 x_destroy_x_image (*ximg);
1929 *ximg = NULL;
1930 image_error ("Image too large (%dx%d)",
1931 make_number (width), make_number (height));
1932 return 0;
1935 /* Allocate image raster. */
1936 (*ximg)->data = xmalloc ((*ximg)->bytes_per_line * height);
1938 /* Allocate a pixmap of the same size. */
1939 *pixmap = XCreatePixmap (display, window, width, height, depth);
1940 if (*pixmap == NO_PIXMAP)
1942 x_destroy_x_image (*ximg);
1943 *ximg = NULL;
1944 image_error ("Unable to create X pixmap", Qnil, Qnil);
1945 return 0;
1948 return 1;
1949 #endif /* HAVE_X_WINDOWS */
1951 #ifdef HAVE_NTGUI
1953 BITMAPINFOHEADER *header;
1954 HDC hdc;
1955 int scanline_width_bits;
1956 int remainder;
1957 int palette_colors = 0;
1959 if (depth == 0)
1960 depth = 24;
1962 if (depth != 1 && depth != 4 && depth != 8
1963 && depth != 16 && depth != 24 && depth != 32)
1965 image_error ("Invalid image bit depth specified", Qnil, Qnil);
1966 return 0;
1969 scanline_width_bits = width * depth;
1970 remainder = scanline_width_bits % 32;
1972 if (remainder)
1973 scanline_width_bits += 32 - remainder;
1975 /* Bitmaps with a depth less than 16 need a palette. */
1976 /* BITMAPINFO structure already contains the first RGBQUAD. */
1977 if (depth < 16)
1978 palette_colors = 1 << (depth - 1);
1980 *ximg = xmalloc (sizeof (XImage) + palette_colors * sizeof (RGBQUAD));
1982 header = &(*ximg)->info.bmiHeader;
1983 memset (&(*ximg)->info, 0, sizeof (BITMAPINFO));
1984 header->biSize = sizeof (*header);
1985 header->biWidth = width;
1986 header->biHeight = -height; /* negative indicates a top-down bitmap. */
1987 header->biPlanes = 1;
1988 header->biBitCount = depth;
1989 header->biCompression = BI_RGB;
1990 header->biClrUsed = palette_colors;
1992 /* TODO: fill in palette. */
1993 if (depth == 1)
1995 (*ximg)->info.bmiColors[0].rgbBlue = 0;
1996 (*ximg)->info.bmiColors[0].rgbGreen = 0;
1997 (*ximg)->info.bmiColors[0].rgbRed = 0;
1998 (*ximg)->info.bmiColors[0].rgbReserved = 0;
1999 (*ximg)->info.bmiColors[1].rgbBlue = 255;
2000 (*ximg)->info.bmiColors[1].rgbGreen = 255;
2001 (*ximg)->info.bmiColors[1].rgbRed = 255;
2002 (*ximg)->info.bmiColors[1].rgbReserved = 0;
2005 hdc = get_frame_dc (f);
2007 /* Create a DIBSection and raster array for the bitmap,
2008 and store its handle in *pixmap. */
2009 *pixmap = CreateDIBSection (hdc, &((*ximg)->info),
2010 (depth < 16) ? DIB_PAL_COLORS : DIB_RGB_COLORS,
2011 /* casting avoids a GCC warning */
2012 (void **)&((*ximg)->data), NULL, 0);
2014 /* Realize display palette and garbage all frames. */
2015 release_frame_dc (f, hdc);
2017 if (*pixmap == NULL)
2019 DWORD err = GetLastError ();
2020 Lisp_Object errcode;
2021 /* All system errors are < 10000, so the following is safe. */
2022 XSETINT (errcode, err);
2023 image_error ("Unable to create bitmap, error code %d", errcode, Qnil);
2024 x_destroy_x_image (*ximg);
2025 return 0;
2028 return 1;
2030 #endif /* HAVE_NTGUI */
2032 #ifdef HAVE_NS
2033 *pixmap = ns_image_for_XPM (width, height, depth);
2034 if (*pixmap == 0)
2036 *ximg = NULL;
2037 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil, Qnil);
2038 return 0;
2040 *ximg = *pixmap;
2041 return 1;
2042 #endif
2046 /* Destroy XImage XIMG. Free XIMG->data. */
2048 static void
2049 x_destroy_x_image (XImagePtr ximg)
2051 eassert (input_blocked_p ());
2052 if (ximg)
2054 #ifdef HAVE_X_WINDOWS
2055 xfree (ximg->data);
2056 ximg->data = NULL;
2057 XDestroyImage (ximg);
2058 #endif /* HAVE_X_WINDOWS */
2059 #ifdef HAVE_NTGUI
2060 /* Data will be freed by DestroyObject. */
2061 ximg->data = NULL;
2062 xfree (ximg);
2063 #endif /* HAVE_NTGUI */
2064 #ifdef HAVE_NS
2065 ns_release_object (ximg);
2066 #endif /* HAVE_NS */
2071 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2072 are width and height of both the image and pixmap. */
2074 static void
2075 x_put_x_image (struct frame *f, XImagePtr ximg, Pixmap pixmap, int width, int height)
2077 #ifdef HAVE_X_WINDOWS
2078 GC gc;
2080 eassert (input_blocked_p ());
2081 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
2082 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
2083 XFreeGC (FRAME_X_DISPLAY (f), gc);
2084 #endif /* HAVE_X_WINDOWS */
2086 #ifdef HAVE_NTGUI
2087 #if 0 /* I don't think this is necessary looking at where it is used. */
2088 HDC hdc = get_frame_dc (f);
2089 SetDIBits (hdc, pixmap, 0, height, ximg->data, &(ximg->info), DIB_RGB_COLORS);
2090 release_frame_dc (f, hdc);
2091 #endif
2092 #endif /* HAVE_NTGUI */
2094 #ifdef HAVE_NS
2095 eassert (ximg == pixmap);
2096 ns_retain_object (ximg);
2097 #endif
2101 /***********************************************************************
2102 File Handling
2103 ***********************************************************************/
2105 /* Find image file FILE. Look in data-directory/images, then
2106 x-bitmap-file-path. Value is the encoded full name of the file
2107 found, or nil if not found. */
2109 Lisp_Object
2110 x_find_image_file (Lisp_Object file)
2112 Lisp_Object file_found, search_path;
2113 int fd;
2115 /* TODO I think this should use something like image-load-path
2116 instead. Unfortunately, that can contain non-string elements. */
2117 search_path = Fcons (Fexpand_file_name (build_string ("images"),
2118 Vdata_directory),
2119 Vx_bitmap_file_path);
2121 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2122 fd = openp (search_path, file, Qnil, &file_found, Qnil);
2124 if (fd == -1)
2125 file_found = Qnil;
2126 else
2128 file_found = ENCODE_FILE (file_found);
2129 close (fd);
2132 return file_found;
2136 /* Read FILE into memory. Value is a pointer to a buffer allocated
2137 with xmalloc holding FILE's contents. Value is null if an error
2138 occurred. *SIZE is set to the size of the file. */
2140 static unsigned char *
2141 slurp_file (char *file, ptrdiff_t *size)
2143 FILE *fp = fopen (file, "rb");
2144 unsigned char *buf = NULL;
2145 struct stat st;
2147 if (fp && fstat (fileno (fp), &st) == 0
2148 && 0 <= st.st_size && st.st_size <= min (PTRDIFF_MAX, SIZE_MAX)
2149 && (buf = xmalloc (st.st_size),
2150 fread (buf, 1, st.st_size, fp) == st.st_size))
2152 *size = st.st_size;
2153 fclose (fp);
2155 else
2157 if (fp)
2158 fclose (fp);
2159 if (buf)
2161 xfree (buf);
2162 buf = NULL;
2166 return buf;
2171 /***********************************************************************
2172 XBM images
2173 ***********************************************************************/
2175 static bool xbm_load (struct frame *f, struct image *img);
2176 static bool xbm_image_p (Lisp_Object object);
2177 static bool xbm_file_p (Lisp_Object);
2180 /* Indices of image specification fields in xbm_format, below. */
2182 enum xbm_keyword_index
2184 XBM_TYPE,
2185 XBM_FILE,
2186 XBM_WIDTH,
2187 XBM_HEIGHT,
2188 XBM_DATA,
2189 XBM_FOREGROUND,
2190 XBM_BACKGROUND,
2191 XBM_ASCENT,
2192 XBM_MARGIN,
2193 XBM_RELIEF,
2194 XBM_ALGORITHM,
2195 XBM_HEURISTIC_MASK,
2196 XBM_MASK,
2197 XBM_LAST
2200 /* Vector of image_keyword structures describing the format
2201 of valid XBM image specifications. */
2203 static const struct image_keyword xbm_format[XBM_LAST] =
2205 {":type", IMAGE_SYMBOL_VALUE, 1},
2206 {":file", IMAGE_STRING_VALUE, 0},
2207 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2208 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2209 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2210 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
2211 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
2212 {":ascent", IMAGE_ASCENT_VALUE, 0},
2213 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
2214 {":relief", IMAGE_INTEGER_VALUE, 0},
2215 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2216 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2217 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
2220 /* Structure describing the image type XBM. */
2222 static struct image_type xbm_type =
2224 &Qxbm,
2225 xbm_image_p,
2226 xbm_load,
2227 x_clear_image,
2228 NULL,
2229 NULL
2232 /* Tokens returned from xbm_scan. */
2234 enum xbm_token
2236 XBM_TK_IDENT = 256,
2237 XBM_TK_NUMBER
2241 /* Return true if OBJECT is a valid XBM-type image specification.
2242 A valid specification is a list starting with the symbol `image'
2243 The rest of the list is a property list which must contain an
2244 entry `:type xbm'.
2246 If the specification specifies a file to load, it must contain
2247 an entry `:file FILENAME' where FILENAME is a string.
2249 If the specification is for a bitmap loaded from memory it must
2250 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2251 WIDTH and HEIGHT are integers > 0. DATA may be:
2253 1. a string large enough to hold the bitmap data, i.e. it must
2254 have a size >= (WIDTH + 7) / 8 * HEIGHT
2256 2. a bool-vector of size >= WIDTH * HEIGHT
2258 3. a vector of strings or bool-vectors, one for each line of the
2259 bitmap.
2261 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2262 may not be specified in this case because they are defined in the
2263 XBM file.
2265 Both the file and data forms may contain the additional entries
2266 `:background COLOR' and `:foreground COLOR'. If not present,
2267 foreground and background of the frame on which the image is
2268 displayed is used. */
2270 static bool
2271 xbm_image_p (Lisp_Object object)
2273 struct image_keyword kw[XBM_LAST];
2275 memcpy (kw, xbm_format, sizeof kw);
2276 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
2277 return 0;
2279 eassert (EQ (kw[XBM_TYPE].value, Qxbm));
2281 if (kw[XBM_FILE].count)
2283 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
2284 return 0;
2286 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
2288 /* In-memory XBM file. */
2289 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
2290 return 0;
2292 else
2294 Lisp_Object data;
2295 int width, height;
2297 /* Entries for `:width', `:height' and `:data' must be present. */
2298 if (!kw[XBM_WIDTH].count
2299 || !kw[XBM_HEIGHT].count
2300 || !kw[XBM_DATA].count)
2301 return 0;
2303 data = kw[XBM_DATA].value;
2304 width = XFASTINT (kw[XBM_WIDTH].value);
2305 height = XFASTINT (kw[XBM_HEIGHT].value);
2307 /* Check type of data, and width and height against contents of
2308 data. */
2309 if (VECTORP (data))
2311 EMACS_INT i;
2313 /* Number of elements of the vector must be >= height. */
2314 if (ASIZE (data) < height)
2315 return 0;
2317 /* Each string or bool-vector in data must be large enough
2318 for one line of the image. */
2319 for (i = 0; i < height; ++i)
2321 Lisp_Object elt = AREF (data, i);
2323 if (STRINGP (elt))
2325 if (SCHARS (elt)
2326 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
2327 return 0;
2329 else if (BOOL_VECTOR_P (elt))
2331 if (XBOOL_VECTOR (elt)->size < width)
2332 return 0;
2334 else
2335 return 0;
2338 else if (STRINGP (data))
2340 if (SCHARS (data)
2341 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
2342 return 0;
2344 else if (BOOL_VECTOR_P (data))
2346 if (XBOOL_VECTOR (data)->size / height < width)
2347 return 0;
2349 else
2350 return 0;
2353 return 1;
2357 /* Scan a bitmap file. FP is the stream to read from. Value is
2358 either an enumerator from enum xbm_token, or a character for a
2359 single-character token, or 0 at end of file. If scanning an
2360 identifier, store the lexeme of the identifier in SVAL. If
2361 scanning a number, store its value in *IVAL. */
2363 static int
2364 xbm_scan (unsigned char **s, unsigned char *end, char *sval, int *ival)
2366 unsigned int c;
2368 loop:
2370 /* Skip white space. */
2371 while (*s < end && (c = *(*s)++, c_isspace (c)))
2374 if (*s >= end)
2375 c = 0;
2376 else if (c_isdigit (c))
2378 int value = 0, digit;
2380 if (c == '0' && *s < end)
2382 c = *(*s)++;
2383 if (c == 'x' || c == 'X')
2385 while (*s < end)
2387 c = *(*s)++;
2388 if (c_isdigit (c))
2389 digit = c - '0';
2390 else if (c >= 'a' && c <= 'f')
2391 digit = c - 'a' + 10;
2392 else if (c >= 'A' && c <= 'F')
2393 digit = c - 'A' + 10;
2394 else
2395 break;
2396 value = 16 * value + digit;
2399 else if (c_isdigit (c))
2401 value = c - '0';
2402 while (*s < end
2403 && (c = *(*s)++, c_isdigit (c)))
2404 value = 8 * value + c - '0';
2407 else
2409 value = c - '0';
2410 while (*s < end
2411 && (c = *(*s)++, c_isdigit (c)))
2412 value = 10 * value + c - '0';
2415 if (*s < end)
2416 *s = *s - 1;
2417 *ival = value;
2418 c = XBM_TK_NUMBER;
2420 else if (c_isalpha (c) || c == '_')
2422 *sval++ = c;
2423 while (*s < end
2424 && (c = *(*s)++, (c_isalnum (c) || c == '_')))
2425 *sval++ = c;
2426 *sval = 0;
2427 if (*s < end)
2428 *s = *s - 1;
2429 c = XBM_TK_IDENT;
2431 else if (c == '/' && **s == '*')
2433 /* C-style comment. */
2434 ++*s;
2435 while (**s && (**s != '*' || *(*s + 1) != '/'))
2436 ++*s;
2437 if (**s)
2439 *s += 2;
2440 goto loop;
2444 return c;
2447 #ifdef HAVE_NTGUI
2449 /* Create a Windows bitmap from X bitmap data. */
2450 static HBITMAP
2451 w32_create_pixmap_from_bitmap_data (int width, int height, char *data)
2453 static unsigned char swap_nibble[16]
2454 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2455 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2456 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2457 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2458 int i, j, w1, w2;
2459 unsigned char *bits, *p;
2460 HBITMAP bmp;
2462 w1 = (width + 7) / 8; /* nb of 8bits elt in X bitmap */
2463 w2 = ((width + 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2464 bits = alloca (height * w2);
2465 memset (bits, 0, height * w2);
2466 for (i = 0; i < height; i++)
2468 p = bits + i*w2;
2469 for (j = 0; j < w1; j++)
2471 /* Bitswap XBM bytes to match how Windows does things. */
2472 unsigned char c = *data++;
2473 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
2474 | (swap_nibble[(c>>4) & 0xf]));
2477 bmp = CreateBitmap (width, height, 1, 1, (char *) bits);
2479 return bmp;
2482 static void
2483 convert_mono_to_color_image (struct frame *f, struct image *img,
2484 COLORREF foreground, COLORREF background)
2486 HDC hdc, old_img_dc, new_img_dc;
2487 HGDIOBJ old_prev, new_prev;
2488 HBITMAP new_pixmap;
2490 hdc = get_frame_dc (f);
2491 old_img_dc = CreateCompatibleDC (hdc);
2492 new_img_dc = CreateCompatibleDC (hdc);
2493 new_pixmap = CreateCompatibleBitmap (hdc, img->width, img->height);
2494 release_frame_dc (f, hdc);
2495 old_prev = SelectObject (old_img_dc, img->pixmap);
2496 new_prev = SelectObject (new_img_dc, new_pixmap);
2497 /* Windows convention for mono bitmaps is black = background,
2498 white = foreground. */
2499 SetTextColor (new_img_dc, background);
2500 SetBkColor (new_img_dc, foreground);
2502 BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc,
2503 0, 0, SRCCOPY);
2505 SelectObject (old_img_dc, old_prev);
2506 SelectObject (new_img_dc, new_prev);
2507 DeleteDC (old_img_dc);
2508 DeleteDC (new_img_dc);
2509 DeleteObject (img->pixmap);
2510 if (new_pixmap == 0)
2511 fprintf (stderr, "Failed to convert image to color.\n");
2512 else
2513 img->pixmap = new_pixmap;
2516 #define XBM_BIT_SHUFFLE(b) (~(b))
2518 #else
2520 #define XBM_BIT_SHUFFLE(b) (b)
2522 #endif /* HAVE_NTGUI */
2525 static void
2526 Create_Pixmap_From_Bitmap_Data (struct frame *f, struct image *img, char *data,
2527 RGB_PIXEL_COLOR fg, RGB_PIXEL_COLOR bg,
2528 bool non_default_colors)
2530 #ifdef HAVE_NTGUI
2531 img->pixmap
2532 = w32_create_pixmap_from_bitmap_data (img->width, img->height, data);
2534 /* If colors were specified, transfer the bitmap to a color one. */
2535 if (non_default_colors)
2536 convert_mono_to_color_image (f, img, fg, bg);
2538 #elif defined (HAVE_NS)
2539 img->pixmap = ns_image_from_XBM (data, img->width, img->height);
2541 #else
2542 img->pixmap =
2543 (x_check_image_size (0, img->width, img->height)
2544 ? XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
2545 FRAME_X_WINDOW (f),
2546 data,
2547 img->width, img->height,
2548 fg, bg,
2549 DefaultDepthOfScreen (FRAME_X_SCREEN (f)))
2550 : NO_PIXMAP);
2551 #endif /* !HAVE_NTGUI && !HAVE_NS */
2556 /* Replacement for XReadBitmapFileData which isn't available under old
2557 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2558 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2559 the image. Return in *DATA the bitmap data allocated with xmalloc.
2560 Value is true if successful. DATA null means just test if
2561 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR,
2562 inhibit the call to image_error when the image size is invalid (the
2563 bitmap remains unread). */
2565 static bool
2566 xbm_read_bitmap_data (struct frame *f, unsigned char *contents, unsigned char *end,
2567 int *width, int *height, char **data,
2568 bool inhibit_image_error)
2570 unsigned char *s = contents;
2571 char buffer[BUFSIZ];
2572 bool padding_p = 0;
2573 bool v10 = 0;
2574 int bytes_per_line, i, nbytes;
2575 char *p;
2576 int value;
2577 int LA1;
2579 #define match() \
2580 LA1 = xbm_scan (&s, end, buffer, &value)
2582 #define expect(TOKEN) \
2583 if (LA1 != (TOKEN)) \
2584 goto failure; \
2585 else \
2586 match ()
2588 #define expect_ident(IDENT) \
2589 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2590 match (); \
2591 else \
2592 goto failure
2594 *width = *height = -1;
2595 if (data)
2596 *data = NULL;
2597 LA1 = xbm_scan (&s, end, buffer, &value);
2599 /* Parse defines for width, height and hot-spots. */
2600 while (LA1 == '#')
2602 match ();
2603 expect_ident ("define");
2604 expect (XBM_TK_IDENT);
2606 if (LA1 == XBM_TK_NUMBER)
2608 char *q = strrchr (buffer, '_');
2609 q = q ? q + 1 : buffer;
2610 if (strcmp (q, "width") == 0)
2611 *width = value;
2612 else if (strcmp (q, "height") == 0)
2613 *height = value;
2615 expect (XBM_TK_NUMBER);
2618 if (!check_image_size (f, *width, *height))
2620 if (!inhibit_image_error)
2621 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
2622 goto failure;
2624 else if (data == NULL)
2625 goto success;
2627 /* Parse bits. Must start with `static'. */
2628 expect_ident ("static");
2629 if (LA1 == XBM_TK_IDENT)
2631 if (strcmp (buffer, "unsigned") == 0)
2633 match ();
2634 expect_ident ("char");
2636 else if (strcmp (buffer, "short") == 0)
2638 match ();
2639 v10 = 1;
2640 if (*width % 16 && *width % 16 < 9)
2641 padding_p = 1;
2643 else if (strcmp (buffer, "char") == 0)
2644 match ();
2645 else
2646 goto failure;
2648 else
2649 goto failure;
2651 expect (XBM_TK_IDENT);
2652 expect ('[');
2653 expect (']');
2654 expect ('=');
2655 expect ('{');
2657 if (! x_check_image_size (0, *width, *height))
2659 if (!inhibit_image_error)
2660 image_error ("Image too large (%dx%d)",
2661 make_number (*width), make_number (*height));
2662 goto failure;
2664 bytes_per_line = (*width + 7) / 8 + padding_p;
2665 nbytes = bytes_per_line * *height;
2666 p = *data = xmalloc (nbytes);
2668 if (v10)
2670 for (i = 0; i < nbytes; i += 2)
2672 int val = value;
2673 expect (XBM_TK_NUMBER);
2675 *p++ = XBM_BIT_SHUFFLE (val);
2676 if (!padding_p || ((i + 2) % bytes_per_line))
2677 *p++ = XBM_BIT_SHUFFLE (value >> 8);
2679 if (LA1 == ',' || LA1 == '}')
2680 match ();
2681 else
2682 goto failure;
2685 else
2687 for (i = 0; i < nbytes; ++i)
2689 int val = value;
2690 expect (XBM_TK_NUMBER);
2692 *p++ = XBM_BIT_SHUFFLE (val);
2694 if (LA1 == ',' || LA1 == '}')
2695 match ();
2696 else
2697 goto failure;
2701 success:
2702 return 1;
2704 failure:
2706 if (data && *data)
2708 xfree (*data);
2709 *data = NULL;
2711 return 0;
2713 #undef match
2714 #undef expect
2715 #undef expect_ident
2719 /* Load XBM image IMG which will be displayed on frame F from buffer
2720 CONTENTS. END is the end of the buffer. Value is true if
2721 successful. */
2723 static bool
2724 xbm_load_image (struct frame *f, struct image *img, unsigned char *contents,
2725 unsigned char *end)
2727 bool rc;
2728 char *data;
2729 bool success_p = 0;
2731 rc = xbm_read_bitmap_data (f, contents, end, &img->width, &img->height,
2732 &data, 0);
2733 if (rc)
2735 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2736 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2737 bool non_default_colors = 0;
2738 Lisp_Object value;
2740 eassert (img->width > 0 && img->height > 0);
2742 /* Get foreground and background colors, maybe allocate colors. */
2743 value = image_spec_value (img->spec, QCforeground, NULL);
2744 if (!NILP (value))
2746 foreground = x_alloc_image_color (f, img, value, foreground);
2747 non_default_colors = 1;
2749 value = image_spec_value (img->spec, QCbackground, NULL);
2750 if (!NILP (value))
2752 background = x_alloc_image_color (f, img, value, background);
2753 img->background = background;
2754 img->background_valid = 1;
2755 non_default_colors = 1;
2758 Create_Pixmap_From_Bitmap_Data (f, img, data,
2759 foreground, background,
2760 non_default_colors);
2761 xfree (data);
2763 if (img->pixmap == NO_PIXMAP)
2765 x_clear_image (f, img);
2766 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
2768 else
2769 success_p = 1;
2771 else
2772 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2774 return success_p;
2778 /* Value is true if DATA looks like an in-memory XBM file. */
2780 static bool
2781 xbm_file_p (Lisp_Object data)
2783 int w, h;
2784 return (STRINGP (data)
2785 && xbm_read_bitmap_data (NULL, SDATA (data),
2786 (SDATA (data) + SBYTES (data)),
2787 &w, &h, NULL, 1));
2791 /* Fill image IMG which is used on frame F with pixmap data. Value is
2792 true if successful. */
2794 static bool
2795 xbm_load (struct frame *f, struct image *img)
2797 bool success_p = 0;
2798 Lisp_Object file_name;
2800 eassert (xbm_image_p (img->spec));
2802 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2803 file_name = image_spec_value (img->spec, QCfile, NULL);
2804 if (STRINGP (file_name))
2806 Lisp_Object file;
2807 unsigned char *contents;
2808 ptrdiff_t size;
2810 file = x_find_image_file (file_name);
2811 if (!STRINGP (file))
2813 image_error ("Cannot find image file `%s'", file_name, Qnil);
2814 return 0;
2817 contents = slurp_file (SSDATA (file), &size);
2818 if (contents == NULL)
2820 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2821 return 0;
2824 success_p = xbm_load_image (f, img, contents, contents + size);
2825 xfree (contents);
2827 else
2829 struct image_keyword fmt[XBM_LAST];
2830 Lisp_Object data;
2831 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2832 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2833 bool non_default_colors = 0;
2834 char *bits;
2835 bool parsed_p;
2836 bool in_memory_file_p = 0;
2838 /* See if data looks like an in-memory XBM file. */
2839 data = image_spec_value (img->spec, QCdata, NULL);
2840 in_memory_file_p = xbm_file_p (data);
2842 /* Parse the image specification. */
2843 memcpy (fmt, xbm_format, sizeof fmt);
2844 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
2845 eassert (parsed_p);
2847 /* Get specified width, and height. */
2848 if (!in_memory_file_p)
2850 img->width = XFASTINT (fmt[XBM_WIDTH].value);
2851 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
2852 eassert (img->width > 0 && img->height > 0);
2853 if (!check_image_size (f, img->width, img->height))
2855 image_error ("Invalid image size (see `max-image-size')",
2856 Qnil, Qnil);
2857 return 0;
2861 /* Get foreground and background colors, maybe allocate colors. */
2862 if (fmt[XBM_FOREGROUND].count
2863 && STRINGP (fmt[XBM_FOREGROUND].value))
2865 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
2866 foreground);
2867 non_default_colors = 1;
2870 if (fmt[XBM_BACKGROUND].count
2871 && STRINGP (fmt[XBM_BACKGROUND].value))
2873 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
2874 background);
2875 non_default_colors = 1;
2878 if (in_memory_file_p)
2879 success_p = xbm_load_image (f, img, SDATA (data),
2880 (SDATA (data)
2881 + SBYTES (data)));
2882 else
2884 if (VECTORP (data))
2886 int i;
2887 char *p;
2888 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
2890 p = bits = alloca (nbytes * img->height);
2891 for (i = 0; i < img->height; ++i, p += nbytes)
2893 Lisp_Object line = AREF (data, i);
2894 if (STRINGP (line))
2895 memcpy (p, SDATA (line), nbytes);
2896 else
2897 memcpy (p, XBOOL_VECTOR (line)->data, nbytes);
2900 else if (STRINGP (data))
2901 bits = SSDATA (data);
2902 else
2903 bits = (char *) XBOOL_VECTOR (data)->data;
2905 #ifdef HAVE_NTGUI
2907 char *invertedBits;
2908 int nbytes, i;
2909 /* Windows mono bitmaps are reversed compared with X. */
2910 invertedBits = bits;
2911 nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR
2912 * img->height;
2913 bits = alloca (nbytes);
2914 for (i = 0; i < nbytes; i++)
2915 bits[i] = XBM_BIT_SHUFFLE (invertedBits[i]);
2917 #endif
2918 /* Create the pixmap. */
2920 if (x_check_image_size (0, img->width, img->height))
2921 Create_Pixmap_From_Bitmap_Data (f, img, bits,
2922 foreground, background,
2923 non_default_colors);
2924 else
2925 img->pixmap = NO_PIXMAP;
2927 if (img->pixmap)
2928 success_p = 1;
2929 else
2931 image_error ("Unable to create pixmap for XBM image `%s'",
2932 img->spec, Qnil);
2933 x_clear_image (f, img);
2938 return success_p;
2943 /***********************************************************************
2944 XPM images
2945 ***********************************************************************/
2947 #if defined (HAVE_XPM) || defined (HAVE_NS)
2949 static bool xpm_image_p (Lisp_Object object);
2950 static bool xpm_load (struct frame *f, struct image *img);
2952 #endif /* HAVE_XPM || HAVE_NS */
2954 #ifdef HAVE_XPM
2955 #ifdef HAVE_NTGUI
2956 /* Indicate to xpm.h that we don't have Xlib. */
2957 #define FOR_MSW
2958 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
2959 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
2960 #define XColor xpm_XColor
2961 #define XImage xpm_XImage
2962 #define Display xpm_Display
2963 #define PIXEL_ALREADY_TYPEDEFED
2964 #include "X11/xpm.h"
2965 #undef FOR_MSW
2966 #undef XColor
2967 #undef XImage
2968 #undef Display
2969 #undef PIXEL_ALREADY_TYPEDEFED
2970 #else
2971 #include "X11/xpm.h"
2972 #endif /* HAVE_NTGUI */
2973 #endif /* HAVE_XPM */
2975 #if defined (HAVE_XPM) || defined (HAVE_NS)
2976 /* The symbol `xpm' identifying XPM-format images. */
2978 static Lisp_Object Qxpm;
2980 /* Indices of image specification fields in xpm_format, below. */
2982 enum xpm_keyword_index
2984 XPM_TYPE,
2985 XPM_FILE,
2986 XPM_DATA,
2987 XPM_ASCENT,
2988 XPM_MARGIN,
2989 XPM_RELIEF,
2990 XPM_ALGORITHM,
2991 XPM_HEURISTIC_MASK,
2992 XPM_MASK,
2993 XPM_COLOR_SYMBOLS,
2994 XPM_BACKGROUND,
2995 XPM_LAST
2998 /* Vector of image_keyword structures describing the format
2999 of valid XPM image specifications. */
3001 static const struct image_keyword xpm_format[XPM_LAST] =
3003 {":type", IMAGE_SYMBOL_VALUE, 1},
3004 {":file", IMAGE_STRING_VALUE, 0},
3005 {":data", IMAGE_STRING_VALUE, 0},
3006 {":ascent", IMAGE_ASCENT_VALUE, 0},
3007 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
3008 {":relief", IMAGE_INTEGER_VALUE, 0},
3009 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3010 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3011 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3012 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3013 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
3016 #if defined HAVE_NTGUI && defined WINDOWSNT
3017 static bool init_xpm_functions (void);
3018 #else
3019 #define init_xpm_functions NULL
3020 #endif
3022 /* Structure describing the image type XPM. */
3024 static struct image_type xpm_type =
3026 &Qxpm,
3027 xpm_image_p,
3028 xpm_load,
3029 x_clear_image,
3030 init_xpm_functions,
3031 NULL
3034 #ifdef HAVE_X_WINDOWS
3036 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3037 functions for allocating image colors. Our own functions handle
3038 color allocation failures more gracefully than the ones on the XPM
3039 lib. */
3041 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3042 #define ALLOC_XPM_COLORS
3043 #endif
3044 #endif /* HAVE_X_WINDOWS */
3046 #ifdef ALLOC_XPM_COLORS
3048 static struct xpm_cached_color *xpm_cache_color (struct frame *, char *,
3049 XColor *, int);
3051 /* An entry in a hash table used to cache color definitions of named
3052 colors. This cache is necessary to speed up XPM image loading in
3053 case we do color allocations ourselves. Without it, we would need
3054 a call to XParseColor per pixel in the image. */
3056 struct xpm_cached_color
3058 /* Next in collision chain. */
3059 struct xpm_cached_color *next;
3061 /* Color definition (RGB and pixel color). */
3062 XColor color;
3064 /* Color name. */
3065 char name[1];
3068 /* The hash table used for the color cache, and its bucket vector
3069 size. */
3071 #define XPM_COLOR_CACHE_BUCKETS 1001
3072 static struct xpm_cached_color **xpm_color_cache;
3074 /* Initialize the color cache. */
3076 static void
3077 xpm_init_color_cache (struct frame *f, XpmAttributes *attrs)
3079 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
3080 xpm_color_cache = xzalloc (nbytes);
3081 init_color_table ();
3083 if (attrs->valuemask & XpmColorSymbols)
3085 int i;
3086 XColor color;
3088 for (i = 0; i < attrs->numsymbols; ++i)
3089 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3090 attrs->colorsymbols[i].value, &color))
3092 color.pixel = lookup_rgb_color (f, color.red, color.green,
3093 color.blue);
3094 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
3099 /* Free the color cache. */
3101 static void
3102 xpm_free_color_cache (void)
3104 struct xpm_cached_color *p, *next;
3105 int i;
3107 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
3108 for (p = xpm_color_cache[i]; p; p = next)
3110 next = p->next;
3111 xfree (p);
3114 xfree (xpm_color_cache);
3115 xpm_color_cache = NULL;
3116 free_color_table ();
3119 /* Return the bucket index for color named COLOR_NAME in the color
3120 cache. */
3122 static int
3123 xpm_color_bucket (char *color_name)
3125 EMACS_UINT hash = hash_string (color_name, strlen (color_name));
3126 return hash % XPM_COLOR_CACHE_BUCKETS;
3130 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3131 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3132 entry added. */
3134 static struct xpm_cached_color *
3135 xpm_cache_color (struct frame *f, char *color_name, XColor *color, int bucket)
3137 size_t nbytes;
3138 struct xpm_cached_color *p;
3140 if (bucket < 0)
3141 bucket = xpm_color_bucket (color_name);
3143 nbytes = offsetof (struct xpm_cached_color, name) + strlen (color_name) + 1;
3144 p = xmalloc (nbytes);
3145 strcpy (p->name, color_name);
3146 p->color = *color;
3147 p->next = xpm_color_cache[bucket];
3148 xpm_color_cache[bucket] = p;
3149 return p;
3152 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3153 return the cached definition in *COLOR. Otherwise, make a new
3154 entry in the cache and allocate the color. Value is false if color
3155 allocation failed. */
3157 static bool
3158 xpm_lookup_color (struct frame *f, char *color_name, XColor *color)
3160 struct xpm_cached_color *p;
3161 int h = xpm_color_bucket (color_name);
3163 for (p = xpm_color_cache[h]; p; p = p->next)
3164 if (strcmp (p->name, color_name) == 0)
3165 break;
3167 if (p != NULL)
3168 *color = p->color;
3169 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3170 color_name, color))
3172 color->pixel = lookup_rgb_color (f, color->red, color->green,
3173 color->blue);
3174 p = xpm_cache_color (f, color_name, color, h);
3176 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3177 with transparency, and it's useful. */
3178 else if (strcmp ("opaque", color_name) == 0)
3180 memset (color, 0, sizeof (XColor)); /* Is this necessary/correct? */
3181 color->pixel = FRAME_FOREGROUND_PIXEL (f);
3182 p = xpm_cache_color (f, color_name, color, h);
3185 return p != NULL;
3189 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3190 CLOSURE is a pointer to the frame on which we allocate the
3191 color. Return in *COLOR the allocated color. Value is non-zero
3192 if successful. */
3194 static int
3195 xpm_alloc_color (Display *dpy, Colormap cmap, char *color_name, XColor *color,
3196 void *closure)
3198 return xpm_lookup_color ((struct frame *) closure, color_name, color);
3202 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3203 is a pointer to the frame on which we allocate the color. Value is
3204 non-zero if successful. */
3206 static int
3207 xpm_free_colors (Display *dpy, Colormap cmap, Pixel *pixels, int npixels, void *closure)
3209 return 1;
3212 #endif /* ALLOC_XPM_COLORS */
3215 #ifdef WINDOWSNT
3217 /* XPM library details. */
3219 DEF_IMGLIB_FN (void, XpmFreeAttributes, (XpmAttributes *));
3220 DEF_IMGLIB_FN (int, XpmCreateImageFromBuffer, (Display *, char *, xpm_XImage **,
3221 xpm_XImage **, XpmAttributes *));
3222 DEF_IMGLIB_FN (int, XpmReadFileToImage, (Display *, char *, xpm_XImage **,
3223 xpm_XImage **, XpmAttributes *));
3224 DEF_IMGLIB_FN (void, XImageFree, (xpm_XImage *));
3226 static bool
3227 init_xpm_functions (void)
3229 HMODULE library;
3231 if (!(library = w32_delayed_load (Qxpm)))
3232 return 0;
3234 LOAD_IMGLIB_FN (library, XpmFreeAttributes);
3235 LOAD_IMGLIB_FN (library, XpmCreateImageFromBuffer);
3236 LOAD_IMGLIB_FN (library, XpmReadFileToImage);
3237 LOAD_IMGLIB_FN (library, XImageFree);
3238 return 1;
3241 #endif /* WINDOWSNT */
3243 #if defined HAVE_NTGUI && !defined WINDOWSNT
3244 /* Glue for code below */
3245 #define fn_XpmReadFileToImage XpmReadFileToImage
3246 #define fn_XpmCreateImageFromBuffer XpmCreateImageFromBuffer
3247 #define fn_XImageFree XImageFree
3248 #define fn_XpmFreeAttributes XpmFreeAttributes
3249 #endif /* HAVE_NTGUI && !WINDOWSNT */
3251 /* Value is true if COLOR_SYMBOLS is a valid color symbols list
3252 for XPM images. Such a list must consist of conses whose car and
3253 cdr are strings. */
3255 static bool
3256 xpm_valid_color_symbols_p (Lisp_Object color_symbols)
3258 while (CONSP (color_symbols))
3260 Lisp_Object sym = XCAR (color_symbols);
3261 if (!CONSP (sym)
3262 || !STRINGP (XCAR (sym))
3263 || !STRINGP (XCDR (sym)))
3264 break;
3265 color_symbols = XCDR (color_symbols);
3268 return NILP (color_symbols);
3272 /* Value is true if OBJECT is a valid XPM image specification. */
3274 static bool
3275 xpm_image_p (Lisp_Object object)
3277 struct image_keyword fmt[XPM_LAST];
3278 memcpy (fmt, xpm_format, sizeof fmt);
3279 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
3280 /* Either `:file' or `:data' must be present. */
3281 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
3282 /* Either no `:color-symbols' or it's a list of conses
3283 whose car and cdr are strings. */
3284 && (fmt[XPM_COLOR_SYMBOLS].count == 0
3285 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
3288 #endif /* HAVE_XPM || HAVE_NS */
3290 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3291 ptrdiff_t
3292 x_create_bitmap_from_xpm_data (struct frame *f, const char **bits)
3294 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3295 ptrdiff_t id;
3296 int rc;
3297 XpmAttributes attrs;
3298 Pixmap bitmap, mask;
3300 memset (&attrs, 0, sizeof attrs);
3302 attrs.visual = FRAME_X_VISUAL (f);
3303 attrs.colormap = FRAME_X_COLORMAP (f);
3304 attrs.valuemask |= XpmVisual;
3305 attrs.valuemask |= XpmColormap;
3307 rc = XpmCreatePixmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3308 (char **) bits, &bitmap, &mask, &attrs);
3309 if (rc != XpmSuccess)
3311 XpmFreeAttributes (&attrs);
3312 return -1;
3315 id = x_allocate_bitmap_record (f);
3316 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
3317 dpyinfo->bitmaps[id - 1].have_mask = 1;
3318 dpyinfo->bitmaps[id - 1].mask = mask;
3319 dpyinfo->bitmaps[id - 1].file = NULL;
3320 dpyinfo->bitmaps[id - 1].height = attrs.height;
3321 dpyinfo->bitmaps[id - 1].width = attrs.width;
3322 dpyinfo->bitmaps[id - 1].depth = attrs.depth;
3323 dpyinfo->bitmaps[id - 1].refcount = 1;
3325 XpmFreeAttributes (&attrs);
3326 return id;
3328 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3330 /* Load image IMG which will be displayed on frame F. Value is
3331 true if successful. */
3333 #ifdef HAVE_XPM
3335 static bool
3336 xpm_load (struct frame *f, struct image *img)
3338 int rc;
3339 XpmAttributes attrs;
3340 Lisp_Object specified_file, color_symbols;
3341 #ifdef HAVE_NTGUI
3342 HDC hdc;
3343 xpm_XImage * xpm_image = NULL, * xpm_mask = NULL;
3344 #endif /* HAVE_NTGUI */
3346 /* Configure the XPM lib. Use the visual of frame F. Allocate
3347 close colors. Return colors allocated. */
3348 memset (&attrs, 0, sizeof attrs);
3350 #ifndef HAVE_NTGUI
3351 attrs.visual = FRAME_X_VISUAL (f);
3352 attrs.colormap = FRAME_X_COLORMAP (f);
3353 attrs.valuemask |= XpmVisual;
3354 attrs.valuemask |= XpmColormap;
3355 #endif /* HAVE_NTGUI */
3357 #ifdef ALLOC_XPM_COLORS
3358 /* Allocate colors with our own functions which handle
3359 failing color allocation more gracefully. */
3360 attrs.color_closure = f;
3361 attrs.alloc_color = xpm_alloc_color;
3362 attrs.free_colors = xpm_free_colors;
3363 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
3364 #else /* not ALLOC_XPM_COLORS */
3365 /* Let the XPM lib allocate colors. */
3366 attrs.valuemask |= XpmReturnAllocPixels;
3367 #ifdef XpmAllocCloseColors
3368 attrs.alloc_close_colors = 1;
3369 attrs.valuemask |= XpmAllocCloseColors;
3370 #else /* not XpmAllocCloseColors */
3371 attrs.closeness = 600;
3372 attrs.valuemask |= XpmCloseness;
3373 #endif /* not XpmAllocCloseColors */
3374 #endif /* ALLOC_XPM_COLORS */
3376 /* If image specification contains symbolic color definitions, add
3377 these to `attrs'. */
3378 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3379 if (CONSP (color_symbols))
3381 Lisp_Object tail;
3382 XpmColorSymbol *xpm_syms;
3383 int i, size;
3385 attrs.valuemask |= XpmColorSymbols;
3387 /* Count number of symbols. */
3388 attrs.numsymbols = 0;
3389 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
3390 ++attrs.numsymbols;
3392 /* Allocate an XpmColorSymbol array. */
3393 size = attrs.numsymbols * sizeof *xpm_syms;
3394 xpm_syms = alloca (size);
3395 memset (xpm_syms, 0, size);
3396 attrs.colorsymbols = xpm_syms;
3398 /* Fill the color symbol array. */
3399 for (tail = color_symbols, i = 0;
3400 CONSP (tail);
3401 ++i, tail = XCDR (tail))
3403 Lisp_Object name;
3404 Lisp_Object color;
3405 char *empty_string = (char *) "";
3407 if (!CONSP (XCAR (tail)))
3409 xpm_syms[i].name = empty_string;
3410 xpm_syms[i].value = empty_string;
3411 continue;
3413 name = XCAR (XCAR (tail));
3414 color = XCDR (XCAR (tail));
3415 if (STRINGP (name))
3417 xpm_syms[i].name = alloca (SCHARS (name) + 1);
3418 strcpy (xpm_syms[i].name, SSDATA (name));
3420 else
3421 xpm_syms[i].name = empty_string;
3422 if (STRINGP (color))
3424 xpm_syms[i].value = alloca (SCHARS (color) + 1);
3425 strcpy (xpm_syms[i].value, SSDATA (color));
3427 else
3428 xpm_syms[i].value = empty_string;
3432 /* Create a pixmap for the image, either from a file, or from a
3433 string buffer containing data in the same format as an XPM file. */
3434 #ifdef ALLOC_XPM_COLORS
3435 xpm_init_color_cache (f, &attrs);
3436 #endif
3438 specified_file = image_spec_value (img->spec, QCfile, NULL);
3440 #ifdef HAVE_NTGUI
3442 HDC frame_dc = get_frame_dc (f);
3443 hdc = CreateCompatibleDC (frame_dc);
3444 release_frame_dc (f, frame_dc);
3446 #endif /* HAVE_NTGUI */
3448 if (STRINGP (specified_file))
3450 Lisp_Object file = x_find_image_file (specified_file);
3451 if (!STRINGP (file))
3453 image_error ("Cannot find image file `%s'", specified_file, Qnil);
3454 #ifdef ALLOC_XPM_COLORS
3455 xpm_free_color_cache ();
3456 #endif
3457 return 0;
3460 #ifdef HAVE_NTGUI
3461 /* XpmReadFileToPixmap is not available in the Windows port of
3462 libxpm. But XpmReadFileToImage almost does what we want. */
3463 rc = fn_XpmReadFileToImage (&hdc, SDATA (file),
3464 &xpm_image, &xpm_mask,
3465 &attrs);
3466 #else
3467 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3468 SSDATA (file), &img->pixmap, &img->mask,
3469 &attrs);
3470 #endif /* HAVE_NTGUI */
3472 else
3474 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
3475 if (!STRINGP (buffer))
3477 image_error ("Invalid image data `%s'", buffer, Qnil);
3478 #ifdef ALLOC_XPM_COLORS
3479 xpm_free_color_cache ();
3480 #endif
3481 return 0;
3483 #ifdef HAVE_NTGUI
3484 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3485 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3486 rc = fn_XpmCreateImageFromBuffer (&hdc, SDATA (buffer),
3487 &xpm_image, &xpm_mask,
3488 &attrs);
3489 #else
3490 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3491 SSDATA (buffer),
3492 &img->pixmap, &img->mask,
3493 &attrs);
3494 #endif /* HAVE_NTGUI */
3497 if (rc == XpmSuccess)
3499 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3500 img->colors = colors_in_color_table (&img->ncolors);
3501 #else /* not ALLOC_XPM_COLORS */
3502 int i;
3504 #ifdef HAVE_NTGUI
3505 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3506 plus some duplicate attributes. */
3507 if (xpm_image && xpm_image->bitmap)
3509 img->pixmap = xpm_image->bitmap;
3510 /* XImageFree in libXpm frees XImage struct without destroying
3511 the bitmap, which is what we want. */
3512 fn_XImageFree (xpm_image);
3514 if (xpm_mask && xpm_mask->bitmap)
3516 /* The mask appears to be inverted compared with what we expect.
3517 TODO: invert our expectations. See other places where we
3518 have to invert bits because our idea of masks is backwards. */
3519 HGDIOBJ old_obj;
3520 old_obj = SelectObject (hdc, xpm_mask->bitmap);
3522 PatBlt (hdc, 0, 0, xpm_mask->width, xpm_mask->height, DSTINVERT);
3523 SelectObject (hdc, old_obj);
3525 img->mask = xpm_mask->bitmap;
3526 fn_XImageFree (xpm_mask);
3527 DeleteDC (hdc);
3530 DeleteDC (hdc);
3531 #endif /* HAVE_NTGUI */
3533 /* Remember allocated colors. */
3534 img->colors = xnmalloc (attrs.nalloc_pixels, sizeof *img->colors);
3535 img->ncolors = attrs.nalloc_pixels;
3536 for (i = 0; i < attrs.nalloc_pixels; ++i)
3538 img->colors[i] = attrs.alloc_pixels[i];
3539 #ifdef DEBUG_X_COLORS
3540 register_color (img->colors[i]);
3541 #endif
3543 #endif /* not ALLOC_XPM_COLORS */
3545 img->width = attrs.width;
3546 img->height = attrs.height;
3547 eassert (img->width > 0 && img->height > 0);
3549 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3550 #ifdef HAVE_NTGUI
3551 fn_XpmFreeAttributes (&attrs);
3552 #else
3553 XpmFreeAttributes (&attrs);
3554 #endif /* HAVE_NTGUI */
3556 else
3558 #ifdef HAVE_NTGUI
3559 DeleteDC (hdc);
3560 #endif /* HAVE_NTGUI */
3562 switch (rc)
3564 case XpmOpenFailed:
3565 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
3566 break;
3568 case XpmFileInvalid:
3569 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
3570 break;
3572 case XpmNoMemory:
3573 image_error ("Out of memory (%s)", img->spec, Qnil);
3574 break;
3576 case XpmColorFailed:
3577 image_error ("Color allocation error (%s)", img->spec, Qnil);
3578 break;
3580 default:
3581 image_error ("Unknown error (%s)", img->spec, Qnil);
3582 break;
3586 #ifdef ALLOC_XPM_COLORS
3587 xpm_free_color_cache ();
3588 #endif
3589 return rc == XpmSuccess;
3592 #endif /* HAVE_XPM */
3594 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3596 /* XPM support functions for NS where libxpm is not available.
3597 Only XPM version 3 (without any extensions) is supported. */
3599 static void xpm_put_color_table_v (Lisp_Object, const unsigned char *,
3600 int, Lisp_Object);
3601 static Lisp_Object xpm_get_color_table_v (Lisp_Object,
3602 const unsigned char *, int);
3603 static void xpm_put_color_table_h (Lisp_Object, const unsigned char *,
3604 int, Lisp_Object);
3605 static Lisp_Object xpm_get_color_table_h (Lisp_Object,
3606 const unsigned char *, int);
3608 /* Tokens returned from xpm_scan. */
3610 enum xpm_token
3612 XPM_TK_IDENT = 256,
3613 XPM_TK_STRING,
3614 XPM_TK_EOF
3617 /* Scan an XPM data and return a character (< 256) or a token defined
3618 by enum xpm_token above. *S and END are the start (inclusive) and
3619 the end (exclusive) addresses of the data, respectively. Advance
3620 *S while scanning. If token is either XPM_TK_IDENT or
3621 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3622 length of the corresponding token, respectively. */
3624 static int
3625 xpm_scan (const unsigned char **s,
3626 const unsigned char *end,
3627 const unsigned char **beg,
3628 ptrdiff_t *len)
3630 int c;
3632 while (*s < end)
3634 /* Skip white-space. */
3635 while (*s < end && (c = *(*s)++, c_isspace (c)))
3638 /* gnus-pointer.xpm uses '-' in its identifier.
3639 sb-dir-plus.xpm uses '+' in its identifier. */
3640 if (c_isalpha (c) || c == '_' || c == '-' || c == '+')
3642 *beg = *s - 1;
3643 while (*s < end
3644 && (c = **s, c_isalnum (c)
3645 || c == '_' || c == '-' || c == '+'))
3646 ++*s;
3647 *len = *s - *beg;
3648 return XPM_TK_IDENT;
3650 else if (c == '"')
3652 *beg = *s;
3653 while (*s < end && **s != '"')
3654 ++*s;
3655 *len = *s - *beg;
3656 if (*s < end)
3657 ++*s;
3658 return XPM_TK_STRING;
3660 else if (c == '/')
3662 if (*s < end && **s == '*')
3664 /* C-style comment. */
3665 ++*s;
3668 while (*s < end && *(*s)++ != '*')
3671 while (*s < end && **s != '/');
3672 if (*s < end)
3673 ++*s;
3675 else
3676 return c;
3678 else
3679 return c;
3682 return XPM_TK_EOF;
3685 /* Functions for color table lookup in XPM data. A key is a string
3686 specifying the color of each pixel in XPM data. A value is either
3687 an integer that specifies a pixel color, Qt that specifies
3688 transparency, or Qnil for the unspecified color. If the length of
3689 the key string is one, a vector is used as a table. Otherwise, a
3690 hash table is used. */
3692 static Lisp_Object
3693 xpm_make_color_table_v (void (**put_func) (Lisp_Object,
3694 const unsigned char *,
3695 int,
3696 Lisp_Object),
3697 Lisp_Object (**get_func) (Lisp_Object,
3698 const unsigned char *,
3699 int))
3701 *put_func = xpm_put_color_table_v;
3702 *get_func = xpm_get_color_table_v;
3703 return Fmake_vector (make_number (256), Qnil);
3706 static void
3707 xpm_put_color_table_v (Lisp_Object color_table,
3708 const unsigned char *chars_start,
3709 int chars_len,
3710 Lisp_Object color)
3712 ASET (color_table, *chars_start, color);
3715 static Lisp_Object
3716 xpm_get_color_table_v (Lisp_Object color_table,
3717 const unsigned char *chars_start,
3718 int chars_len)
3720 return AREF (color_table, *chars_start);
3723 static Lisp_Object
3724 xpm_make_color_table_h (void (**put_func) (Lisp_Object,
3725 const unsigned char *,
3726 int,
3727 Lisp_Object),
3728 Lisp_Object (**get_func) (Lisp_Object,
3729 const unsigned char *,
3730 int))
3732 *put_func = xpm_put_color_table_h;
3733 *get_func = xpm_get_color_table_h;
3734 return make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
3735 make_float (DEFAULT_REHASH_SIZE),
3736 make_float (DEFAULT_REHASH_THRESHOLD),
3737 Qnil, Qnil, Qnil);
3740 static void
3741 xpm_put_color_table_h (Lisp_Object color_table,
3742 const unsigned char *chars_start,
3743 int chars_len,
3744 Lisp_Object color)
3746 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3747 EMACS_UINT hash_code;
3748 Lisp_Object chars = make_unibyte_string (chars_start, chars_len);
3750 hash_lookup (table, chars, &hash_code);
3751 hash_put (table, chars, color, hash_code);
3754 static Lisp_Object
3755 xpm_get_color_table_h (Lisp_Object color_table,
3756 const unsigned char *chars_start,
3757 int chars_len)
3759 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3760 ptrdiff_t i =
3761 hash_lookup (table, make_unibyte_string (chars_start, chars_len), NULL);
3763 return i >= 0 ? HASH_VALUE (table, i) : Qnil;
3766 enum xpm_color_key {
3767 XPM_COLOR_KEY_S,
3768 XPM_COLOR_KEY_M,
3769 XPM_COLOR_KEY_G4,
3770 XPM_COLOR_KEY_G,
3771 XPM_COLOR_KEY_C
3774 static const char xpm_color_key_strings[][4] = {"s", "m", "g4", "g", "c"};
3776 static int
3777 xpm_str_to_color_key (const char *s)
3779 int i;
3781 for (i = 0;
3782 i < sizeof xpm_color_key_strings / sizeof xpm_color_key_strings[0];
3783 i++)
3784 if (strcmp (xpm_color_key_strings[i], s) == 0)
3785 return i;
3786 return -1;
3789 static bool
3790 xpm_load_image (struct frame *f,
3791 struct image *img,
3792 const unsigned char *contents,
3793 const unsigned char *end)
3795 const unsigned char *s = contents, *beg, *str;
3796 unsigned char buffer[BUFSIZ];
3797 int width, height, x, y;
3798 int num_colors, chars_per_pixel;
3799 ptrdiff_t len;
3800 int LA1;
3801 void (*put_color_table) (Lisp_Object, const unsigned char *, int, Lisp_Object);
3802 Lisp_Object (*get_color_table) (Lisp_Object, const unsigned char *, int);
3803 Lisp_Object frame, color_symbols, color_table;
3804 int best_key;
3805 bool have_mask = 0;
3806 XImagePtr ximg = NULL, mask_img = NULL;
3808 #define match() \
3809 LA1 = xpm_scan (&s, end, &beg, &len)
3811 #define expect(TOKEN) \
3812 if (LA1 != (TOKEN)) \
3813 goto failure; \
3814 else \
3815 match ()
3817 #define expect_ident(IDENT) \
3818 if (LA1 == XPM_TK_IDENT \
3819 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3820 match (); \
3821 else \
3822 goto failure
3824 if (!(end - s >= 9 && memcmp (s, "/* XPM */", 9) == 0))
3825 goto failure;
3826 s += 9;
3827 match ();
3828 expect_ident ("static");
3829 expect_ident ("char");
3830 expect ('*');
3831 expect (XPM_TK_IDENT);
3832 expect ('[');
3833 expect (']');
3834 expect ('=');
3835 expect ('{');
3836 expect (XPM_TK_STRING);
3837 if (len >= BUFSIZ)
3838 goto failure;
3839 memcpy (buffer, beg, len);
3840 buffer[len] = '\0';
3841 if (sscanf (buffer, "%d %d %d %d", &width, &height,
3842 &num_colors, &chars_per_pixel) != 4
3843 || width <= 0 || height <= 0
3844 || num_colors <= 0 || chars_per_pixel <= 0)
3845 goto failure;
3847 if (!check_image_size (f, width, height))
3849 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
3850 goto failure;
3853 if (!x_create_x_image_and_pixmap (f, width, height, 0,
3854 &ximg, &img->pixmap)
3855 #ifndef HAVE_NS
3856 || !x_create_x_image_and_pixmap (f, width, height, 1,
3857 &mask_img, &img->mask)
3858 #endif
3861 image_error ("Image too large", Qnil, Qnil);
3862 goto failure;
3865 expect (',');
3867 XSETFRAME (frame, f);
3868 if (!NILP (Fxw_display_color_p (frame)))
3869 best_key = XPM_COLOR_KEY_C;
3870 else if (!NILP (Fx_display_grayscale_p (frame)))
3871 best_key = (XFASTINT (Fx_display_planes (frame)) > 2
3872 ? XPM_COLOR_KEY_G : XPM_COLOR_KEY_G4);
3873 else
3874 best_key = XPM_COLOR_KEY_M;
3876 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3877 if (chars_per_pixel == 1)
3878 color_table = xpm_make_color_table_v (&put_color_table,
3879 &get_color_table);
3880 else
3881 color_table = xpm_make_color_table_h (&put_color_table,
3882 &get_color_table);
3884 while (num_colors-- > 0)
3886 char *color, *max_color;
3887 int key, next_key, max_key = 0;
3888 Lisp_Object symbol_color = Qnil, color_val;
3889 XColor cdef;
3891 expect (XPM_TK_STRING);
3892 if (len <= chars_per_pixel || len >= BUFSIZ + chars_per_pixel)
3893 goto failure;
3894 memcpy (buffer, beg + chars_per_pixel, len - chars_per_pixel);
3895 buffer[len - chars_per_pixel] = '\0';
3897 str = strtok (buffer, " \t");
3898 if (str == NULL)
3899 goto failure;
3900 key = xpm_str_to_color_key (str);
3901 if (key < 0)
3902 goto failure;
3905 color = strtok (NULL, " \t");
3906 if (color == NULL)
3907 goto failure;
3909 while ((str = strtok (NULL, " \t")) != NULL)
3911 next_key = xpm_str_to_color_key (str);
3912 if (next_key >= 0)
3913 break;
3914 color[strlen (color)] = ' ';
3917 if (key == XPM_COLOR_KEY_S)
3919 if (NILP (symbol_color))
3920 symbol_color = build_string (color);
3922 else if (max_key < key && key <= best_key)
3924 max_key = key;
3925 max_color = color;
3927 key = next_key;
3929 while (str);
3931 color_val = Qnil;
3932 if (!NILP (color_symbols) && !NILP (symbol_color))
3934 Lisp_Object specified_color = Fassoc (symbol_color, color_symbols);
3936 if (CONSP (specified_color) && STRINGP (XCDR (specified_color)))
3938 if (xstrcasecmp (SSDATA (XCDR (specified_color)), "None") == 0)
3939 color_val = Qt;
3940 else if (x_defined_color (f, SSDATA (XCDR (specified_color)),
3941 &cdef, 0))
3942 color_val = make_number (cdef.pixel);
3945 if (NILP (color_val) && max_key > 0)
3947 if (xstrcasecmp (max_color, "None") == 0)
3948 color_val = Qt;
3949 else if (x_defined_color (f, max_color, &cdef, 0))
3950 color_val = make_number (cdef.pixel);
3952 if (!NILP (color_val))
3953 (*put_color_table) (color_table, beg, chars_per_pixel, color_val);
3955 expect (',');
3958 for (y = 0; y < height; y++)
3960 expect (XPM_TK_STRING);
3961 str = beg;
3962 if (len < width * chars_per_pixel)
3963 goto failure;
3964 for (x = 0; x < width; x++, str += chars_per_pixel)
3966 Lisp_Object color_val =
3967 (*get_color_table) (color_table, str, chars_per_pixel);
3969 XPutPixel (ximg, x, y,
3970 (INTEGERP (color_val) ? XINT (color_val)
3971 : FRAME_FOREGROUND_PIXEL (f)));
3972 #ifndef HAVE_NS
3973 XPutPixel (mask_img, x, y,
3974 (!EQ (color_val, Qt) ? PIX_MASK_DRAW
3975 : (have_mask = 1, PIX_MASK_RETAIN)));
3976 #else
3977 if (EQ (color_val, Qt))
3978 ns_set_alpha (ximg, x, y, 0);
3979 #endif
3981 if (y + 1 < height)
3982 expect (',');
3985 img->width = width;
3986 img->height = height;
3988 /* Maybe fill in the background field while we have ximg handy. */
3989 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
3990 IMAGE_BACKGROUND (img, f, ximg);
3992 x_put_x_image (f, ximg, img->pixmap, width, height);
3993 x_destroy_x_image (ximg);
3994 #ifndef HAVE_NS
3995 if (have_mask)
3997 /* Fill in the background_transparent field while we have the
3998 mask handy. */
3999 image_background_transparent (img, f, mask_img);
4001 x_put_x_image (f, mask_img, img->mask, width, height);
4002 x_destroy_x_image (mask_img);
4004 else
4006 x_destroy_x_image (mask_img);
4007 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4008 img->mask = NO_PIXMAP;
4010 #endif
4011 return 1;
4013 failure:
4014 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
4015 x_destroy_x_image (ximg);
4016 x_destroy_x_image (mask_img);
4017 x_clear_image (f, img);
4018 return 0;
4020 #undef match
4021 #undef expect
4022 #undef expect_ident
4025 static bool
4026 xpm_load (struct frame *f,
4027 struct image *img)
4029 bool success_p = 0;
4030 Lisp_Object file_name;
4032 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4033 file_name = image_spec_value (img->spec, QCfile, NULL);
4034 if (STRINGP (file_name))
4036 Lisp_Object file;
4037 unsigned char *contents;
4038 ptrdiff_t size;
4040 file = x_find_image_file (file_name);
4041 if (!STRINGP (file))
4043 image_error ("Cannot find image file `%s'", file_name, Qnil);
4044 return 0;
4047 contents = slurp_file (SSDATA (file), &size);
4048 if (contents == NULL)
4050 image_error ("Error loading XPM image `%s'", img->spec, Qnil);
4051 return 0;
4054 success_p = xpm_load_image (f, img, contents, contents + size);
4055 xfree (contents);
4057 else
4059 Lisp_Object data;
4061 data = image_spec_value (img->spec, QCdata, NULL);
4062 if (!STRINGP (data))
4064 image_error ("Invalid image data `%s'", data, Qnil);
4065 return 0;
4067 success_p = xpm_load_image (f, img, SDATA (data),
4068 SDATA (data) + SBYTES (data));
4071 return success_p;
4074 #endif /* HAVE_NS && !HAVE_XPM */
4078 /***********************************************************************
4079 Color table
4080 ***********************************************************************/
4082 #ifdef COLOR_TABLE_SUPPORT
4084 /* An entry in the color table mapping an RGB color to a pixel color. */
4086 struct ct_color
4088 int r, g, b;
4089 unsigned long pixel;
4091 /* Next in color table collision list. */
4092 struct ct_color *next;
4095 /* The bucket vector size to use. Must be prime. */
4097 #define CT_SIZE 101
4099 /* Value is a hash of the RGB color given by R, G, and B. */
4101 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4103 /* The color hash table. */
4105 static struct ct_color **ct_table;
4107 /* Number of entries in the color table. */
4109 static int ct_colors_allocated;
4110 enum
4112 ct_colors_allocated_max =
4113 min (INT_MAX,
4114 min (PTRDIFF_MAX, SIZE_MAX) / sizeof (unsigned long))
4117 /* Initialize the color table. */
4119 static void
4120 init_color_table (void)
4122 int size = CT_SIZE * sizeof (*ct_table);
4123 ct_table = xzalloc (size);
4124 ct_colors_allocated = 0;
4128 /* Free memory associated with the color table. */
4130 static void
4131 free_color_table (void)
4133 int i;
4134 struct ct_color *p, *next;
4136 for (i = 0; i < CT_SIZE; ++i)
4137 for (p = ct_table[i]; p; p = next)
4139 next = p->next;
4140 xfree (p);
4143 xfree (ct_table);
4144 ct_table = NULL;
4148 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4149 entry for that color already is in the color table, return the
4150 pixel color of that entry. Otherwise, allocate a new color for R,
4151 G, B, and make an entry in the color table. */
4153 static unsigned long
4154 lookup_rgb_color (struct frame *f, int r, int g, int b)
4156 unsigned hash = CT_HASH_RGB (r, g, b);
4157 int i = hash % CT_SIZE;
4158 struct ct_color *p;
4159 Display_Info *dpyinfo;
4161 /* Handle TrueColor visuals specially, which improves performance by
4162 two orders of magnitude. Freeing colors on TrueColor visuals is
4163 a nop, and pixel colors specify RGB values directly. See also
4164 the Xlib spec, chapter 3.1. */
4165 dpyinfo = FRAME_X_DISPLAY_INFO (f);
4166 if (dpyinfo->red_bits > 0)
4168 unsigned long pr, pg, pb;
4170 /* Apply gamma-correction like normal color allocation does. */
4171 if (f->gamma)
4173 XColor color;
4174 color.red = r, color.green = g, color.blue = b;
4175 gamma_correct (f, &color);
4176 r = color.red, g = color.green, b = color.blue;
4179 /* Scale down RGB values to the visual's bits per RGB, and shift
4180 them to the right position in the pixel color. Note that the
4181 original RGB values are 16-bit values, as usual in X. */
4182 pr = (r >> (16 - dpyinfo->red_bits)) << dpyinfo->red_offset;
4183 pg = (g >> (16 - dpyinfo->green_bits)) << dpyinfo->green_offset;
4184 pb = (b >> (16 - dpyinfo->blue_bits)) << dpyinfo->blue_offset;
4186 /* Assemble the pixel color. */
4187 return pr | pg | pb;
4190 for (p = ct_table[i]; p; p = p->next)
4191 if (p->r == r && p->g == g && p->b == b)
4192 break;
4194 if (p == NULL)
4197 #ifdef HAVE_X_WINDOWS
4198 XColor color;
4199 Colormap cmap;
4200 bool rc;
4201 #else
4202 COLORREF color;
4203 #endif
4205 if (ct_colors_allocated_max <= ct_colors_allocated)
4206 return FRAME_FOREGROUND_PIXEL (f);
4208 #ifdef HAVE_X_WINDOWS
4209 color.red = r;
4210 color.green = g;
4211 color.blue = b;
4213 cmap = FRAME_X_COLORMAP (f);
4214 rc = x_alloc_nearest_color (f, cmap, &color);
4215 if (rc)
4217 ++ct_colors_allocated;
4218 p = xmalloc (sizeof *p);
4219 p->r = r;
4220 p->g = g;
4221 p->b = b;
4222 p->pixel = color.pixel;
4223 p->next = ct_table[i];
4224 ct_table[i] = p;
4226 else
4227 return FRAME_FOREGROUND_PIXEL (f);
4229 #else
4230 #ifdef HAVE_NTGUI
4231 color = PALETTERGB (r, g, b);
4232 #else
4233 color = RGB_TO_ULONG (r, g, b);
4234 #endif /* HAVE_NTGUI */
4235 ++ct_colors_allocated;
4236 p = xmalloc (sizeof *p);
4237 p->r = r;
4238 p->g = g;
4239 p->b = b;
4240 p->pixel = color;
4241 p->next = ct_table[i];
4242 ct_table[i] = p;
4243 #endif /* HAVE_X_WINDOWS */
4247 return p->pixel;
4251 /* Look up pixel color PIXEL which is used on frame F in the color
4252 table. If not already present, allocate it. Value is PIXEL. */
4254 static unsigned long
4255 lookup_pixel_color (struct frame *f, unsigned long pixel)
4257 int i = pixel % CT_SIZE;
4258 struct ct_color *p;
4260 for (p = ct_table[i]; p; p = p->next)
4261 if (p->pixel == pixel)
4262 break;
4264 if (p == NULL)
4266 XColor color;
4267 Colormap cmap;
4268 bool rc;
4270 if (ct_colors_allocated_max <= ct_colors_allocated)
4271 return FRAME_FOREGROUND_PIXEL (f);
4273 #ifdef HAVE_X_WINDOWS
4274 cmap = FRAME_X_COLORMAP (f);
4275 color.pixel = pixel;
4276 x_query_color (f, &color);
4277 rc = x_alloc_nearest_color (f, cmap, &color);
4278 #else
4279 block_input ();
4280 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
4281 color.pixel = pixel;
4282 XQueryColor (NULL, cmap, &color);
4283 rc = x_alloc_nearest_color (f, cmap, &color);
4284 unblock_input ();
4285 #endif /* HAVE_X_WINDOWS */
4287 if (rc)
4289 ++ct_colors_allocated;
4291 p = xmalloc (sizeof *p);
4292 p->r = color.red;
4293 p->g = color.green;
4294 p->b = color.blue;
4295 p->pixel = pixel;
4296 p->next = ct_table[i];
4297 ct_table[i] = p;
4299 else
4300 return FRAME_FOREGROUND_PIXEL (f);
4302 return p->pixel;
4306 /* Value is a vector of all pixel colors contained in the color table,
4307 allocated via xmalloc. Set *N to the number of colors. */
4309 static unsigned long *
4310 colors_in_color_table (int *n)
4312 int i, j;
4313 struct ct_color *p;
4314 unsigned long *colors;
4316 if (ct_colors_allocated == 0)
4318 *n = 0;
4319 colors = NULL;
4321 else
4323 colors = xmalloc (ct_colors_allocated * sizeof *colors);
4324 *n = ct_colors_allocated;
4326 for (i = j = 0; i < CT_SIZE; ++i)
4327 for (p = ct_table[i]; p; p = p->next)
4328 colors[j++] = p->pixel;
4331 return colors;
4334 #else /* COLOR_TABLE_SUPPORT */
4336 static unsigned long
4337 lookup_rgb_color (struct frame *f, int r, int g, int b)
4339 unsigned long pixel;
4341 #ifdef HAVE_NTGUI
4342 pixel = PALETTERGB (r >> 8, g >> 8, b >> 8);
4343 #endif /* HAVE_NTGUI */
4345 #ifdef HAVE_NS
4346 pixel = RGB_TO_ULONG (r >> 8, g >> 8, b >> 8);
4347 #endif /* HAVE_NS */
4348 return pixel;
4351 static void
4352 init_color_table (void)
4355 #endif /* COLOR_TABLE_SUPPORT */
4358 /***********************************************************************
4359 Algorithms
4360 ***********************************************************************/
4362 /* Edge detection matrices for different edge-detection
4363 strategies. */
4365 static int emboss_matrix[9] = {
4366 /* x - 1 x x + 1 */
4367 2, -1, 0, /* y - 1 */
4368 -1, 0, 1, /* y */
4369 0, 1, -2 /* y + 1 */
4372 static int laplace_matrix[9] = {
4373 /* x - 1 x x + 1 */
4374 1, 0, 0, /* y - 1 */
4375 0, 0, 0, /* y */
4376 0, 0, -1 /* y + 1 */
4379 /* Value is the intensity of the color whose red/green/blue values
4380 are R, G, and B. */
4382 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4385 /* On frame F, return an array of XColor structures describing image
4386 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4387 means also fill the red/green/blue members of the XColor
4388 structures. Value is a pointer to the array of XColors structures,
4389 allocated with xmalloc; it must be freed by the caller. */
4391 static XColor *
4392 x_to_xcolors (struct frame *f, struct image *img, bool rgb_p)
4394 int x, y;
4395 XColor *colors, *p;
4396 XImagePtr_or_DC ximg;
4397 #ifdef HAVE_NTGUI
4398 HDC hdc;
4399 HGDIOBJ prev;
4400 #endif /* HAVE_NTGUI */
4402 if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *colors / img->width < img->height)
4403 memory_full (SIZE_MAX);
4404 colors = xmalloc (sizeof *colors * img->width * img->height);
4406 #ifndef HAVE_NTGUI
4407 /* Get the X image IMG->pixmap. */
4408 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
4409 0, 0, img->width, img->height, ~0, ZPixmap);
4410 #else
4411 /* Load the image into a memory device context. */
4412 hdc = get_frame_dc (f);
4413 ximg = CreateCompatibleDC (hdc);
4414 release_frame_dc (f, hdc);
4415 prev = SelectObject (ximg, img->pixmap);
4416 #endif /* HAVE_NTGUI */
4418 /* Fill the `pixel' members of the XColor array. I wished there
4419 were an easy and portable way to circumvent XGetPixel. */
4420 p = colors;
4421 for (y = 0; y < img->height; ++y)
4423 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4424 XColor *row = p;
4425 for (x = 0; x < img->width; ++x, ++p)
4426 p->pixel = GET_PIXEL (ximg, x, y);
4427 if (rgb_p)
4428 x_query_colors (f, row, img->width);
4430 #else
4432 for (x = 0; x < img->width; ++x, ++p)
4434 /* W32_TODO: palette support needed here? */
4435 p->pixel = GET_PIXEL (ximg, x, y);
4436 if (rgb_p)
4438 p->red = RED16_FROM_ULONG (p->pixel);
4439 p->green = GREEN16_FROM_ULONG (p->pixel);
4440 p->blue = BLUE16_FROM_ULONG (p->pixel);
4443 #endif /* HAVE_X_WINDOWS */
4446 Destroy_Image (ximg, prev);
4448 return colors;
4451 #ifdef HAVE_NTGUI
4453 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4454 created with CreateDIBSection, with the pointer to the bit values
4455 stored in ximg->data. */
4457 static void
4458 XPutPixel (XImagePtr ximg, int x, int y, COLORREF color)
4460 int width = ximg->info.bmiHeader.biWidth;
4461 unsigned char * pixel;
4463 /* True color images. */
4464 if (ximg->info.bmiHeader.biBitCount == 24)
4466 int rowbytes = width * 3;
4467 /* Ensure scanlines are aligned on 4 byte boundaries. */
4468 if (rowbytes % 4)
4469 rowbytes += 4 - (rowbytes % 4);
4471 pixel = ximg->data + y * rowbytes + x * 3;
4472 /* Windows bitmaps are in BGR order. */
4473 *pixel = GetBValue (color);
4474 *(pixel + 1) = GetGValue (color);
4475 *(pixel + 2) = GetRValue (color);
4477 /* Monochrome images. */
4478 else if (ximg->info.bmiHeader.biBitCount == 1)
4480 int rowbytes = width / 8;
4481 /* Ensure scanlines are aligned on 4 byte boundaries. */
4482 if (rowbytes % 4)
4483 rowbytes += 4 - (rowbytes % 4);
4484 pixel = ximg->data + y * rowbytes + x / 8;
4485 /* Filter out palette info. */
4486 if (color & 0x00ffffff)
4487 *pixel = *pixel | (1 << x % 8);
4488 else
4489 *pixel = *pixel & ~(1 << x % 8);
4491 else
4492 image_error ("XPutPixel: palette image not supported", Qnil, Qnil);
4495 #endif /* HAVE_NTGUI */
4497 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4498 RGB members are set. F is the frame on which this all happens.
4499 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4501 static void
4502 x_from_xcolors (struct frame *f, struct image *img, XColor *colors)
4504 int x, y;
4505 XImagePtr oimg = NULL;
4506 Pixmap pixmap;
4507 XColor *p;
4509 init_color_table ();
4511 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
4512 &oimg, &pixmap);
4513 p = colors;
4514 for (y = 0; y < img->height; ++y)
4515 for (x = 0; x < img->width; ++x, ++p)
4517 unsigned long pixel;
4518 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
4519 XPutPixel (oimg, x, y, pixel);
4522 xfree (colors);
4523 x_clear_image_1 (f, img, 1, 0, 1);
4525 x_put_x_image (f, oimg, pixmap, img->width, img->height);
4526 x_destroy_x_image (oimg);
4527 img->pixmap = pixmap;
4528 #ifdef COLOR_TABLE_SUPPORT
4529 img->colors = colors_in_color_table (&img->ncolors);
4530 free_color_table ();
4531 #endif /* COLOR_TABLE_SUPPORT */
4535 /* On frame F, perform edge-detection on image IMG.
4537 MATRIX is a nine-element array specifying the transformation
4538 matrix. See emboss_matrix for an example.
4540 COLOR_ADJUST is a color adjustment added to each pixel of the
4541 outgoing image. */
4543 static void
4544 x_detect_edges (struct frame *f, struct image *img, int *matrix, int color_adjust)
4546 XColor *colors = x_to_xcolors (f, img, 1);
4547 XColor *new, *p;
4548 int x, y, i, sum;
4550 for (i = sum = 0; i < 9; ++i)
4551 sum += eabs (matrix[i]);
4553 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4555 if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *new / img->width < img->height)
4556 memory_full (SIZE_MAX);
4557 new = xmalloc (sizeof *new * img->width * img->height);
4559 for (y = 0; y < img->height; ++y)
4561 p = COLOR (new, 0, y);
4562 p->red = p->green = p->blue = 0xffff/2;
4563 p = COLOR (new, img->width - 1, y);
4564 p->red = p->green = p->blue = 0xffff/2;
4567 for (x = 1; x < img->width - 1; ++x)
4569 p = COLOR (new, x, 0);
4570 p->red = p->green = p->blue = 0xffff/2;
4571 p = COLOR (new, x, img->height - 1);
4572 p->red = p->green = p->blue = 0xffff/2;
4575 for (y = 1; y < img->height - 1; ++y)
4577 p = COLOR (new, 1, y);
4579 for (x = 1; x < img->width - 1; ++x, ++p)
4581 int r, g, b, yy, xx;
4583 r = g = b = i = 0;
4584 for (yy = y - 1; yy < y + 2; ++yy)
4585 for (xx = x - 1; xx < x + 2; ++xx, ++i)
4586 if (matrix[i])
4588 XColor *t = COLOR (colors, xx, yy);
4589 r += matrix[i] * t->red;
4590 g += matrix[i] * t->green;
4591 b += matrix[i] * t->blue;
4594 r = (r / sum + color_adjust) & 0xffff;
4595 g = (g / sum + color_adjust) & 0xffff;
4596 b = (b / sum + color_adjust) & 0xffff;
4597 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
4601 xfree (colors);
4602 x_from_xcolors (f, img, new);
4604 #undef COLOR
4608 /* Perform the pre-defined `emboss' edge-detection on image IMG
4609 on frame F. */
4611 static void
4612 x_emboss (struct frame *f, struct image *img)
4614 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
4618 /* Transform image IMG which is used on frame F with a Laplace
4619 edge-detection algorithm. The result is an image that can be used
4620 to draw disabled buttons, for example. */
4622 static void
4623 x_laplace (struct frame *f, struct image *img)
4625 x_detect_edges (f, img, laplace_matrix, 45000);
4629 /* Perform edge-detection on image IMG on frame F, with specified
4630 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4632 MATRIX must be either
4634 - a list of at least 9 numbers in row-major form
4635 - a vector of at least 9 numbers
4637 COLOR_ADJUST nil means use a default; otherwise it must be a
4638 number. */
4640 static void
4641 x_edge_detection (struct frame *f, struct image *img, Lisp_Object matrix,
4642 Lisp_Object color_adjust)
4644 int i = 0;
4645 int trans[9];
4647 if (CONSP (matrix))
4649 for (i = 0;
4650 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
4651 ++i, matrix = XCDR (matrix))
4652 trans[i] = XFLOATINT (XCAR (matrix));
4654 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
4656 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
4657 trans[i] = XFLOATINT (AREF (matrix, i));
4660 if (NILP (color_adjust))
4661 color_adjust = make_number (0xffff / 2);
4663 if (i == 9 && NUMBERP (color_adjust))
4664 x_detect_edges (f, img, trans, XFLOATINT (color_adjust));
4668 /* Transform image IMG on frame F so that it looks disabled. */
4670 static void
4671 x_disable_image (struct frame *f, struct image *img)
4673 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4674 #ifdef HAVE_NTGUI
4675 int n_planes = dpyinfo->n_planes * dpyinfo->n_cbits;
4676 #else
4677 int n_planes = dpyinfo->n_planes;
4678 #endif /* HAVE_NTGUI */
4680 if (n_planes >= 2)
4682 /* Color (or grayscale). Convert to gray, and equalize. Just
4683 drawing such images with a stipple can look very odd, so
4684 we're using this method instead. */
4685 XColor *colors = x_to_xcolors (f, img, 1);
4686 XColor *p, *end;
4687 const int h = 15000;
4688 const int l = 30000;
4690 for (p = colors, end = colors + img->width * img->height;
4691 p < end;
4692 ++p)
4694 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
4695 int i2 = (0xffff - h - l) * i / 0xffff + l;
4696 p->red = p->green = p->blue = i2;
4699 x_from_xcolors (f, img, colors);
4702 /* Draw a cross over the disabled image, if we must or if we
4703 should. */
4704 if (n_planes < 2 || cross_disabled_images)
4706 #ifndef HAVE_NTGUI
4707 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4709 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4711 Display *dpy = FRAME_X_DISPLAY (f);
4712 GC gc = XCreateGC (dpy, img->pixmap, 0, NULL);
4713 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
4714 XDrawLine (dpy, img->pixmap, gc, 0, 0,
4715 img->width - 1, img->height - 1);
4716 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
4717 img->width - 1, 0);
4718 XFreeGC (dpy, gc);
4720 if (img->mask)
4722 gc = XCreateGC (dpy, img->mask, 0, NULL);
4723 XSetForeground (dpy, gc, MaskForeground (f));
4724 XDrawLine (dpy, img->mask, gc, 0, 0,
4725 img->width - 1, img->height - 1);
4726 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
4727 img->width - 1, 0);
4728 XFreeGC (dpy, gc);
4730 #endif /* !HAVE_NS */
4731 #else
4732 HDC hdc, bmpdc;
4733 HGDIOBJ prev;
4735 hdc = get_frame_dc (f);
4736 bmpdc = CreateCompatibleDC (hdc);
4737 release_frame_dc (f, hdc);
4739 prev = SelectObject (bmpdc, img->pixmap);
4741 SetTextColor (bmpdc, BLACK_PIX_DEFAULT (f));
4742 MoveToEx (bmpdc, 0, 0, NULL);
4743 LineTo (bmpdc, img->width - 1, img->height - 1);
4744 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4745 LineTo (bmpdc, img->width - 1, 0);
4747 if (img->mask)
4749 SelectObject (bmpdc, img->mask);
4750 SetTextColor (bmpdc, WHITE_PIX_DEFAULT (f));
4751 MoveToEx (bmpdc, 0, 0, NULL);
4752 LineTo (bmpdc, img->width - 1, img->height - 1);
4753 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4754 LineTo (bmpdc, img->width - 1, 0);
4756 SelectObject (bmpdc, prev);
4757 DeleteDC (bmpdc);
4758 #endif /* HAVE_NTGUI */
4763 /* Build a mask for image IMG which is used on frame F. FILE is the
4764 name of an image file, for error messages. HOW determines how to
4765 determine the background color of IMG. If it is a list '(R G B)',
4766 with R, G, and B being integers >= 0, take that as the color of the
4767 background. Otherwise, determine the background color of IMG
4768 heuristically. */
4770 static void
4771 x_build_heuristic_mask (struct frame *f, struct image *img, Lisp_Object how)
4773 XImagePtr_or_DC ximg;
4774 #ifndef HAVE_NTGUI
4775 XImagePtr mask_img;
4776 #else
4777 HDC frame_dc;
4778 HGDIOBJ prev;
4779 char *mask_img;
4780 int row_width;
4781 #endif /* HAVE_NTGUI */
4782 int x, y;
4783 bool rc, use_img_background;
4784 unsigned long bg = 0;
4786 if (img->mask)
4788 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4789 img->mask = NO_PIXMAP;
4790 img->background_transparent_valid = 0;
4793 #ifndef HAVE_NTGUI
4794 #ifndef HAVE_NS
4795 /* Create an image and pixmap serving as mask. */
4796 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
4797 &mask_img, &img->mask);
4798 if (!rc)
4799 return;
4800 #endif /* !HAVE_NS */
4802 /* Get the X image of IMG->pixmap. */
4803 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap, 0, 0,
4804 img->width, img->height,
4805 ~0, ZPixmap);
4806 #else
4807 /* Create the bit array serving as mask. */
4808 row_width = (img->width + 7) / 8;
4809 mask_img = xzalloc (row_width * img->height);
4811 /* Create a memory device context for IMG->pixmap. */
4812 frame_dc = get_frame_dc (f);
4813 ximg = CreateCompatibleDC (frame_dc);
4814 release_frame_dc (f, frame_dc);
4815 prev = SelectObject (ximg, img->pixmap);
4816 #endif /* HAVE_NTGUI */
4818 /* Determine the background color of ximg. If HOW is `(R G B)'
4819 take that as color. Otherwise, use the image's background color. */
4820 use_img_background = 1;
4822 if (CONSP (how))
4824 int rgb[3], i;
4826 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
4828 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
4829 how = XCDR (how);
4832 if (i == 3 && NILP (how))
4834 char color_name[30];
4835 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
4836 bg = (
4837 #ifdef HAVE_NTGUI
4838 0x00ffffff & /* Filter out palette info. */
4839 #endif /* HAVE_NTGUI */
4840 x_alloc_image_color (f, img, build_string (color_name), 0));
4841 use_img_background = 0;
4845 if (use_img_background)
4846 bg = four_corners_best (ximg, img->corners, img->width, img->height);
4848 /* Set all bits in mask_img to 1 whose color in ximg is different
4849 from the background color bg. */
4850 #ifndef HAVE_NTGUI
4851 for (y = 0; y < img->height; ++y)
4852 for (x = 0; x < img->width; ++x)
4853 #ifndef HAVE_NS
4854 XPutPixel (mask_img, x, y, (XGetPixel (ximg, x, y) != bg
4855 ? PIX_MASK_DRAW : PIX_MASK_RETAIN));
4856 #else
4857 if (XGetPixel (ximg, x, y) == bg)
4858 ns_set_alpha (ximg, x, y, 0);
4859 #endif /* HAVE_NS */
4860 #ifndef HAVE_NS
4861 /* Fill in the background_transparent field while we have the mask handy. */
4862 image_background_transparent (img, f, mask_img);
4864 /* Put mask_img into img->mask. */
4865 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
4866 x_destroy_x_image (mask_img);
4867 #endif /* !HAVE_NS */
4868 #else
4869 for (y = 0; y < img->height; ++y)
4870 for (x = 0; x < img->width; ++x)
4872 COLORREF p = GetPixel (ximg, x, y);
4873 if (p != bg)
4874 mask_img[y * row_width + x / 8] |= 1 << (x % 8);
4877 /* Create the mask image. */
4878 img->mask = w32_create_pixmap_from_bitmap_data (img->width, img->height,
4879 mask_img);
4880 /* Fill in the background_transparent field while we have the mask handy. */
4881 SelectObject (ximg, img->mask);
4882 image_background_transparent (img, f, ximg);
4884 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
4885 xfree (mask_img);
4886 #endif /* HAVE_NTGUI */
4888 Destroy_Image (ximg, prev);
4892 /***********************************************************************
4893 PBM (mono, gray, color)
4894 ***********************************************************************/
4896 static bool pbm_image_p (Lisp_Object object);
4897 static bool pbm_load (struct frame *f, struct image *img);
4899 /* The symbol `pbm' identifying images of this type. */
4901 static Lisp_Object Qpbm;
4903 /* Indices of image specification fields in gs_format, below. */
4905 enum pbm_keyword_index
4907 PBM_TYPE,
4908 PBM_FILE,
4909 PBM_DATA,
4910 PBM_ASCENT,
4911 PBM_MARGIN,
4912 PBM_RELIEF,
4913 PBM_ALGORITHM,
4914 PBM_HEURISTIC_MASK,
4915 PBM_MASK,
4916 PBM_FOREGROUND,
4917 PBM_BACKGROUND,
4918 PBM_LAST
4921 /* Vector of image_keyword structures describing the format
4922 of valid user-defined image specifications. */
4924 static const struct image_keyword pbm_format[PBM_LAST] =
4926 {":type", IMAGE_SYMBOL_VALUE, 1},
4927 {":file", IMAGE_STRING_VALUE, 0},
4928 {":data", IMAGE_STRING_VALUE, 0},
4929 {":ascent", IMAGE_ASCENT_VALUE, 0},
4930 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
4931 {":relief", IMAGE_INTEGER_VALUE, 0},
4932 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4933 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4934 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4935 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
4936 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
4939 /* Structure describing the image type `pbm'. */
4941 static struct image_type pbm_type =
4943 &Qpbm,
4944 pbm_image_p,
4945 pbm_load,
4946 x_clear_image,
4947 NULL,
4948 NULL
4952 /* Return true if OBJECT is a valid PBM image specification. */
4954 static bool
4955 pbm_image_p (Lisp_Object object)
4957 struct image_keyword fmt[PBM_LAST];
4959 memcpy (fmt, pbm_format, sizeof fmt);
4961 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
4962 return 0;
4964 /* Must specify either :data or :file. */
4965 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
4969 /* Scan a decimal number from *S and return it. Advance *S while
4970 reading the number. END is the end of the string. Value is -1 at
4971 end of input. */
4973 static int
4974 pbm_scan_number (unsigned char **s, unsigned char *end)
4976 int c = 0, val = -1;
4978 while (*s < end)
4980 /* Skip white-space. */
4981 while (*s < end && (c = *(*s)++, c_isspace (c)))
4984 if (c == '#')
4986 /* Skip comment to end of line. */
4987 while (*s < end && (c = *(*s)++, c != '\n'))
4990 else if (c_isdigit (c))
4992 /* Read decimal number. */
4993 val = c - '0';
4994 while (*s < end && (c = *(*s)++, c_isdigit (c)))
4995 val = 10 * val + c - '0';
4996 break;
4998 else
4999 break;
5002 return val;
5006 /* Load PBM image IMG for use on frame F. */
5008 static bool
5009 pbm_load (struct frame *f, struct image *img)
5011 bool raw_p;
5012 int x, y;
5013 int width, height, max_color_idx = 0;
5014 XImagePtr ximg;
5015 Lisp_Object file, specified_file;
5016 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
5017 unsigned char *contents = NULL;
5018 unsigned char *end, *p;
5019 ptrdiff_t size;
5021 specified_file = image_spec_value (img->spec, QCfile, NULL);
5023 if (STRINGP (specified_file))
5025 file = x_find_image_file (specified_file);
5026 if (!STRINGP (file))
5028 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5029 return 0;
5032 contents = slurp_file (SSDATA (file), &size);
5033 if (contents == NULL)
5035 image_error ("Error reading `%s'", file, Qnil);
5036 return 0;
5039 p = contents;
5040 end = contents + size;
5042 else
5044 Lisp_Object data;
5045 data = image_spec_value (img->spec, QCdata, NULL);
5046 if (!STRINGP (data))
5048 image_error ("Invalid image data `%s'", data, Qnil);
5049 return 0;
5051 p = SDATA (data);
5052 end = p + SBYTES (data);
5055 /* Check magic number. */
5056 if (end - p < 2 || *p++ != 'P')
5058 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5059 error:
5060 xfree (contents);
5061 return 0;
5064 switch (*p++)
5066 case '1':
5067 raw_p = 0, type = PBM_MONO;
5068 break;
5070 case '2':
5071 raw_p = 0, type = PBM_GRAY;
5072 break;
5074 case '3':
5075 raw_p = 0, type = PBM_COLOR;
5076 break;
5078 case '4':
5079 raw_p = 1, type = PBM_MONO;
5080 break;
5082 case '5':
5083 raw_p = 1, type = PBM_GRAY;
5084 break;
5086 case '6':
5087 raw_p = 1, type = PBM_COLOR;
5088 break;
5090 default:
5091 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5092 goto error;
5095 /* Read width, height, maximum color-component. Characters
5096 starting with `#' up to the end of a line are ignored. */
5097 width = pbm_scan_number (&p, end);
5098 height = pbm_scan_number (&p, end);
5100 if (type != PBM_MONO)
5102 max_color_idx = pbm_scan_number (&p, end);
5103 if (max_color_idx > 65535 || max_color_idx < 0)
5105 image_error ("Unsupported maximum PBM color value", Qnil, Qnil);
5106 goto error;
5110 if (!check_image_size (f, width, height))
5112 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5113 goto error;
5116 if (!x_create_x_image_and_pixmap (f, width, height, 0,
5117 &ximg, &img->pixmap))
5118 goto error;
5120 /* Initialize the color hash table. */
5121 init_color_table ();
5123 if (type == PBM_MONO)
5125 int c = 0, g;
5126 struct image_keyword fmt[PBM_LAST];
5127 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
5128 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
5130 /* Parse the image specification. */
5131 memcpy (fmt, pbm_format, sizeof fmt);
5132 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
5134 /* Get foreground and background colors, maybe allocate colors. */
5135 if (fmt[PBM_FOREGROUND].count
5136 && STRINGP (fmt[PBM_FOREGROUND].value))
5137 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
5138 if (fmt[PBM_BACKGROUND].count
5139 && STRINGP (fmt[PBM_BACKGROUND].value))
5141 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
5142 img->background = bg;
5143 img->background_valid = 1;
5146 for (y = 0; y < height; ++y)
5147 for (x = 0; x < width; ++x)
5149 if (raw_p)
5151 if ((x & 7) == 0)
5153 if (p >= end)
5155 x_destroy_x_image (ximg);
5156 x_clear_image (f, img);
5157 image_error ("Invalid image size in image `%s'",
5158 img->spec, Qnil);
5159 goto error;
5161 c = *p++;
5163 g = c & 0x80;
5164 c <<= 1;
5166 else
5167 g = pbm_scan_number (&p, end);
5169 XPutPixel (ximg, x, y, g ? fg : bg);
5172 else
5174 int expected_size = height * width;
5175 if (max_color_idx > 255)
5176 expected_size *= 2;
5177 if (type == PBM_COLOR)
5178 expected_size *= 3;
5180 if (raw_p && p + expected_size > end)
5182 x_destroy_x_image (ximg);
5183 x_clear_image (f, img);
5184 image_error ("Invalid image size in image `%s'",
5185 img->spec, Qnil);
5186 goto error;
5189 for (y = 0; y < height; ++y)
5190 for (x = 0; x < width; ++x)
5192 int r, g, b;
5194 if (type == PBM_GRAY && raw_p)
5196 r = g = b = *p++;
5197 if (max_color_idx > 255)
5198 r = g = b = r * 256 + *p++;
5200 else if (type == PBM_GRAY)
5201 r = g = b = pbm_scan_number (&p, end);
5202 else if (raw_p)
5204 r = *p++;
5205 if (max_color_idx > 255)
5206 r = r * 256 + *p++;
5207 g = *p++;
5208 if (max_color_idx > 255)
5209 g = g * 256 + *p++;
5210 b = *p++;
5211 if (max_color_idx > 255)
5212 b = b * 256 + *p++;
5214 else
5216 r = pbm_scan_number (&p, end);
5217 g = pbm_scan_number (&p, end);
5218 b = pbm_scan_number (&p, end);
5221 if (r < 0 || g < 0 || b < 0)
5223 x_destroy_x_image (ximg);
5224 image_error ("Invalid pixel value in image `%s'",
5225 img->spec, Qnil);
5226 goto error;
5229 /* RGB values are now in the range 0..max_color_idx.
5230 Scale this to the range 0..0xffff supported by X. */
5231 r = (double) r * 65535 / max_color_idx;
5232 g = (double) g * 65535 / max_color_idx;
5233 b = (double) b * 65535 / max_color_idx;
5234 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5238 #ifdef COLOR_TABLE_SUPPORT
5239 /* Store in IMG->colors the colors allocated for the image, and
5240 free the color table. */
5241 img->colors = colors_in_color_table (&img->ncolors);
5242 free_color_table ();
5243 #endif /* COLOR_TABLE_SUPPORT */
5245 img->width = width;
5246 img->height = height;
5248 /* Maybe fill in the background field while we have ximg handy. */
5250 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5251 /* Casting avoids a GCC warning. */
5252 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5254 /* Put the image into a pixmap. */
5255 x_put_x_image (f, ximg, img->pixmap, width, height);
5256 x_destroy_x_image (ximg);
5258 /* X and W32 versions did it here, MAC version above. ++kfs
5259 img->width = width;
5260 img->height = height; */
5262 xfree (contents);
5263 return 1;
5267 /***********************************************************************
5269 ***********************************************************************/
5271 #if defined (HAVE_PNG) || defined (HAVE_NS)
5273 /* Function prototypes. */
5275 static bool png_image_p (Lisp_Object object);
5276 static bool png_load (struct frame *f, struct image *img);
5278 /* The symbol `png' identifying images of this type. */
5280 static Lisp_Object Qpng;
5282 /* Indices of image specification fields in png_format, below. */
5284 enum png_keyword_index
5286 PNG_TYPE,
5287 PNG_DATA,
5288 PNG_FILE,
5289 PNG_ASCENT,
5290 PNG_MARGIN,
5291 PNG_RELIEF,
5292 PNG_ALGORITHM,
5293 PNG_HEURISTIC_MASK,
5294 PNG_MASK,
5295 PNG_BACKGROUND,
5296 PNG_LAST
5299 /* Vector of image_keyword structures describing the format
5300 of valid user-defined image specifications. */
5302 static const struct image_keyword png_format[PNG_LAST] =
5304 {":type", IMAGE_SYMBOL_VALUE, 1},
5305 {":data", IMAGE_STRING_VALUE, 0},
5306 {":file", IMAGE_STRING_VALUE, 0},
5307 {":ascent", IMAGE_ASCENT_VALUE, 0},
5308 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
5309 {":relief", IMAGE_INTEGER_VALUE, 0},
5310 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5311 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5312 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5313 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5316 #if defined HAVE_NTGUI && defined WINDOWSNT
5317 static bool init_png_functions (void);
5318 #else
5319 #define init_png_functions NULL
5320 #endif
5322 /* Structure describing the image type `png'. */
5324 static struct image_type png_type =
5326 &Qpng,
5327 png_image_p,
5328 png_load,
5329 x_clear_image,
5330 init_png_functions,
5331 NULL
5334 /* Return true if OBJECT is a valid PNG image specification. */
5336 static bool
5337 png_image_p (Lisp_Object object)
5339 struct image_keyword fmt[PNG_LAST];
5340 memcpy (fmt, png_format, sizeof fmt);
5342 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
5343 return 0;
5345 /* Must specify either the :data or :file keyword. */
5346 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
5349 #endif /* HAVE_PNG || HAVE_NS */
5352 #ifdef HAVE_PNG
5354 #ifdef WINDOWSNT
5355 /* PNG library details. */
5357 DEF_IMGLIB_FN (png_voidp, png_get_io_ptr, (png_structp));
5358 DEF_IMGLIB_FN (int, png_sig_cmp, (png_bytep, png_size_t, png_size_t));
5359 DEF_IMGLIB_FN (png_structp, png_create_read_struct, (png_const_charp, png_voidp,
5360 png_error_ptr, png_error_ptr));
5361 DEF_IMGLIB_FN (png_infop, png_create_info_struct, (png_structp));
5362 DEF_IMGLIB_FN (void, png_destroy_read_struct, (png_structpp, png_infopp, png_infopp));
5363 DEF_IMGLIB_FN (void, png_set_read_fn, (png_structp, png_voidp, png_rw_ptr));
5364 DEF_IMGLIB_FN (void, png_set_sig_bytes, (png_structp, int));
5365 DEF_IMGLIB_FN (void, png_read_info, (png_structp, png_infop));
5366 DEF_IMGLIB_FN (png_uint_32, png_get_IHDR, (png_structp, png_infop,
5367 png_uint_32 *, png_uint_32 *,
5368 int *, int *, int *, int *, int *));
5369 DEF_IMGLIB_FN (png_uint_32, png_get_valid, (png_structp, png_infop, png_uint_32));
5370 DEF_IMGLIB_FN (void, png_set_strip_16, (png_structp));
5371 DEF_IMGLIB_FN (void, png_set_expand, (png_structp));
5372 DEF_IMGLIB_FN (void, png_set_gray_to_rgb, (png_structp));
5373 DEF_IMGLIB_FN (void, png_set_background, (png_structp, png_color_16p,
5374 int, int, double));
5375 DEF_IMGLIB_FN (png_uint_32, png_get_bKGD, (png_structp, png_infop, png_color_16p *));
5376 DEF_IMGLIB_FN (void, png_read_update_info, (png_structp, png_infop));
5377 DEF_IMGLIB_FN (png_byte, png_get_channels, (png_structp, png_infop));
5378 DEF_IMGLIB_FN (png_size_t, png_get_rowbytes, (png_structp, png_infop));
5379 DEF_IMGLIB_FN (void, png_read_image, (png_structp, png_bytepp));
5380 DEF_IMGLIB_FN (void, png_read_end, (png_structp, png_infop));
5381 DEF_IMGLIB_FN (void, png_error, (png_structp, png_const_charp));
5383 #if (PNG_LIBPNG_VER >= 10500)
5384 DEF_IMGLIB_FN (void, png_longjmp, (png_structp, int));
5385 DEF_IMGLIB_FN (jmp_buf *, png_set_longjmp_fn, (png_structp, png_longjmp_ptr, size_t));
5386 #endif /* libpng version >= 1.5 */
5388 static bool
5389 init_png_functions (void)
5391 HMODULE library;
5393 if (!(library = w32_delayed_load (Qpng)))
5394 return 0;
5396 LOAD_IMGLIB_FN (library, png_get_io_ptr);
5397 LOAD_IMGLIB_FN (library, png_sig_cmp);
5398 LOAD_IMGLIB_FN (library, png_create_read_struct);
5399 LOAD_IMGLIB_FN (library, png_create_info_struct);
5400 LOAD_IMGLIB_FN (library, png_destroy_read_struct);
5401 LOAD_IMGLIB_FN (library, png_set_read_fn);
5402 LOAD_IMGLIB_FN (library, png_set_sig_bytes);
5403 LOAD_IMGLIB_FN (library, png_read_info);
5404 LOAD_IMGLIB_FN (library, png_get_IHDR);
5405 LOAD_IMGLIB_FN (library, png_get_valid);
5406 LOAD_IMGLIB_FN (library, png_set_strip_16);
5407 LOAD_IMGLIB_FN (library, png_set_expand);
5408 LOAD_IMGLIB_FN (library, png_set_gray_to_rgb);
5409 LOAD_IMGLIB_FN (library, png_set_background);
5410 LOAD_IMGLIB_FN (library, png_get_bKGD);
5411 LOAD_IMGLIB_FN (library, png_read_update_info);
5412 LOAD_IMGLIB_FN (library, png_get_channels);
5413 LOAD_IMGLIB_FN (library, png_get_rowbytes);
5414 LOAD_IMGLIB_FN (library, png_read_image);
5415 LOAD_IMGLIB_FN (library, png_read_end);
5416 LOAD_IMGLIB_FN (library, png_error);
5418 #if (PNG_LIBPNG_VER >= 10500)
5419 LOAD_IMGLIB_FN (library, png_longjmp);
5420 LOAD_IMGLIB_FN (library, png_set_longjmp_fn);
5421 #endif /* libpng version >= 1.5 */
5423 return 1;
5425 #else
5427 #define fn_png_get_io_ptr png_get_io_ptr
5428 #define fn_png_sig_cmp png_sig_cmp
5429 #define fn_png_create_read_struct png_create_read_struct
5430 #define fn_png_create_info_struct png_create_info_struct
5431 #define fn_png_destroy_read_struct png_destroy_read_struct
5432 #define fn_png_set_read_fn png_set_read_fn
5433 #define fn_png_set_sig_bytes png_set_sig_bytes
5434 #define fn_png_read_info png_read_info
5435 #define fn_png_get_IHDR png_get_IHDR
5436 #define fn_png_get_valid png_get_valid
5437 #define fn_png_set_strip_16 png_set_strip_16
5438 #define fn_png_set_expand png_set_expand
5439 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5440 #define fn_png_set_background png_set_background
5441 #define fn_png_get_bKGD png_get_bKGD
5442 #define fn_png_read_update_info png_read_update_info
5443 #define fn_png_get_channels png_get_channels
5444 #define fn_png_get_rowbytes png_get_rowbytes
5445 #define fn_png_read_image png_read_image
5446 #define fn_png_read_end png_read_end
5447 #define fn_png_error png_error
5449 #if (PNG_LIBPNG_VER >= 10500)
5450 #define fn_png_longjmp png_longjmp
5451 #define fn_png_set_longjmp_fn png_set_longjmp_fn
5452 #endif /* libpng version >= 1.5 */
5454 #endif /* WINDOWSNT */
5456 /* Possibly inefficient/inexact substitutes for _setjmp and _longjmp.
5457 Do not use sys_setjmp, as PNG supports only jmp_buf. The _longjmp
5458 substitute may munge the signal mask, but that should be OK here.
5459 MinGW (MS-Windows) uses _setjmp and defines setjmp to _setjmp in
5460 the system header setjmp.h; don't mess up that. */
5461 #ifndef HAVE__SETJMP
5462 # define _setjmp(j) setjmp (j)
5463 # define _longjmp longjmp
5464 #endif
5466 #if (PNG_LIBPNG_VER < 10500)
5467 #define PNG_LONGJMP(ptr) (_longjmp ((ptr)->jmpbuf, 1))
5468 #define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5469 #else
5470 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5471 #define PNG_LONGJMP(ptr) (fn_png_longjmp ((ptr), 1))
5472 #define PNG_JMPBUF(ptr) \
5473 (*fn_png_set_longjmp_fn ((ptr), _longjmp, sizeof (jmp_buf)))
5474 #endif
5476 /* Error and warning handlers installed when the PNG library
5477 is initialized. */
5479 static _Noreturn void
5480 my_png_error (png_struct *png_ptr, const char *msg)
5482 eassert (png_ptr != NULL);
5483 /* Avoid compiler warning about deprecated direct access to
5484 png_ptr's fields in libpng versions 1.4.x. */
5485 image_error ("PNG error: %s", build_string (msg), Qnil);
5486 PNG_LONGJMP (png_ptr);
5490 static void
5491 my_png_warning (png_struct *png_ptr, const char *msg)
5493 eassert (png_ptr != NULL);
5494 image_error ("PNG warning: %s", build_string (msg), Qnil);
5497 /* Memory source for PNG decoding. */
5499 struct png_memory_storage
5501 unsigned char *bytes; /* The data */
5502 ptrdiff_t len; /* How big is it? */
5503 ptrdiff_t index; /* Where are we? */
5507 /* Function set as reader function when reading PNG image from memory.
5508 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5509 bytes from the input to DATA. */
5511 static void
5512 png_read_from_memory (png_structp png_ptr, png_bytep data, png_size_t length)
5514 struct png_memory_storage *tbr
5515 = (struct png_memory_storage *) fn_png_get_io_ptr (png_ptr);
5517 if (length > tbr->len - tbr->index)
5518 fn_png_error (png_ptr, "Read error");
5520 memcpy (data, tbr->bytes + tbr->index, length);
5521 tbr->index = tbr->index + length;
5525 /* Function set as reader function when reading PNG image from a file.
5526 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5527 bytes from the input to DATA. */
5529 static void
5530 png_read_from_file (png_structp png_ptr, png_bytep data, png_size_t length)
5532 FILE *fp = (FILE *) fn_png_get_io_ptr (png_ptr);
5534 if (fread (data, 1, length, fp) < length)
5535 fn_png_error (png_ptr, "Read error");
5539 /* Load PNG image IMG for use on frame F. Value is true if
5540 successful. */
5542 struct png_load_context
5544 /* These are members so that longjmp doesn't munge local variables. */
5545 png_struct *png_ptr;
5546 png_info *info_ptr;
5547 png_info *end_info;
5548 FILE *fp;
5549 png_byte *pixels;
5550 png_byte **rows;
5553 static bool
5554 png_load_body (struct frame *f, struct image *img, struct png_load_context *c)
5556 Lisp_Object file, specified_file;
5557 Lisp_Object specified_data;
5558 int x, y;
5559 ptrdiff_t i;
5560 XImagePtr ximg, mask_img = NULL;
5561 png_struct *png_ptr;
5562 png_info *info_ptr = NULL, *end_info = NULL;
5563 FILE *fp = NULL;
5564 png_byte sig[8];
5565 png_byte *pixels = NULL;
5566 png_byte **rows = NULL;
5567 png_uint_32 width, height;
5568 int bit_depth, color_type, interlace_type;
5569 png_byte channels;
5570 png_uint_32 row_bytes;
5571 bool transparent_p;
5572 struct png_memory_storage tbr; /* Data to be read */
5574 /* Find out what file to load. */
5575 specified_file = image_spec_value (img->spec, QCfile, NULL);
5576 specified_data = image_spec_value (img->spec, QCdata, NULL);
5578 if (NILP (specified_data))
5580 file = x_find_image_file (specified_file);
5581 if (!STRINGP (file))
5583 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5584 return 0;
5587 /* Open the image file. */
5588 fp = fopen (SSDATA (file), "rb");
5589 if (!fp)
5591 image_error ("Cannot open image file `%s'", file, Qnil);
5592 return 0;
5595 /* Check PNG signature. */
5596 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
5597 || fn_png_sig_cmp (sig, 0, sizeof sig))
5599 image_error ("Not a PNG file: `%s'", file, Qnil);
5600 fclose (fp);
5601 return 0;
5604 else
5606 if (!STRINGP (specified_data))
5608 image_error ("Invalid image data `%s'", specified_data, Qnil);
5609 return 0;
5612 /* Read from memory. */
5613 tbr.bytes = SDATA (specified_data);
5614 tbr.len = SBYTES (specified_data);
5615 tbr.index = 0;
5617 /* Check PNG signature. */
5618 if (tbr.len < sizeof sig
5619 || fn_png_sig_cmp (tbr.bytes, 0, sizeof sig))
5621 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
5622 return 0;
5625 /* Need to skip past the signature. */
5626 tbr.bytes += sizeof (sig);
5629 /* Initialize read and info structs for PNG lib. */
5630 png_ptr = fn_png_create_read_struct (PNG_LIBPNG_VER_STRING,
5631 NULL, my_png_error,
5632 my_png_warning);
5633 if (png_ptr)
5635 info_ptr = fn_png_create_info_struct (png_ptr);
5636 end_info = fn_png_create_info_struct (png_ptr);
5639 c->png_ptr = png_ptr;
5640 c->info_ptr = info_ptr;
5641 c->end_info = end_info;
5642 c->fp = fp;
5643 c->pixels = pixels;
5644 c->rows = rows;
5646 if (! (info_ptr && end_info))
5648 fn_png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
5649 png_ptr = 0;
5651 if (! png_ptr)
5653 if (fp) fclose (fp);
5654 return 0;
5657 /* Set error jump-back. We come back here when the PNG library
5658 detects an error. */
5659 if (_setjmp (PNG_JMPBUF (png_ptr)))
5661 error:
5662 if (c->png_ptr)
5663 fn_png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
5664 xfree (c->pixels);
5665 xfree (c->rows);
5666 if (c->fp)
5667 fclose (c->fp);
5668 return 0;
5671 /* Silence a bogus diagnostic; see GCC bug 54561. */
5672 IF_LINT (fp = c->fp);
5674 /* Read image info. */
5675 if (!NILP (specified_data))
5676 fn_png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
5677 else
5678 fn_png_set_read_fn (png_ptr, (void *) fp, png_read_from_file);
5680 fn_png_set_sig_bytes (png_ptr, sizeof sig);
5681 fn_png_read_info (png_ptr, info_ptr);
5682 fn_png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
5683 &interlace_type, NULL, NULL);
5685 if (! (width <= INT_MAX && height <= INT_MAX
5686 && check_image_size (f, width, height)))
5688 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5689 goto error;
5692 /* Create the X image and pixmap now, so that the work below can be
5693 omitted if the image is too large for X. */
5694 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
5695 &img->pixmap))
5696 goto error;
5698 /* If image contains simply transparency data, we prefer to
5699 construct a clipping mask. */
5700 if (fn_png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
5701 transparent_p = 1;
5702 else
5703 transparent_p = 0;
5705 /* This function is easier to write if we only have to handle
5706 one data format: RGB or RGBA with 8 bits per channel. Let's
5707 transform other formats into that format. */
5709 /* Strip more than 8 bits per channel. */
5710 if (bit_depth == 16)
5711 fn_png_set_strip_16 (png_ptr);
5713 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5714 if available. */
5715 fn_png_set_expand (png_ptr);
5717 /* Convert grayscale images to RGB. */
5718 if (color_type == PNG_COLOR_TYPE_GRAY
5719 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
5720 fn_png_set_gray_to_rgb (png_ptr);
5722 /* Handle alpha channel by combining the image with a background
5723 color. Do this only if a real alpha channel is supplied. For
5724 simple transparency, we prefer a clipping mask. */
5725 if (!transparent_p)
5727 /* png_color_16 *image_bg; */
5728 Lisp_Object specified_bg
5729 = image_spec_value (img->spec, QCbackground, NULL);
5730 int shift = (bit_depth == 16) ? 0 : 8;
5732 if (STRINGP (specified_bg))
5733 /* The user specified `:background', use that. */
5735 XColor color;
5736 if (x_defined_color (f, SSDATA (specified_bg), &color, 0))
5738 png_color_16 user_bg;
5740 memset (&user_bg, 0, sizeof user_bg);
5741 user_bg.red = color.red >> shift;
5742 user_bg.green = color.green >> shift;
5743 user_bg.blue = color.blue >> shift;
5745 fn_png_set_background (png_ptr, &user_bg,
5746 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5749 else
5751 /* We use the current frame background, ignoring any default
5752 background color set by the image. */
5753 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5754 XColor color;
5755 png_color_16 frame_background;
5757 color.pixel = FRAME_BACKGROUND_PIXEL (f);
5758 x_query_color (f, &color);
5760 memset (&frame_background, 0, sizeof frame_background);
5761 frame_background.red = color.red >> shift;
5762 frame_background.green = color.green >> shift;
5763 frame_background.blue = color.blue >> shift;
5764 #endif /* HAVE_X_WINDOWS */
5766 fn_png_set_background (png_ptr, &frame_background,
5767 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5771 /* Update info structure. */
5772 fn_png_read_update_info (png_ptr, info_ptr);
5774 /* Get number of channels. Valid values are 1 for grayscale images
5775 and images with a palette, 2 for grayscale images with transparency
5776 information (alpha channel), 3 for RGB images, and 4 for RGB
5777 images with alpha channel, i.e. RGBA. If conversions above were
5778 sufficient we should only have 3 or 4 channels here. */
5779 channels = fn_png_get_channels (png_ptr, info_ptr);
5780 eassert (channels == 3 || channels == 4);
5782 /* Number of bytes needed for one row of the image. */
5783 row_bytes = fn_png_get_rowbytes (png_ptr, info_ptr);
5785 /* Allocate memory for the image. */
5786 if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *rows < height
5787 || min (PTRDIFF_MAX, SIZE_MAX) / sizeof *pixels / height < row_bytes)
5788 memory_full (SIZE_MAX);
5789 c->pixels = pixels = xmalloc (sizeof *pixels * row_bytes * height);
5790 c->rows = rows = xmalloc (height * sizeof *rows);
5791 for (i = 0; i < height; ++i)
5792 rows[i] = pixels + i * row_bytes;
5794 /* Read the entire image. */
5795 fn_png_read_image (png_ptr, rows);
5796 fn_png_read_end (png_ptr, info_ptr);
5797 if (fp)
5799 fclose (fp);
5800 c->fp = NULL;
5803 /* Create an image and pixmap serving as mask if the PNG image
5804 contains an alpha channel. */
5805 if (channels == 4
5806 && !transparent_p
5807 && !x_create_x_image_and_pixmap (f, width, height, 1,
5808 &mask_img, &img->mask))
5810 x_destroy_x_image (ximg);
5811 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
5812 img->pixmap = NO_PIXMAP;
5813 goto error;
5816 /* Fill the X image and mask from PNG data. */
5817 init_color_table ();
5819 for (y = 0; y < height; ++y)
5821 png_byte *p = rows[y];
5823 for (x = 0; x < width; ++x)
5825 int r, g, b;
5827 r = *p++ << 8;
5828 g = *p++ << 8;
5829 b = *p++ << 8;
5830 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5831 /* An alpha channel, aka mask channel, associates variable
5832 transparency with an image. Where other image formats
5833 support binary transparency---fully transparent or fully
5834 opaque---PNG allows up to 254 levels of partial transparency.
5835 The PNG library implements partial transparency by combining
5836 the image with a specified background color.
5838 I'm not sure how to handle this here nicely: because the
5839 background on which the image is displayed may change, for
5840 real alpha channel support, it would be necessary to create
5841 a new image for each possible background.
5843 What I'm doing now is that a mask is created if we have
5844 boolean transparency information. Otherwise I'm using
5845 the frame's background color to combine the image with. */
5847 if (channels == 4)
5849 if (mask_img)
5850 XPutPixel (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN);
5851 ++p;
5856 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5857 /* Set IMG's background color from the PNG image, unless the user
5858 overrode it. */
5860 png_color_16 *bg;
5861 if (fn_png_get_bKGD (png_ptr, info_ptr, &bg))
5863 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
5864 img->background_valid = 1;
5868 #ifdef COLOR_TABLE_SUPPORT
5869 /* Remember colors allocated for this image. */
5870 img->colors = colors_in_color_table (&img->ncolors);
5871 free_color_table ();
5872 #endif /* COLOR_TABLE_SUPPORT */
5874 /* Clean up. */
5875 fn_png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info);
5876 xfree (rows);
5877 xfree (pixels);
5879 img->width = width;
5880 img->height = height;
5882 /* Maybe fill in the background field while we have ximg handy.
5883 Casting avoids a GCC warning. */
5884 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5886 /* Put the image into the pixmap, then free the X image and its buffer. */
5887 x_put_x_image (f, ximg, img->pixmap, width, height);
5888 x_destroy_x_image (ximg);
5890 /* Same for the mask. */
5891 if (mask_img)
5893 /* Fill in the background_transparent field while we have the
5894 mask handy. Casting avoids a GCC warning. */
5895 image_background_transparent (img, f, (XImagePtr_or_DC)mask_img);
5897 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
5898 x_destroy_x_image (mask_img);
5901 return 1;
5904 static bool
5905 png_load (struct frame *f, struct image *img)
5907 struct png_load_context c;
5908 return png_load_body (f, img, &c);
5911 #else /* HAVE_PNG */
5913 #ifdef HAVE_NS
5914 static bool
5915 png_load (struct frame *f, struct image *img)
5917 return ns_load_image (f, img,
5918 image_spec_value (img->spec, QCfile, NULL),
5919 image_spec_value (img->spec, QCdata, NULL));
5921 #endif /* HAVE_NS */
5924 #endif /* !HAVE_PNG */
5928 /***********************************************************************
5929 JPEG
5930 ***********************************************************************/
5932 #if defined (HAVE_JPEG) || defined (HAVE_NS)
5934 static bool jpeg_image_p (Lisp_Object object);
5935 static bool jpeg_load (struct frame *f, struct image *img);
5937 /* The symbol `jpeg' identifying images of this type. */
5939 static Lisp_Object Qjpeg;
5941 /* Indices of image specification fields in gs_format, below. */
5943 enum jpeg_keyword_index
5945 JPEG_TYPE,
5946 JPEG_DATA,
5947 JPEG_FILE,
5948 JPEG_ASCENT,
5949 JPEG_MARGIN,
5950 JPEG_RELIEF,
5951 JPEG_ALGORITHM,
5952 JPEG_HEURISTIC_MASK,
5953 JPEG_MASK,
5954 JPEG_BACKGROUND,
5955 JPEG_LAST
5958 /* Vector of image_keyword structures describing the format
5959 of valid user-defined image specifications. */
5961 static const struct image_keyword jpeg_format[JPEG_LAST] =
5963 {":type", IMAGE_SYMBOL_VALUE, 1},
5964 {":data", IMAGE_STRING_VALUE, 0},
5965 {":file", IMAGE_STRING_VALUE, 0},
5966 {":ascent", IMAGE_ASCENT_VALUE, 0},
5967 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
5968 {":relief", IMAGE_INTEGER_VALUE, 0},
5969 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5970 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5971 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5972 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5975 #if defined HAVE_NTGUI && defined WINDOWSNT
5976 static bool init_jpeg_functions (void);
5977 #else
5978 #define init_jpeg_functions NULL
5979 #endif
5981 /* Structure describing the image type `jpeg'. */
5983 static struct image_type jpeg_type =
5985 &Qjpeg,
5986 jpeg_image_p,
5987 jpeg_load,
5988 x_clear_image,
5989 init_jpeg_functions,
5990 NULL
5993 /* Return true if OBJECT is a valid JPEG image specification. */
5995 static bool
5996 jpeg_image_p (Lisp_Object object)
5998 struct image_keyword fmt[JPEG_LAST];
6000 memcpy (fmt, jpeg_format, sizeof fmt);
6002 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
6003 return 0;
6005 /* Must specify either the :data or :file keyword. */
6006 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
6009 #endif /* HAVE_JPEG || HAVE_NS */
6011 #ifdef HAVE_JPEG
6013 /* Work around a warning about HAVE_STDLIB_H being redefined in
6014 jconfig.h. */
6015 #ifdef HAVE_STDLIB_H
6016 #undef HAVE_STDLIB_H
6017 #endif /* HAVE_STLIB_H */
6019 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6020 /* In older releases of the jpeg library, jpeglib.h will define boolean
6021 differently depending on __WIN32__, so make sure it is defined. */
6022 #define __WIN32__ 1
6023 #endif
6025 /* rpcndr.h (via windows.h) and jpeglib.h both define boolean types.
6026 Some versions of jpeglib try to detect whether rpcndr.h is loaded,
6027 using the Windows boolean type instead of the jpeglib boolean type
6028 if so. Cygwin jpeglib, however, doesn't try to detect whether its
6029 headers are included along with windows.h, so under Cygwin, jpeglib
6030 attempts to define a conflicting boolean type. Worse, forcing
6031 Cygwin jpeglib headers to use the Windows boolean type doesn't work
6032 because it created an ABI incompatibility between the
6033 already-compiled jpeg library and the header interface definition.
6035 The best we can do is to define jpeglib's boolean type to a
6036 different name. This name, jpeg_boolean, remains in effect through
6037 the rest of image.c.
6039 #if defined CYGWIN && defined HAVE_NTGUI
6040 #define boolean jpeg_boolean
6041 #endif
6042 #include <jpeglib.h>
6043 #include <jerror.h>
6045 #ifdef WINDOWSNT
6047 /* JPEG library details. */
6048 DEF_IMGLIB_FN (void, jpeg_CreateDecompress, (j_decompress_ptr, int, size_t));
6049 DEF_IMGLIB_FN (boolean, jpeg_start_decompress, (j_decompress_ptr));
6050 DEF_IMGLIB_FN (boolean, jpeg_finish_decompress, (j_decompress_ptr));
6051 DEF_IMGLIB_FN (void, jpeg_destroy_decompress, (j_decompress_ptr));
6052 DEF_IMGLIB_FN (int, jpeg_read_header, (j_decompress_ptr, boolean));
6053 DEF_IMGLIB_FN (JDIMENSION, jpeg_read_scanlines, (j_decompress_ptr, JSAMPARRAY, JDIMENSION));
6054 DEF_IMGLIB_FN (struct jpeg_error_mgr *, jpeg_std_error, (struct jpeg_error_mgr *));
6055 DEF_IMGLIB_FN (boolean, jpeg_resync_to_restart, (j_decompress_ptr, int));
6057 static bool
6058 init_jpeg_functions (void)
6060 HMODULE library;
6062 if (!(library = w32_delayed_load (Qjpeg)))
6063 return 0;
6065 LOAD_IMGLIB_FN (library, jpeg_finish_decompress);
6066 LOAD_IMGLIB_FN (library, jpeg_read_scanlines);
6067 LOAD_IMGLIB_FN (library, jpeg_start_decompress);
6068 LOAD_IMGLIB_FN (library, jpeg_read_header);
6069 LOAD_IMGLIB_FN (library, jpeg_CreateDecompress);
6070 LOAD_IMGLIB_FN (library, jpeg_destroy_decompress);
6071 LOAD_IMGLIB_FN (library, jpeg_std_error);
6072 LOAD_IMGLIB_FN (library, jpeg_resync_to_restart);
6073 return 1;
6076 /* Wrapper since we can't directly assign the function pointer
6077 to another function pointer that was declared more completely easily. */
6078 static boolean
6079 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo, int desired)
6081 return fn_jpeg_resync_to_restart (cinfo, desired);
6084 #else
6086 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress (a)
6087 #define fn_jpeg_start_decompress jpeg_start_decompress
6088 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6089 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6090 #define fn_jpeg_read_header jpeg_read_header
6091 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6092 #define fn_jpeg_std_error jpeg_std_error
6093 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6095 #endif /* WINDOWSNT */
6097 struct my_jpeg_error_mgr
6099 struct jpeg_error_mgr pub;
6100 sys_jmp_buf setjmp_buffer;
6102 /* The remaining members are so that longjmp doesn't munge local
6103 variables. */
6104 struct jpeg_decompress_struct cinfo;
6105 enum
6107 MY_JPEG_ERROR_EXIT,
6108 MY_JPEG_INVALID_IMAGE_SIZE,
6109 MY_JPEG_CANNOT_CREATE_X
6110 } failure_code;
6111 #ifdef lint
6112 FILE *fp;
6113 #endif
6117 static _Noreturn void
6118 my_error_exit (j_common_ptr cinfo)
6120 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
6121 mgr->failure_code = MY_JPEG_ERROR_EXIT;
6122 sys_longjmp (mgr->setjmp_buffer, 1);
6126 /* Init source method for JPEG data source manager. Called by
6127 jpeg_read_header() before any data is actually read. See
6128 libjpeg.doc from the JPEG lib distribution. */
6130 static void
6131 our_common_init_source (j_decompress_ptr cinfo)
6136 /* Method to terminate data source. Called by
6137 jpeg_finish_decompress() after all data has been processed. */
6139 static void
6140 our_common_term_source (j_decompress_ptr cinfo)
6145 /* Fill input buffer method for JPEG data source manager. Called
6146 whenever more data is needed. We read the whole image in one step,
6147 so this only adds a fake end of input marker at the end. */
6149 static JOCTET our_memory_buffer[2];
6151 static boolean
6152 our_memory_fill_input_buffer (j_decompress_ptr cinfo)
6154 /* Insert a fake EOI marker. */
6155 struct jpeg_source_mgr *src = cinfo->src;
6157 our_memory_buffer[0] = (JOCTET) 0xFF;
6158 our_memory_buffer[1] = (JOCTET) JPEG_EOI;
6160 src->next_input_byte = our_memory_buffer;
6161 src->bytes_in_buffer = 2;
6162 return 1;
6166 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6167 is the JPEG data source manager. */
6169 static void
6170 our_memory_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6172 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
6174 if (src)
6176 if (num_bytes > src->bytes_in_buffer)
6177 ERREXIT (cinfo, JERR_INPUT_EOF);
6179 src->bytes_in_buffer -= num_bytes;
6180 src->next_input_byte += num_bytes;
6185 /* Set up the JPEG lib for reading an image from DATA which contains
6186 LEN bytes. CINFO is the decompression info structure created for
6187 reading the image. */
6189 static void
6190 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, ptrdiff_t len)
6192 struct jpeg_source_mgr *src;
6194 if (cinfo->src == NULL)
6196 /* First time for this JPEG object? */
6197 cinfo->src = (struct jpeg_source_mgr *)
6198 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6199 sizeof (struct jpeg_source_mgr));
6200 src = (struct jpeg_source_mgr *) cinfo->src;
6201 src->next_input_byte = data;
6204 src = (struct jpeg_source_mgr *) cinfo->src;
6205 src->init_source = our_common_init_source;
6206 src->fill_input_buffer = our_memory_fill_input_buffer;
6207 src->skip_input_data = our_memory_skip_input_data;
6208 src->resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6209 src->term_source = our_common_term_source;
6210 src->bytes_in_buffer = len;
6211 src->next_input_byte = data;
6215 struct jpeg_stdio_mgr
6217 struct jpeg_source_mgr mgr;
6218 boolean finished;
6219 FILE *file;
6220 JOCTET *buffer;
6224 /* Size of buffer to read JPEG from file.
6225 Not too big, as we want to use alloc_small. */
6226 #define JPEG_STDIO_BUFFER_SIZE 8192
6229 /* Fill input buffer method for JPEG data source manager. Called
6230 whenever more data is needed. The data is read from a FILE *. */
6232 static boolean
6233 our_stdio_fill_input_buffer (j_decompress_ptr cinfo)
6235 struct jpeg_stdio_mgr *src;
6237 src = (struct jpeg_stdio_mgr *) cinfo->src;
6238 if (!src->finished)
6240 ptrdiff_t bytes;
6242 bytes = fread (src->buffer, 1, JPEG_STDIO_BUFFER_SIZE, src->file);
6243 if (bytes > 0)
6244 src->mgr.bytes_in_buffer = bytes;
6245 else
6247 WARNMS (cinfo, JWRN_JPEG_EOF);
6248 src->finished = 1;
6249 src->buffer[0] = (JOCTET) 0xFF;
6250 src->buffer[1] = (JOCTET) JPEG_EOI;
6251 src->mgr.bytes_in_buffer = 2;
6253 src->mgr.next_input_byte = src->buffer;
6256 return 1;
6260 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6261 is the JPEG data source manager. */
6263 static void
6264 our_stdio_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6266 struct jpeg_stdio_mgr *src;
6267 src = (struct jpeg_stdio_mgr *) cinfo->src;
6269 while (num_bytes > 0 && !src->finished)
6271 if (num_bytes <= src->mgr.bytes_in_buffer)
6273 src->mgr.bytes_in_buffer -= num_bytes;
6274 src->mgr.next_input_byte += num_bytes;
6275 break;
6277 else
6279 num_bytes -= src->mgr.bytes_in_buffer;
6280 src->mgr.bytes_in_buffer = 0;
6281 src->mgr.next_input_byte = NULL;
6283 our_stdio_fill_input_buffer (cinfo);
6289 /* Set up the JPEG lib for reading an image from a FILE *.
6290 CINFO is the decompression info structure created for
6291 reading the image. */
6293 static void
6294 jpeg_file_src (j_decompress_ptr cinfo, FILE *fp)
6296 struct jpeg_stdio_mgr *src;
6298 if (cinfo->src != NULL)
6299 src = (struct jpeg_stdio_mgr *) cinfo->src;
6300 else
6302 /* First time for this JPEG object? */
6303 cinfo->src = (struct jpeg_source_mgr *)
6304 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6305 sizeof (struct jpeg_stdio_mgr));
6306 src = (struct jpeg_stdio_mgr *) cinfo->src;
6307 src->buffer = (JOCTET *)
6308 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6309 JPEG_STDIO_BUFFER_SIZE);
6312 src->file = fp;
6313 src->finished = 0;
6314 src->mgr.init_source = our_common_init_source;
6315 src->mgr.fill_input_buffer = our_stdio_fill_input_buffer;
6316 src->mgr.skip_input_data = our_stdio_skip_input_data;
6317 src->mgr.resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6318 src->mgr.term_source = our_common_term_source;
6319 src->mgr.bytes_in_buffer = 0;
6320 src->mgr.next_input_byte = NULL;
6324 /* Load image IMG for use on frame F. Patterned after example.c
6325 from the JPEG lib. */
6327 static bool
6328 jpeg_load_body (struct frame *f, struct image *img,
6329 struct my_jpeg_error_mgr *mgr)
6331 Lisp_Object file, specified_file;
6332 Lisp_Object specified_data;
6333 FILE *fp = NULL;
6334 JSAMPARRAY buffer;
6335 int row_stride, x, y;
6336 XImagePtr ximg = NULL;
6337 unsigned long *colors;
6338 int width, height;
6340 /* Open the JPEG file. */
6341 specified_file = image_spec_value (img->spec, QCfile, NULL);
6342 specified_data = image_spec_value (img->spec, QCdata, NULL);
6344 if (NILP (specified_data))
6346 file = x_find_image_file (specified_file);
6347 if (!STRINGP (file))
6349 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6350 return 0;
6353 fp = fopen (SSDATA (file), "rb");
6354 if (fp == NULL)
6356 image_error ("Cannot open `%s'", file, Qnil);
6357 return 0;
6360 else if (!STRINGP (specified_data))
6362 image_error ("Invalid image data `%s'", specified_data, Qnil);
6363 return 0;
6366 IF_LINT (mgr->fp = fp);
6368 /* Customize libjpeg's error handling to call my_error_exit when an
6369 error is detected. This function will perform a longjmp. */
6370 mgr->cinfo.err = fn_jpeg_std_error (&mgr->pub);
6371 mgr->pub.error_exit = my_error_exit;
6372 if (sys_setjmp (mgr->setjmp_buffer))
6374 switch (mgr->failure_code)
6376 case MY_JPEG_ERROR_EXIT:
6378 char buf[JMSG_LENGTH_MAX];
6379 mgr->cinfo.err->format_message ((j_common_ptr) &mgr->cinfo, buf);
6380 image_error ("Error reading JPEG image `%s': %s", img->spec,
6381 build_string (buf));
6382 break;
6385 case MY_JPEG_INVALID_IMAGE_SIZE:
6386 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
6387 break;
6389 case MY_JPEG_CANNOT_CREATE_X:
6390 break;
6393 /* Close the input file and destroy the JPEG object. */
6394 if (fp)
6395 fclose (fp);
6396 fn_jpeg_destroy_decompress (&mgr->cinfo);
6398 /* If we already have an XImage, free that. */
6399 x_destroy_x_image (ximg);
6401 /* Free pixmap and colors. */
6402 x_clear_image (f, img);
6403 return 0;
6406 /* Silence a bogus diagnostic; see GCC bug 54561. */
6407 IF_LINT (fp = mgr->fp);
6409 /* Create the JPEG decompression object. Let it read from fp.
6410 Read the JPEG image header. */
6411 fn_jpeg_CreateDecompress (&mgr->cinfo, JPEG_LIB_VERSION, sizeof *&mgr->cinfo);
6413 if (NILP (specified_data))
6414 jpeg_file_src (&mgr->cinfo, fp);
6415 else
6416 jpeg_memory_src (&mgr->cinfo, SDATA (specified_data),
6417 SBYTES (specified_data));
6419 fn_jpeg_read_header (&mgr->cinfo, 1);
6421 /* Customize decompression so that color quantization will be used.
6422 Start decompression. */
6423 mgr->cinfo.quantize_colors = 1;
6424 fn_jpeg_start_decompress (&mgr->cinfo);
6425 width = img->width = mgr->cinfo.output_width;
6426 height = img->height = mgr->cinfo.output_height;
6428 if (!check_image_size (f, width, height))
6430 mgr->failure_code = MY_JPEG_INVALID_IMAGE_SIZE;
6431 sys_longjmp (mgr->setjmp_buffer, 1);
6434 /* Create X image and pixmap. */
6435 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
6437 mgr->failure_code = MY_JPEG_CANNOT_CREATE_X;
6438 sys_longjmp (mgr->setjmp_buffer, 1);
6441 /* Allocate colors. When color quantization is used,
6442 mgr->cinfo.actual_number_of_colors has been set with the number of
6443 colors generated, and mgr->cinfo.colormap is a two-dimensional array
6444 of color indices in the range 0..mgr->cinfo.actual_number_of_colors.
6445 No more than 255 colors will be generated. */
6447 int i, ir, ig, ib;
6449 if (mgr->cinfo.out_color_components > 2)
6450 ir = 0, ig = 1, ib = 2;
6451 else if (mgr->cinfo.out_color_components > 1)
6452 ir = 0, ig = 1, ib = 0;
6453 else
6454 ir = 0, ig = 0, ib = 0;
6456 /* Use the color table mechanism because it handles colors that
6457 cannot be allocated nicely. Such colors will be replaced with
6458 a default color, and we don't have to care about which colors
6459 can be freed safely, and which can't. */
6460 init_color_table ();
6461 colors = alloca (mgr->cinfo.actual_number_of_colors * sizeof *colors);
6463 for (i = 0; i < mgr->cinfo.actual_number_of_colors; ++i)
6465 /* Multiply RGB values with 255 because X expects RGB values
6466 in the range 0..0xffff. */
6467 int r = mgr->cinfo.colormap[ir][i] << 8;
6468 int g = mgr->cinfo.colormap[ig][i] << 8;
6469 int b = mgr->cinfo.colormap[ib][i] << 8;
6470 colors[i] = lookup_rgb_color (f, r, g, b);
6473 #ifdef COLOR_TABLE_SUPPORT
6474 /* Remember those colors actually allocated. */
6475 img->colors = colors_in_color_table (&img->ncolors);
6476 free_color_table ();
6477 #endif /* COLOR_TABLE_SUPPORT */
6480 /* Read pixels. */
6481 row_stride = width * mgr->cinfo.output_components;
6482 buffer = mgr->cinfo.mem->alloc_sarray ((j_common_ptr) &mgr->cinfo,
6483 JPOOL_IMAGE, row_stride, 1);
6484 for (y = 0; y < height; ++y)
6486 fn_jpeg_read_scanlines (&mgr->cinfo, buffer, 1);
6487 for (x = 0; x < mgr->cinfo.output_width; ++x)
6488 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
6491 /* Clean up. */
6492 fn_jpeg_finish_decompress (&mgr->cinfo);
6493 fn_jpeg_destroy_decompress (&mgr->cinfo);
6494 if (fp)
6495 fclose (fp);
6497 /* Maybe fill in the background field while we have ximg handy. */
6498 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6499 /* Casting avoids a GCC warning. */
6500 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6502 /* Put the image into the pixmap. */
6503 x_put_x_image (f, ximg, img->pixmap, width, height);
6504 x_destroy_x_image (ximg);
6505 return 1;
6508 static bool
6509 jpeg_load (struct frame *f, struct image *img)
6511 struct my_jpeg_error_mgr mgr;
6512 return jpeg_load_body (f, img, &mgr);
6515 #else /* HAVE_JPEG */
6517 #ifdef HAVE_NS
6518 static bool
6519 jpeg_load (struct frame *f, struct image *img)
6521 return ns_load_image (f, img,
6522 image_spec_value (img->spec, QCfile, NULL),
6523 image_spec_value (img->spec, QCdata, NULL));
6525 #endif /* HAVE_NS */
6527 #endif /* !HAVE_JPEG */
6531 /***********************************************************************
6532 TIFF
6533 ***********************************************************************/
6535 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6537 static bool tiff_image_p (Lisp_Object object);
6538 static bool tiff_load (struct frame *f, struct image *img);
6540 /* The symbol `tiff' identifying images of this type. */
6542 static Lisp_Object Qtiff;
6544 /* Indices of image specification fields in tiff_format, below. */
6546 enum tiff_keyword_index
6548 TIFF_TYPE,
6549 TIFF_DATA,
6550 TIFF_FILE,
6551 TIFF_ASCENT,
6552 TIFF_MARGIN,
6553 TIFF_RELIEF,
6554 TIFF_ALGORITHM,
6555 TIFF_HEURISTIC_MASK,
6556 TIFF_MASK,
6557 TIFF_BACKGROUND,
6558 TIFF_INDEX,
6559 TIFF_LAST
6562 /* Vector of image_keyword structures describing the format
6563 of valid user-defined image specifications. */
6565 static const struct image_keyword tiff_format[TIFF_LAST] =
6567 {":type", IMAGE_SYMBOL_VALUE, 1},
6568 {":data", IMAGE_STRING_VALUE, 0},
6569 {":file", IMAGE_STRING_VALUE, 0},
6570 {":ascent", IMAGE_ASCENT_VALUE, 0},
6571 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
6572 {":relief", IMAGE_INTEGER_VALUE, 0},
6573 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6574 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6575 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6576 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
6577 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
6580 #if defined HAVE_NTGUI && defined WINDOWSNT
6581 static bool init_tiff_functions (void);
6582 #else
6583 #define init_tiff_functions NULL
6584 #endif
6586 /* Structure describing the image type `tiff'. */
6588 static struct image_type tiff_type =
6590 &Qtiff,
6591 tiff_image_p,
6592 tiff_load,
6593 x_clear_image,
6594 init_tiff_functions,
6595 NULL
6598 /* Return true if OBJECT is a valid TIFF image specification. */
6600 static bool
6601 tiff_image_p (Lisp_Object object)
6603 struct image_keyword fmt[TIFF_LAST];
6604 memcpy (fmt, tiff_format, sizeof fmt);
6606 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
6607 return 0;
6609 /* Must specify either the :data or :file keyword. */
6610 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
6613 #endif /* HAVE_TIFF || HAVE_NS */
6615 #ifdef HAVE_TIFF
6617 #include <tiffio.h>
6619 #ifdef WINDOWSNT
6621 /* TIFF library details. */
6622 DEF_IMGLIB_FN (TIFFErrorHandler, TIFFSetErrorHandler, (TIFFErrorHandler));
6623 DEF_IMGLIB_FN (TIFFErrorHandler, TIFFSetWarningHandler, (TIFFErrorHandler));
6624 DEF_IMGLIB_FN (TIFF *, TIFFOpen, (const char *, const char *));
6625 DEF_IMGLIB_FN (TIFF *, TIFFClientOpen, (const char *, const char *, thandle_t,
6626 TIFFReadWriteProc, TIFFReadWriteProc,
6627 TIFFSeekProc, TIFFCloseProc, TIFFSizeProc,
6628 TIFFMapFileProc, TIFFUnmapFileProc));
6629 DEF_IMGLIB_FN (int, TIFFGetField, (TIFF *, ttag_t, ...));
6630 DEF_IMGLIB_FN (int, TIFFReadRGBAImage, (TIFF *, uint32, uint32, uint32 *, int));
6631 DEF_IMGLIB_FN (void, TIFFClose, (TIFF *));
6632 DEF_IMGLIB_FN (int, TIFFSetDirectory, (TIFF *, tdir_t));
6634 static bool
6635 init_tiff_functions (void)
6637 HMODULE library;
6639 if (!(library = w32_delayed_load (Qtiff)))
6640 return 0;
6642 LOAD_IMGLIB_FN (library, TIFFSetErrorHandler);
6643 LOAD_IMGLIB_FN (library, TIFFSetWarningHandler);
6644 LOAD_IMGLIB_FN (library, TIFFOpen);
6645 LOAD_IMGLIB_FN (library, TIFFClientOpen);
6646 LOAD_IMGLIB_FN (library, TIFFGetField);
6647 LOAD_IMGLIB_FN (library, TIFFReadRGBAImage);
6648 LOAD_IMGLIB_FN (library, TIFFClose);
6649 LOAD_IMGLIB_FN (library, TIFFSetDirectory);
6650 return 1;
6653 #else
6655 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6656 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6657 #define fn_TIFFOpen TIFFOpen
6658 #define fn_TIFFClientOpen TIFFClientOpen
6659 #define fn_TIFFGetField TIFFGetField
6660 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6661 #define fn_TIFFClose TIFFClose
6662 #define fn_TIFFSetDirectory TIFFSetDirectory
6663 #endif /* WINDOWSNT */
6666 /* Reading from a memory buffer for TIFF images Based on the PNG
6667 memory source, but we have to provide a lot of extra functions.
6668 Blah.
6670 We really only need to implement read and seek, but I am not
6671 convinced that the TIFF library is smart enough not to destroy
6672 itself if we only hand it the function pointers we need to
6673 override. */
6675 typedef struct
6677 unsigned char *bytes;
6678 ptrdiff_t len;
6679 ptrdiff_t index;
6681 tiff_memory_source;
6683 static tsize_t
6684 tiff_read_from_memory (thandle_t data, tdata_t buf, tsize_t size)
6686 tiff_memory_source *src = (tiff_memory_source *) data;
6688 size = min (size, src->len - src->index);
6689 memcpy (buf, src->bytes + src->index, size);
6690 src->index += size;
6691 return size;
6694 static tsize_t
6695 tiff_write_from_memory (thandle_t data, tdata_t buf, tsize_t size)
6697 return -1;
6700 static toff_t
6701 tiff_seek_in_memory (thandle_t data, toff_t off, int whence)
6703 tiff_memory_source *src = (tiff_memory_source *) data;
6704 ptrdiff_t idx;
6706 switch (whence)
6708 case SEEK_SET: /* Go from beginning of source. */
6709 idx = off;
6710 break;
6712 case SEEK_END: /* Go from end of source. */
6713 idx = src->len + off;
6714 break;
6716 case SEEK_CUR: /* Go from current position. */
6717 idx = src->index + off;
6718 break;
6720 default: /* Invalid `whence'. */
6721 return -1;
6724 if (idx > src->len || idx < 0)
6725 return -1;
6727 src->index = idx;
6728 return src->index;
6731 static int
6732 tiff_close_memory (thandle_t data)
6734 /* NOOP */
6735 return 0;
6738 static int
6739 tiff_mmap_memory (thandle_t data, tdata_t *pbase, toff_t *psize)
6741 /* It is already _IN_ memory. */
6742 return 0;
6745 static void
6746 tiff_unmap_memory (thandle_t data, tdata_t base, toff_t size)
6748 /* We don't need to do this. */
6751 static toff_t
6752 tiff_size_of_memory (thandle_t data)
6754 return ((tiff_memory_source *) data)->len;
6757 /* GCC 3.x on x86 Windows targets has a bug that triggers an internal
6758 compiler error compiling tiff_handler, see Bugzilla bug #17406
6759 (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17406). Declaring
6760 this function as external works around that problem. */
6761 #if defined (__MINGW32__) && __GNUC__ == 3
6762 # define MINGW_STATIC
6763 #else
6764 # define MINGW_STATIC static
6765 #endif
6767 MINGW_STATIC void
6768 tiff_handler (const char *, const char *, const char *, va_list)
6769 ATTRIBUTE_FORMAT_PRINTF (3, 0);
6770 MINGW_STATIC void
6771 tiff_handler (const char *log_format, const char *title,
6772 const char *format, va_list ap)
6774 /* doprnt is not suitable here, as TIFF handlers are called from
6775 libtiff and are passed arbitrary printf directives. Instead, use
6776 vsnprintf, taking care to be portable to nonstandard environments
6777 where vsnprintf returns -1 on buffer overflow. Since it's just a
6778 log entry, it's OK to truncate it. */
6779 char buf[4000];
6780 int len = vsnprintf (buf, sizeof buf, format, ap);
6781 add_to_log (log_format, build_string (title),
6782 make_string (buf, max (0, min (len, sizeof buf - 1))));
6784 #undef MINGW_STATIC
6786 static void tiff_error_handler (const char *, const char *, va_list)
6787 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6788 static void
6789 tiff_error_handler (const char *title, const char *format, va_list ap)
6791 tiff_handler ("TIFF error: %s %s", title, format, ap);
6795 static void tiff_warning_handler (const char *, const char *, va_list)
6796 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6797 static void
6798 tiff_warning_handler (const char *title, const char *format, va_list ap)
6800 tiff_handler ("TIFF warning: %s %s", title, format, ap);
6804 /* Load TIFF image IMG for use on frame F. Value is true if
6805 successful. */
6807 static bool
6808 tiff_load (struct frame *f, struct image *img)
6810 Lisp_Object file, specified_file;
6811 Lisp_Object specified_data;
6812 TIFF *tiff;
6813 int width, height, x, y, count;
6814 uint32 *buf;
6815 int rc;
6816 XImagePtr ximg;
6817 tiff_memory_source memsrc;
6818 Lisp_Object image;
6820 specified_file = image_spec_value (img->spec, QCfile, NULL);
6821 specified_data = image_spec_value (img->spec, QCdata, NULL);
6823 fn_TIFFSetErrorHandler ((TIFFErrorHandler) tiff_error_handler);
6824 fn_TIFFSetWarningHandler ((TIFFErrorHandler) tiff_warning_handler);
6826 if (NILP (specified_data))
6828 /* Read from a file */
6829 file = x_find_image_file (specified_file);
6830 if (!STRINGP (file))
6832 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6833 return 0;
6836 /* Try to open the image file. */
6837 tiff = fn_TIFFOpen (SSDATA (file), "r");
6838 if (tiff == NULL)
6840 image_error ("Cannot open `%s'", file, Qnil);
6841 return 0;
6844 else
6846 if (!STRINGP (specified_data))
6848 image_error ("Invalid image data `%s'", specified_data, Qnil);
6849 return 0;
6852 /* Memory source! */
6853 memsrc.bytes = SDATA (specified_data);
6854 memsrc.len = SBYTES (specified_data);
6855 memsrc.index = 0;
6857 tiff = fn_TIFFClientOpen ("memory_source", "r", (thandle_t)&memsrc,
6858 tiff_read_from_memory,
6859 tiff_write_from_memory,
6860 tiff_seek_in_memory,
6861 tiff_close_memory,
6862 tiff_size_of_memory,
6863 tiff_mmap_memory,
6864 tiff_unmap_memory);
6866 if (!tiff)
6868 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
6869 return 0;
6873 image = image_spec_value (img->spec, QCindex, NULL);
6874 if (INTEGERP (image))
6876 EMACS_INT ino = XFASTINT (image);
6877 if (! (TYPE_MINIMUM (tdir_t) <= ino && ino <= TYPE_MAXIMUM (tdir_t)
6878 && fn_TIFFSetDirectory (tiff, ino)))
6880 image_error ("Invalid image number `%s' in image `%s'",
6881 image, img->spec);
6882 fn_TIFFClose (tiff);
6883 return 0;
6887 /* Get width and height of the image, and allocate a raster buffer
6888 of width x height 32-bit values. */
6889 fn_TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
6890 fn_TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
6892 if (!check_image_size (f, width, height))
6894 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
6895 fn_TIFFClose (tiff);
6896 return 0;
6899 /* Create the X image and pixmap. */
6900 if (! (height <= min (PTRDIFF_MAX, SIZE_MAX) / sizeof *buf / width
6901 && x_create_x_image_and_pixmap (f, width, height, 0,
6902 &ximg, &img->pixmap)))
6904 fn_TIFFClose (tiff);
6905 return 0;
6908 buf = xmalloc (sizeof *buf * width * height);
6910 rc = fn_TIFFReadRGBAImage (tiff, width, height, buf, 0);
6912 /* Count the number of images in the file. */
6913 for (count = 1; fn_TIFFSetDirectory (tiff, count); count++)
6914 continue;
6916 if (count > 1)
6917 img->lisp_data = Fcons (Qcount,
6918 Fcons (make_number (count),
6919 img->lisp_data));
6921 fn_TIFFClose (tiff);
6922 if (!rc)
6924 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
6925 xfree (buf);
6926 return 0;
6929 /* Initialize the color table. */
6930 init_color_table ();
6932 /* Process the pixel raster. Origin is in the lower-left corner. */
6933 for (y = 0; y < height; ++y)
6935 uint32 *row = buf + y * width;
6937 for (x = 0; x < width; ++x)
6939 uint32 abgr = row[x];
6940 int r = TIFFGetR (abgr) << 8;
6941 int g = TIFFGetG (abgr) << 8;
6942 int b = TIFFGetB (abgr) << 8;
6943 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
6947 #ifdef COLOR_TABLE_SUPPORT
6948 /* Remember the colors allocated for the image. Free the color table. */
6949 img->colors = colors_in_color_table (&img->ncolors);
6950 free_color_table ();
6951 #endif /* COLOR_TABLE_SUPPORT */
6953 img->width = width;
6954 img->height = height;
6956 /* Maybe fill in the background field while we have ximg handy. */
6957 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6958 /* Casting avoids a GCC warning on W32. */
6959 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6961 /* Put the image into the pixmap, then free the X image and its buffer. */
6962 x_put_x_image (f, ximg, img->pixmap, width, height);
6963 x_destroy_x_image (ximg);
6964 xfree (buf);
6966 return 1;
6969 #else /* HAVE_TIFF */
6971 #ifdef HAVE_NS
6972 static bool
6973 tiff_load (struct frame *f, struct image *img)
6975 return ns_load_image (f, img,
6976 image_spec_value (img->spec, QCfile, NULL),
6977 image_spec_value (img->spec, QCdata, NULL));
6979 #endif /* HAVE_NS */
6981 #endif /* !HAVE_TIFF */
6985 /***********************************************************************
6987 ***********************************************************************/
6989 #if defined (HAVE_GIF) || defined (HAVE_NS)
6991 static bool gif_image_p (Lisp_Object object);
6992 static bool gif_load (struct frame *f, struct image *img);
6993 static void gif_clear_image (struct frame *f, struct image *img);
6995 /* The symbol `gif' identifying images of this type. */
6997 static Lisp_Object Qgif;
6999 /* Indices of image specification fields in gif_format, below. */
7001 enum gif_keyword_index
7003 GIF_TYPE,
7004 GIF_DATA,
7005 GIF_FILE,
7006 GIF_ASCENT,
7007 GIF_MARGIN,
7008 GIF_RELIEF,
7009 GIF_ALGORITHM,
7010 GIF_HEURISTIC_MASK,
7011 GIF_MASK,
7012 GIF_IMAGE,
7013 GIF_BACKGROUND,
7014 GIF_LAST
7017 /* Vector of image_keyword structures describing the format
7018 of valid user-defined image specifications. */
7020 static const struct image_keyword gif_format[GIF_LAST] =
7022 {":type", IMAGE_SYMBOL_VALUE, 1},
7023 {":data", IMAGE_STRING_VALUE, 0},
7024 {":file", IMAGE_STRING_VALUE, 0},
7025 {":ascent", IMAGE_ASCENT_VALUE, 0},
7026 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
7027 {":relief", IMAGE_INTEGER_VALUE, 0},
7028 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7029 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7030 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7031 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
7032 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7035 #if defined HAVE_NTGUI && defined WINDOWSNT
7036 static bool init_gif_functions (void);
7037 #else
7038 #define init_gif_functions NULL
7039 #endif
7041 /* Structure describing the image type `gif'. */
7043 static struct image_type gif_type =
7045 &Qgif,
7046 gif_image_p,
7047 gif_load,
7048 gif_clear_image,
7049 init_gif_functions,
7050 NULL
7053 /* Free X resources of GIF image IMG which is used on frame F. */
7055 static void
7056 gif_clear_image (struct frame *f, struct image *img)
7058 img->lisp_data = Qnil;
7059 x_clear_image (f, img);
7062 /* Return true if OBJECT is a valid GIF image specification. */
7064 static bool
7065 gif_image_p (Lisp_Object object)
7067 struct image_keyword fmt[GIF_LAST];
7068 memcpy (fmt, gif_format, sizeof fmt);
7070 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
7071 return 0;
7073 /* Must specify either the :data or :file keyword. */
7074 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
7077 #endif /* HAVE_GIF */
7079 #ifdef HAVE_GIF
7081 #if defined (HAVE_NTGUI)
7082 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7083 Undefine before redefining to avoid a preprocessor warning. */
7084 #ifdef DrawText
7085 #undef DrawText
7086 #endif
7087 /* avoid conflict with QuickdrawText.h */
7088 #define DrawText gif_DrawText
7089 #include <gif_lib.h>
7090 #undef DrawText
7092 #else /* HAVE_NTGUI */
7094 #include <gif_lib.h>
7096 #endif /* HAVE_NTGUI */
7099 #ifdef WINDOWSNT
7101 /* GIF library details. */
7102 DEF_IMGLIB_FN (int, DGifCloseFile, (GifFileType *));
7103 DEF_IMGLIB_FN (int, DGifSlurp, (GifFileType *));
7104 DEF_IMGLIB_FN (GifFileType *, DGifOpen, (void *, InputFunc));
7105 DEF_IMGLIB_FN (GifFileType *, DGifOpenFileName, (const char *));
7107 static bool
7108 init_gif_functions (void)
7110 HMODULE library;
7112 if (!(library = w32_delayed_load (Qgif)))
7113 return 0;
7115 LOAD_IMGLIB_FN (library, DGifCloseFile);
7116 LOAD_IMGLIB_FN (library, DGifSlurp);
7117 LOAD_IMGLIB_FN (library, DGifOpen);
7118 LOAD_IMGLIB_FN (library, DGifOpenFileName);
7119 return 1;
7122 #else
7124 #define fn_DGifCloseFile DGifCloseFile
7125 #define fn_DGifSlurp DGifSlurp
7126 #define fn_DGifOpen DGifOpen
7127 #define fn_DGifOpenFileName DGifOpenFileName
7129 #endif /* WINDOWSNT */
7131 /* Reading a GIF image from memory
7132 Based on the PNG memory stuff to a certain extent. */
7134 typedef struct
7136 unsigned char *bytes;
7137 ptrdiff_t len;
7138 ptrdiff_t index;
7140 gif_memory_source;
7142 /* Make the current memory source available to gif_read_from_memory.
7143 It's done this way because not all versions of libungif support
7144 a UserData field in the GifFileType structure. */
7145 static gif_memory_source *current_gif_memory_src;
7147 static int
7148 gif_read_from_memory (GifFileType *file, GifByteType *buf, int len)
7150 gif_memory_source *src = current_gif_memory_src;
7152 if (len > src->len - src->index)
7153 return -1;
7155 memcpy (buf, src->bytes + src->index, len);
7156 src->index += len;
7157 return len;
7161 /* Load GIF image IMG for use on frame F. Value is true if
7162 successful. */
7164 static const int interlace_start[] = {0, 4, 2, 1};
7165 static const int interlace_increment[] = {8, 8, 4, 2};
7167 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7169 static bool
7170 gif_load (struct frame *f, struct image *img)
7172 Lisp_Object file;
7173 int rc, width, height, x, y, i, j;
7174 XImagePtr ximg;
7175 ColorMapObject *gif_color_map;
7176 unsigned long pixel_colors[256];
7177 GifFileType *gif;
7178 gif_memory_source memsrc;
7179 Lisp_Object specified_bg = image_spec_value (img->spec, QCbackground, NULL);
7180 Lisp_Object specified_file = image_spec_value (img->spec, QCfile, NULL);
7181 Lisp_Object specified_data = image_spec_value (img->spec, QCdata, NULL);
7182 unsigned long bgcolor = 0;
7183 EMACS_INT idx;
7185 if (NILP (specified_data))
7187 file = x_find_image_file (specified_file);
7188 if (!STRINGP (file))
7190 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7191 return 0;
7194 /* Open the GIF file. */
7195 gif = fn_DGifOpenFileName (SSDATA (file));
7196 if (gif == NULL)
7198 image_error ("Cannot open `%s'", file, Qnil);
7199 return 0;
7202 else
7204 if (!STRINGP (specified_data))
7206 image_error ("Invalid image data `%s'", specified_data, Qnil);
7207 return 0;
7210 /* Read from memory! */
7211 current_gif_memory_src = &memsrc;
7212 memsrc.bytes = SDATA (specified_data);
7213 memsrc.len = SBYTES (specified_data);
7214 memsrc.index = 0;
7216 gif = fn_DGifOpen (&memsrc, gif_read_from_memory);
7217 if (!gif)
7219 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
7220 return 0;
7224 /* Before reading entire contents, check the declared image size. */
7225 if (!check_image_size (f, gif->SWidth, gif->SHeight))
7227 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7228 fn_DGifCloseFile (gif);
7229 return 0;
7232 /* Read entire contents. */
7233 rc = fn_DGifSlurp (gif);
7234 if (rc == GIF_ERROR || gif->ImageCount <= 0)
7236 image_error ("Error reading `%s'", img->spec, Qnil);
7237 fn_DGifCloseFile (gif);
7238 return 0;
7241 /* Which sub-image are we to display? */
7243 Lisp_Object image_number = image_spec_value (img->spec, QCindex, NULL);
7244 idx = INTEGERP (image_number) ? XFASTINT (image_number) : 0;
7245 if (idx < 0 || idx >= gif->ImageCount)
7247 image_error ("Invalid image number `%s' in image `%s'",
7248 image_number, img->spec);
7249 fn_DGifCloseFile (gif);
7250 return 0;
7254 width = img->width = gif->SWidth;
7255 height = img->height = gif->SHeight;
7257 img->corners[TOP_CORNER] = gif->SavedImages[0].ImageDesc.Top;
7258 img->corners[LEFT_CORNER] = gif->SavedImages[0].ImageDesc.Left;
7259 img->corners[BOT_CORNER]
7260 = img->corners[TOP_CORNER] + gif->SavedImages[0].ImageDesc.Height;
7261 img->corners[RIGHT_CORNER]
7262 = img->corners[LEFT_CORNER] + gif->SavedImages[0].ImageDesc.Width;
7264 if (!check_image_size (f, width, height))
7266 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7267 fn_DGifCloseFile (gif);
7268 return 0;
7271 /* Create the X image and pixmap. */
7272 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7274 fn_DGifCloseFile (gif);
7275 return 0;
7278 /* Clear the part of the screen image not covered by the image.
7279 Full animated GIF support requires more here (see the gif89 spec,
7280 disposal methods). Let's simply assume that the part not covered
7281 by a sub-image is in the frame's background color. */
7282 for (y = 0; y < img->corners[TOP_CORNER]; ++y)
7283 for (x = 0; x < width; ++x)
7284 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7286 for (y = img->corners[BOT_CORNER]; y < height; ++y)
7287 for (x = 0; x < width; ++x)
7288 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7290 for (y = img->corners[TOP_CORNER]; y < img->corners[BOT_CORNER]; ++y)
7292 for (x = 0; x < img->corners[LEFT_CORNER]; ++x)
7293 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7294 for (x = img->corners[RIGHT_CORNER]; x < width; ++x)
7295 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7298 /* Read the GIF image into the X image. */
7300 /* FIXME: With the current implementation, loading an animated gif
7301 is quadratic in the number of animation frames, since each frame
7302 is a separate struct image. We must provide a way for a single
7303 gif_load call to construct and save all animation frames. */
7305 init_color_table ();
7306 if (STRINGP (specified_bg))
7307 bgcolor = x_alloc_image_color (f, img, specified_bg,
7308 FRAME_BACKGROUND_PIXEL (f));
7309 for (j = 0; j <= idx; ++j)
7311 /* We use a local variable `raster' here because RasterBits is a
7312 char *, which invites problems with bytes >= 0x80. */
7313 struct SavedImage *subimage = gif->SavedImages + j;
7314 unsigned char *raster = (unsigned char *) subimage->RasterBits;
7315 int transparency_color_index = -1;
7316 int disposal = 0;
7317 int subimg_width = subimage->ImageDesc.Width;
7318 int subimg_height = subimage->ImageDesc.Height;
7319 int subimg_top = subimage->ImageDesc.Top;
7320 int subimg_left = subimage->ImageDesc.Left;
7322 /* Find the Graphic Control Extension block for this sub-image.
7323 Extract the disposal method and transparency color. */
7324 for (i = 0; i < subimage->ExtensionBlockCount; i++)
7326 ExtensionBlock *extblock = subimage->ExtensionBlocks + i;
7328 if ((extblock->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION)
7329 && extblock->ByteCount == 4
7330 && extblock->Bytes[0] & 1)
7332 /* From gif89a spec: 1 = "keep in place", 2 = "restore
7333 to background". Treat any other value like 2. */
7334 disposal = (extblock->Bytes[0] >> 2) & 7;
7335 transparency_color_index = (unsigned char) extblock->Bytes[3];
7336 break;
7340 /* We can't "keep in place" the first subimage. */
7341 if (j == 0)
7342 disposal = 2;
7344 /* For disposal == 0, the spec says "No disposal specified. The
7345 decoder is not required to take any action." In practice, it
7346 seems we need to treat this like "keep in place", see e.g.
7347 http://upload.wikimedia.org/wikipedia/commons/3/37/Clock.gif */
7348 if (disposal == 0)
7349 disposal = 1;
7351 /* Allocate subimage colors. */
7352 memset (pixel_colors, 0, sizeof pixel_colors);
7353 gif_color_map = subimage->ImageDesc.ColorMap;
7354 if (!gif_color_map)
7355 gif_color_map = gif->SColorMap;
7357 if (gif_color_map)
7358 for (i = 0; i < gif_color_map->ColorCount; ++i)
7360 if (transparency_color_index == i)
7361 pixel_colors[i] = STRINGP (specified_bg)
7362 ? bgcolor : FRAME_BACKGROUND_PIXEL (f);
7363 else
7365 int r = gif_color_map->Colors[i].Red << 8;
7366 int g = gif_color_map->Colors[i].Green << 8;
7367 int b = gif_color_map->Colors[i].Blue << 8;
7368 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
7372 /* Apply the pixel values. */
7373 if (gif->SavedImages[j].ImageDesc.Interlace)
7375 int row, pass;
7377 for (y = 0, row = interlace_start[0], pass = 0;
7378 y < subimg_height;
7379 y++, row += interlace_increment[pass])
7381 if (row >= subimg_height)
7383 row = interlace_start[++pass];
7384 while (row >= subimg_height)
7385 row = interlace_start[++pass];
7388 for (x = 0; x < subimg_width; x++)
7390 int c = raster[y * subimg_width + x];
7391 if (transparency_color_index != c || disposal != 1)
7392 XPutPixel (ximg, x + subimg_left, row + subimg_top,
7393 pixel_colors[c]);
7397 else
7399 for (y = 0; y < subimg_height; ++y)
7400 for (x = 0; x < subimg_width; ++x)
7402 int c = raster[y * subimg_width + x];
7403 if (transparency_color_index != c || disposal != 1)
7404 XPutPixel (ximg, x + subimg_left, y + subimg_top,
7405 pixel_colors[c]);
7410 #ifdef COLOR_TABLE_SUPPORT
7411 img->colors = colors_in_color_table (&img->ncolors);
7412 free_color_table ();
7413 #endif /* COLOR_TABLE_SUPPORT */
7415 /* Save GIF image extension data for `image-metadata'.
7416 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7417 img->lisp_data = Qnil;
7418 if (gif->SavedImages[idx].ExtensionBlockCount > 0)
7420 int delay = 0;
7421 ExtensionBlock *ext = gif->SavedImages[idx].ExtensionBlocks;
7422 for (i = 0; i < gif->SavedImages[idx].ExtensionBlockCount; i++, ext++)
7423 /* Append (... FUNCTION "BYTES") */
7425 img->lisp_data
7426 = Fcons (make_number (ext->Function),
7427 Fcons (make_unibyte_string (ext->Bytes, ext->ByteCount),
7428 img->lisp_data));
7429 if (ext->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION
7430 && ext->ByteCount == 4)
7432 delay = ext->Bytes[2] << CHAR_BIT;
7433 delay |= ext->Bytes[1];
7436 img->lisp_data = Fcons (Qextension_data,
7437 Fcons (img->lisp_data, Qnil));
7438 if (delay)
7439 img->lisp_data
7440 = Fcons (Qdelay,
7441 Fcons (make_float (delay / 100.0),
7442 img->lisp_data));
7445 if (gif->ImageCount > 1)
7446 img->lisp_data = Fcons (Qcount,
7447 Fcons (make_number (gif->ImageCount),
7448 img->lisp_data));
7450 fn_DGifCloseFile (gif);
7452 /* Maybe fill in the background field while we have ximg handy. */
7453 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7454 /* Casting avoids a GCC warning. */
7455 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
7457 /* Put the image into the pixmap, then free the X image and its buffer. */
7458 x_put_x_image (f, ximg, img->pixmap, width, height);
7459 x_destroy_x_image (ximg);
7461 return 1;
7464 #else /* !HAVE_GIF */
7466 #ifdef HAVE_NS
7467 static bool
7468 gif_load (struct frame *f, struct image *img)
7470 return ns_load_image (f, img,
7471 image_spec_value (img->spec, QCfile, NULL),
7472 image_spec_value (img->spec, QCdata, NULL));
7474 #endif /* HAVE_NS */
7476 #endif /* HAVE_GIF */
7479 /***********************************************************************
7480 ImageMagick
7481 ***********************************************************************/
7482 #if defined (HAVE_IMAGEMAGICK)
7484 static Lisp_Object Qimagemagick;
7486 static bool imagemagick_image_p (Lisp_Object);
7487 static bool imagemagick_load (struct frame *, struct image *);
7488 static void imagemagick_clear_image (struct frame *, struct image *);
7490 /* Indices of image specification fields in imagemagick_format. */
7492 enum imagemagick_keyword_index
7494 IMAGEMAGICK_TYPE,
7495 IMAGEMAGICK_DATA,
7496 IMAGEMAGICK_FILE,
7497 IMAGEMAGICK_ASCENT,
7498 IMAGEMAGICK_MARGIN,
7499 IMAGEMAGICK_RELIEF,
7500 IMAGEMAGICK_ALGORITHM,
7501 IMAGEMAGICK_HEURISTIC_MASK,
7502 IMAGEMAGICK_MASK,
7503 IMAGEMAGICK_BACKGROUND,
7504 IMAGEMAGICK_HEIGHT,
7505 IMAGEMAGICK_WIDTH,
7506 IMAGEMAGICK_ROTATION,
7507 IMAGEMAGICK_CROP,
7508 IMAGEMAGICK_LAST
7511 /* Vector of image_keyword structures describing the format
7512 of valid user-defined image specifications. */
7514 static struct image_keyword imagemagick_format[IMAGEMAGICK_LAST] =
7516 {":type", IMAGE_SYMBOL_VALUE, 1},
7517 {":data", IMAGE_STRING_VALUE, 0},
7518 {":file", IMAGE_STRING_VALUE, 0},
7519 {":ascent", IMAGE_ASCENT_VALUE, 0},
7520 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
7521 {":relief", IMAGE_INTEGER_VALUE, 0},
7522 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7523 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7524 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7525 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
7526 {":height", IMAGE_INTEGER_VALUE, 0},
7527 {":width", IMAGE_INTEGER_VALUE, 0},
7528 {":rotation", IMAGE_NUMBER_VALUE, 0},
7529 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
7532 #if defined HAVE_NTGUI && defined WINDOWSNT
7533 static bool init_imagemagick_functions (void);
7534 #else
7535 #define init_imagemagick_functions NULL
7536 #endif
7538 /* Structure describing the image type for any image handled via
7539 ImageMagick. */
7541 static struct image_type imagemagick_type =
7543 &Qimagemagick,
7544 imagemagick_image_p,
7545 imagemagick_load,
7546 imagemagick_clear_image,
7547 init_imagemagick_functions,
7548 NULL
7551 /* Free X resources of imagemagick image IMG which is used on frame F. */
7553 static void
7554 imagemagick_clear_image (struct frame *f,
7555 struct image *img)
7557 x_clear_image (f, img);
7560 /* Return true if OBJECT is a valid IMAGEMAGICK image specification. Do
7561 this by calling parse_image_spec and supplying the keywords that
7562 identify the IMAGEMAGICK format. */
7564 static bool
7565 imagemagick_image_p (Lisp_Object object)
7567 struct image_keyword fmt[IMAGEMAGICK_LAST];
7568 memcpy (fmt, imagemagick_format, sizeof fmt);
7570 if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
7571 return 0;
7573 /* Must specify either the :data or :file keyword. */
7574 return fmt[IMAGEMAGICK_FILE].count + fmt[IMAGEMAGICK_DATA].count == 1;
7577 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7578 Therefore rename the function so it doesn't collide with ImageMagick. */
7579 #define DrawRectangle DrawRectangleGif
7580 #include <wand/MagickWand.h>
7582 /* ImageMagick 6.5.3 through 6.6.5 hid PixelGetMagickColor for some reason.
7583 Emacs seems to work fine with the hidden version, so unhide it. */
7584 #include <magick/version.h>
7585 #if 0x653 <= MagickLibVersion && MagickLibVersion <= 0x665
7586 extern WandExport void PixelGetMagickColor (const PixelWand *,
7587 MagickPixelPacket *);
7588 #endif
7590 /* Log ImageMagick error message.
7591 Useful when a ImageMagick function returns the status `MagickFalse'. */
7593 static void
7594 imagemagick_error (MagickWand *wand)
7596 char *description;
7597 ExceptionType severity;
7599 description = MagickGetException (wand, &severity);
7600 image_error ("ImageMagick error: %s",
7601 build_string (description),
7602 Qnil);
7603 description = (char *) MagickRelinquishMemory (description);
7606 /* Helper function for imagemagick_load, which does the actual loading
7607 given contents and size, apart from frame and image structures,
7608 passed from imagemagick_load. Uses librimagemagick to do most of
7609 the image processing.
7611 F is a pointer to the Emacs frame; IMG to the image structure to
7612 prepare; CONTENTS is the string containing the IMAGEMAGICK data to
7613 be parsed; SIZE is the number of bytes of data; and FILENAME is
7614 either the file name or the image data.
7616 Return true if successful. */
7618 static bool
7619 imagemagick_load_image (struct frame *f, struct image *img,
7620 unsigned char *contents, unsigned int size,
7621 char *filename)
7623 size_t width, height;
7624 MagickBooleanType status;
7625 XImagePtr ximg;
7626 int x, y;
7627 MagickWand *image_wand;
7628 MagickWand *ping_wand;
7629 PixelIterator *iterator;
7630 PixelWand **pixels, *bg_wand = NULL;
7631 MagickPixelPacket pixel;
7632 Lisp_Object image;
7633 Lisp_Object value;
7634 Lisp_Object crop;
7635 EMACS_INT ino;
7636 int desired_width, desired_height;
7637 double rotation;
7638 int pixelwidth;
7640 /* Handle image index for image types who can contain more than one image.
7641 Interface :index is same as for GIF. First we "ping" the image to see how
7642 many sub-images it contains. Pinging is faster than loading the image to
7643 find out things about it. */
7645 /* Initialize the imagemagick environment. */
7646 MagickWandGenesis ();
7647 image = image_spec_value (img->spec, QCindex, NULL);
7648 ino = INTEGERP (image) ? XFASTINT (image) : 0;
7649 ping_wand = NewMagickWand ();
7650 /* MagickSetResolution (ping_wand, 2, 2); (Bug#10112) */
7652 status = filename
7653 ? MagickPingImage (ping_wand, filename)
7654 : MagickPingImageBlob (ping_wand, contents, size);
7656 if (status == MagickFalse)
7658 imagemagick_error (ping_wand);
7659 DestroyMagickWand (ping_wand);
7660 return 0;
7663 if (ino < 0 || ino >= MagickGetNumberImages (ping_wand))
7665 image_error ("Invalid image number `%s' in image `%s'",
7666 image, img->spec);
7667 DestroyMagickWand (ping_wand);
7668 return 0;
7671 if (MagickGetNumberImages (ping_wand) > 1)
7672 img->lisp_data =
7673 Fcons (Qcount,
7674 Fcons (make_number (MagickGetNumberImages (ping_wand)),
7675 img->lisp_data));
7677 DestroyMagickWand (ping_wand);
7679 /* Now we know how many images are inside the file. If it's not a
7680 bundle, the number is one. Load the image data. */
7682 image_wand = NewMagickWand ();
7684 if ((filename
7685 ? MagickReadImage (image_wand, filename)
7686 : MagickReadImageBlob (image_wand, contents, size))
7687 == MagickFalse)
7689 imagemagick_error (image_wand);
7690 goto imagemagick_error;
7693 /* Retrieve the frame's background color, for use later. */
7695 XColor bgcolor;
7696 Lisp_Object specified_bg;
7698 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
7699 if (!STRINGP (specified_bg)
7700 || !x_defined_color (f, SSDATA (specified_bg), &bgcolor, 0))
7702 #ifndef HAVE_NS
7703 bgcolor.pixel = FRAME_BACKGROUND_PIXEL (f);
7704 x_query_color (f, &bgcolor);
7705 #else
7706 ns_query_color (FRAME_BACKGROUND_COLOR (f), &bgcolor, 1);
7707 #endif
7710 bg_wand = NewPixelWand ();
7711 PixelSetRed (bg_wand, (double) bgcolor.red / 65535);
7712 PixelSetGreen (bg_wand, (double) bgcolor.green / 65535);
7713 PixelSetBlue (bg_wand, (double) bgcolor.blue / 65535);
7716 /* If width and/or height is set in the display spec assume we want
7717 to scale to those values. If either h or w is unspecified, the
7718 unspecified should be calculated from the specified to preserve
7719 aspect ratio. */
7720 value = image_spec_value (img->spec, QCwidth, NULL);
7721 desired_width = (INTEGERP (value) ? XFASTINT (value) : -1);
7722 value = image_spec_value (img->spec, QCheight, NULL);
7723 desired_height = (INTEGERP (value) ? XFASTINT (value) : -1);
7725 height = MagickGetImageHeight (image_wand);
7726 width = MagickGetImageWidth (image_wand);
7728 if (desired_width != -1 && desired_height == -1)
7729 /* w known, calculate h. */
7730 desired_height = (double) desired_width / width * height;
7731 if (desired_width == -1 && desired_height != -1)
7732 /* h known, calculate w. */
7733 desired_width = (double) desired_height / height * width;
7734 if (desired_width != -1 && desired_height != -1)
7736 status = MagickScaleImage (image_wand, desired_width, desired_height);
7737 if (status == MagickFalse)
7739 image_error ("Imagemagick scale failed", Qnil, Qnil);
7740 imagemagick_error (image_wand);
7741 goto imagemagick_error;
7745 /* crop behaves similar to image slicing in Emacs but is more memory
7746 efficient. */
7747 crop = image_spec_value (img->spec, QCcrop, NULL);
7749 if (CONSP (crop) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop)))
7751 /* After some testing, it seems MagickCropImage is the fastest crop
7752 function in ImageMagick. This crop function seems to do less copying
7753 than the alternatives, but it still reads the entire image into memory
7754 before cropping, which is apparently difficult to avoid when using
7755 imagemagick. */
7756 size_t crop_width = XINT (XCAR (crop));
7757 crop = XCDR (crop);
7758 if (CONSP (crop) && TYPE_RANGED_INTEGERP (size_t, XCAR (crop)))
7760 size_t crop_height = XINT (XCAR (crop));
7761 crop = XCDR (crop);
7762 if (CONSP (crop) && TYPE_RANGED_INTEGERP (ssize_t, XCAR (crop)))
7764 ssize_t crop_x = XINT (XCAR (crop));
7765 crop = XCDR (crop);
7766 if (CONSP (crop) && TYPE_RANGED_INTEGERP (ssize_t, XCAR (crop)))
7768 ssize_t crop_y = XINT (XCAR (crop));
7769 MagickCropImage (image_wand, crop_width, crop_height,
7770 crop_x, crop_y);
7776 /* Furthermore :rotation. we need background color and angle for
7777 rotation. */
7779 TODO background handling for rotation specified_bg =
7780 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
7781 (specified_bg). */
7782 value = image_spec_value (img->spec, QCrotation, NULL);
7783 if (FLOATP (value))
7785 rotation = extract_float (value);
7786 status = MagickRotateImage (image_wand, bg_wand, rotation);
7787 if (status == MagickFalse)
7789 image_error ("Imagemagick image rotate failed", Qnil, Qnil);
7790 imagemagick_error (image_wand);
7791 goto imagemagick_error;
7795 /* Finally we are done manipulating the image. Figure out the
7796 resulting width/height and transfer ownership to Emacs. */
7797 height = MagickGetImageHeight (image_wand);
7798 width = MagickGetImageWidth (image_wand);
7800 /* Set the canvas background color to the frame or specified
7801 background, and flatten the image. Note: as of ImageMagick
7802 6.6.0, SVG image transparency is not handled properly
7803 (e.g. etc/images/splash.svg shows a white background always). */
7805 MagickWand *new_wand;
7806 MagickSetImageBackgroundColor (image_wand, bg_wand);
7807 #ifdef HAVE_MAGICKMERGEIMAGELAYERS
7808 new_wand = MagickMergeImageLayers (image_wand, MergeLayer);
7809 #else
7810 new_wand = MagickFlattenImages (image_wand);
7811 #endif
7812 DestroyMagickWand (image_wand);
7813 image_wand = new_wand;
7816 if (! (width <= INT_MAX && height <= INT_MAX
7817 && check_image_size (f, width, height)))
7819 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7820 goto imagemagick_error;
7823 /* We can now get a valid pixel buffer from the imagemagick file, if all
7824 went ok. */
7826 init_color_table ();
7828 #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS
7829 if (imagemagick_render_type != 0)
7831 /* Magicexportimage is normally faster than pixelpushing. This
7832 method is also well tested. Some aspects of this method are
7833 ad-hoc and needs to be more researched. */
7834 int imagedepth = 24; /*MagickGetImageDepth(image_wand);*/
7835 const char *exportdepth = imagedepth <= 8 ? "I" : "BGRP"; /*"RGBP";*/
7836 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7837 if (!x_create_x_image_and_pixmap (f, width, height, imagedepth,
7838 &ximg, &img->pixmap))
7840 #ifdef COLOR_TABLE_SUPPORT
7841 free_color_table ();
7842 #endif
7843 image_error ("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7844 goto imagemagick_error;
7847 /* Oddly, the below code doesn't seem to work:*/
7848 /* switch(ximg->bitmap_unit){ */
7849 /* case 8: */
7850 /* pixelwidth=CharPixel; */
7851 /* break; */
7852 /* case 16: */
7853 /* pixelwidth=ShortPixel; */
7854 /* break; */
7855 /* case 32: */
7856 /* pixelwidth=LongPixel; */
7857 /* break; */
7858 /* } */
7860 Here im just guessing the format of the bitmap.
7861 happens to work fine for:
7862 - bw djvu images
7863 on rgb display.
7864 seems about 3 times as fast as pixel pushing(not carefully measured)
7866 pixelwidth = CharPixel; /*??? TODO figure out*/
7867 MagickExportImagePixels (image_wand, 0, 0, width, height,
7868 exportdepth, pixelwidth, ximg->data);
7870 else
7871 #endif /* HAVE_MAGICKEXPORTIMAGEPIXELS */
7873 size_t image_height;
7875 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7876 if (!x_create_x_image_and_pixmap (f, width, height, 0,
7877 &ximg, &img->pixmap))
7879 #ifdef COLOR_TABLE_SUPPORT
7880 free_color_table ();
7881 #endif
7882 image_error ("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7883 goto imagemagick_error;
7886 /* Copy imagemagick image to x with primitive yet robust pixel
7887 pusher loop. This has been tested a lot with many different
7888 images. */
7890 /* Copy pixels from the imagemagick image structure to the x image map. */
7891 iterator = NewPixelIterator (image_wand);
7892 if (iterator == (PixelIterator *) NULL)
7894 #ifdef COLOR_TABLE_SUPPORT
7895 free_color_table ();
7896 #endif
7897 x_destroy_x_image (ximg);
7898 image_error ("Imagemagick pixel iterator creation failed",
7899 Qnil, Qnil);
7900 goto imagemagick_error;
7903 image_height = MagickGetImageHeight (image_wand);
7904 for (y = 0; y < image_height; y++)
7906 pixels = PixelGetNextIteratorRow (iterator, &width);
7907 if (pixels == (PixelWand **) NULL)
7908 break;
7909 for (x = 0; x < (long) width; x++)
7911 PixelGetMagickColor (pixels[x], &pixel);
7912 XPutPixel (ximg, x, y,
7913 lookup_rgb_color (f,
7914 pixel.red,
7915 pixel.green,
7916 pixel.blue));
7919 DestroyPixelIterator (iterator);
7922 #ifdef COLOR_TABLE_SUPPORT
7923 /* Remember colors allocated for this image. */
7924 img->colors = colors_in_color_table (&img->ncolors);
7925 free_color_table ();
7926 #endif /* COLOR_TABLE_SUPPORT */
7928 img->width = width;
7929 img->height = height;
7931 /* Put the image into the pixmap, then free the X image and its
7932 buffer. */
7933 x_put_x_image (f, ximg, img->pixmap, width, height);
7934 x_destroy_x_image (ximg);
7936 /* Final cleanup. image_wand should be the only resource left. */
7937 DestroyMagickWand (image_wand);
7938 if (bg_wand) DestroyPixelWand (bg_wand);
7940 /* `MagickWandTerminus' terminates the imagemagick environment. */
7941 MagickWandTerminus ();
7943 return 1;
7945 imagemagick_error:
7946 DestroyMagickWand (image_wand);
7947 if (bg_wand) DestroyPixelWand (bg_wand);
7949 MagickWandTerminus ();
7950 /* TODO more cleanup. */
7951 image_error ("Error parsing IMAGEMAGICK image `%s'", img->spec, Qnil);
7952 return 0;
7956 /* Load IMAGEMAGICK image IMG for use on frame F. Value is true if
7957 successful. this function will go into the imagemagick_type structure, and
7958 the prototype thus needs to be compatible with that structure. */
7960 static bool
7961 imagemagick_load (struct frame *f, struct image *img)
7963 bool success_p = 0;
7964 Lisp_Object file_name;
7966 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7967 file_name = image_spec_value (img->spec, QCfile, NULL);
7968 if (STRINGP (file_name))
7970 Lisp_Object file;
7972 file = x_find_image_file (file_name);
7973 if (!STRINGP (file))
7975 image_error ("Cannot find image file `%s'", file_name, Qnil);
7976 return 0;
7978 success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file));
7980 /* Else its not a file, its a lisp object. Load the image from a
7981 lisp object rather than a file. */
7982 else
7984 Lisp_Object data;
7986 data = image_spec_value (img->spec, QCdata, NULL);
7987 if (!STRINGP (data))
7989 image_error ("Invalid image data `%s'", data, Qnil);
7990 return 0;
7992 success_p = imagemagick_load_image (f, img, SDATA (data),
7993 SBYTES (data), NULL);
7996 return success_p;
7999 DEFUN ("imagemagick-types", Fimagemagick_types, Simagemagick_types, 0, 0, 0,
8000 doc: /* Return a list of image types supported by ImageMagick.
8001 Each entry in this list is a symbol named after an ImageMagick format
8002 tag. See the ImageMagick manual for a list of ImageMagick formats and
8003 their descriptions (http://www.imagemagick.org/script/formats.php).
8004 You can also try the shell command: `identify -list format'.
8006 Note that ImageMagick recognizes many file-types that Emacs does not
8007 recognize as images, such as C. See `imagemagick-types-enable'
8008 and `imagemagick-types-inhibit'. */)
8009 (void)
8011 Lisp_Object typelist = Qnil;
8012 size_t numf = 0;
8013 ExceptionInfo ex;
8014 char **imtypes;
8015 size_t i;
8016 Lisp_Object Qimagemagicktype;
8018 GetExceptionInfo(&ex);
8019 imtypes = GetMagickList ("*", &numf, &ex);
8020 DestroyExceptionInfo(&ex);
8022 for (i = 0; i < numf; i++)
8024 Qimagemagicktype = intern (imtypes[i]);
8025 typelist = Fcons (Qimagemagicktype, typelist);
8027 return Fnreverse (typelist);
8030 #endif /* defined (HAVE_IMAGEMAGICK) */
8034 /***********************************************************************
8036 ***********************************************************************/
8038 #if defined (HAVE_RSVG)
8040 /* Function prototypes. */
8042 static bool svg_image_p (Lisp_Object object);
8043 static bool svg_load (struct frame *f, struct image *img);
8045 static bool svg_load_image (struct frame *, struct image *,
8046 unsigned char *, ptrdiff_t);
8048 /* The symbol `svg' identifying images of this type. */
8050 static Lisp_Object Qsvg;
8052 /* Indices of image specification fields in svg_format, below. */
8054 enum svg_keyword_index
8056 SVG_TYPE,
8057 SVG_DATA,
8058 SVG_FILE,
8059 SVG_ASCENT,
8060 SVG_MARGIN,
8061 SVG_RELIEF,
8062 SVG_ALGORITHM,
8063 SVG_HEURISTIC_MASK,
8064 SVG_MASK,
8065 SVG_BACKGROUND,
8066 SVG_LAST
8069 /* Vector of image_keyword structures describing the format
8070 of valid user-defined image specifications. */
8072 static const struct image_keyword svg_format[SVG_LAST] =
8074 {":type", IMAGE_SYMBOL_VALUE, 1},
8075 {":data", IMAGE_STRING_VALUE, 0},
8076 {":file", IMAGE_STRING_VALUE, 0},
8077 {":ascent", IMAGE_ASCENT_VALUE, 0},
8078 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
8079 {":relief", IMAGE_INTEGER_VALUE, 0},
8080 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8081 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8082 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8083 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8086 #if defined HAVE_NTGUI && defined WINDOWSNT
8087 static bool init_svg_functions (void);
8088 #else
8089 #define init_svg_functions NULL
8090 #endif
8092 /* Structure describing the image type `svg'. Its the same type of
8093 structure defined for all image formats, handled by emacs image
8094 functions. See struct image_type in dispextern.h. */
8096 static struct image_type svg_type =
8098 &Qsvg,
8099 svg_image_p,
8100 svg_load,
8101 x_clear_image,
8102 init_svg_functions,
8103 NULL
8107 /* Return true if OBJECT is a valid SVG image specification. Do
8108 this by calling parse_image_spec and supplying the keywords that
8109 identify the SVG format. */
8111 static bool
8112 svg_image_p (Lisp_Object object)
8114 struct image_keyword fmt[SVG_LAST];
8115 memcpy (fmt, svg_format, sizeof fmt);
8117 if (!parse_image_spec (object, fmt, SVG_LAST, Qsvg))
8118 return 0;
8120 /* Must specify either the :data or :file keyword. */
8121 return fmt[SVG_FILE].count + fmt[SVG_DATA].count == 1;
8124 #include <librsvg/rsvg.h>
8126 #ifdef WINDOWSNT
8128 /* SVG library functions. */
8129 DEF_IMGLIB_FN (RsvgHandle *, rsvg_handle_new);
8130 DEF_IMGLIB_FN (void, rsvg_handle_get_dimensions);
8131 DEF_IMGLIB_FN (gboolean, rsvg_handle_write);
8132 DEF_IMGLIB_FN (gboolean, rsvg_handle_close);
8133 DEF_IMGLIB_FN (GdkPixbuf *, rsvg_handle_get_pixbuf);
8135 DEF_IMGLIB_FN (int, gdk_pixbuf_get_width);
8136 DEF_IMGLIB_FN (int, gdk_pixbuf_get_height);
8137 DEF_IMGLIB_FN (guchar *, gdk_pixbuf_get_pixels);
8138 DEF_IMGLIB_FN (int, gdk_pixbuf_get_rowstride);
8139 DEF_IMGLIB_FN (GdkColorspace, gdk_pixbuf_get_colorspace);
8140 DEF_IMGLIB_FN (int, gdk_pixbuf_get_n_channels);
8141 DEF_IMGLIB_FN (gboolean, gdk_pixbuf_get_has_alpha);
8142 DEF_IMGLIB_FN (int, gdk_pixbuf_get_bits_per_sample);
8144 DEF_IMGLIB_FN (void, g_type_init);
8145 DEF_IMGLIB_FN (void, g_object_unref);
8146 DEF_IMGLIB_FN (void, g_error_free);
8148 Lisp_Object Qgdk_pixbuf, Qglib, Qgobject;
8150 static bool
8151 init_svg_functions (void)
8153 HMODULE library, gdklib, glib, gobject;
8155 if (!(glib = w32_delayed_load (Qglib))
8156 || !(gobject = w32_delayed_load (Qgobject))
8157 || !(gdklib = w32_delayed_load (Qgdk_pixbuf))
8158 || !(library = w32_delayed_load (Qsvg)))
8159 return 0;
8161 LOAD_IMGLIB_FN (library, rsvg_handle_new);
8162 LOAD_IMGLIB_FN (library, rsvg_handle_get_dimensions);
8163 LOAD_IMGLIB_FN (library, rsvg_handle_write);
8164 LOAD_IMGLIB_FN (library, rsvg_handle_close);
8165 LOAD_IMGLIB_FN (library, rsvg_handle_get_pixbuf);
8167 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_width);
8168 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_height);
8169 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_pixels);
8170 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_rowstride);
8171 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_colorspace);
8172 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_n_channels);
8173 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_has_alpha);
8174 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_bits_per_sample);
8176 LOAD_IMGLIB_FN (gobject, g_type_init);
8177 LOAD_IMGLIB_FN (gobject, g_object_unref);
8178 LOAD_IMGLIB_FN (glib, g_error_free);
8180 return 1;
8183 #else
8184 /* The following aliases for library functions allow dynamic loading
8185 to be used on some platforms. */
8186 #define fn_rsvg_handle_new rsvg_handle_new
8187 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
8188 #define fn_rsvg_handle_write rsvg_handle_write
8189 #define fn_rsvg_handle_close rsvg_handle_close
8190 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
8192 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
8193 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
8194 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
8195 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
8196 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
8197 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
8198 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
8199 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
8201 #define fn_g_type_init g_type_init
8202 #define fn_g_object_unref g_object_unref
8203 #define fn_g_error_free g_error_free
8204 #endif /* !WINDOWSNT */
8206 /* Load SVG image IMG for use on frame F. Value is true if
8207 successful. */
8209 static bool
8210 svg_load (struct frame *f, struct image *img)
8212 bool success_p = 0;
8213 Lisp_Object file_name;
8215 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8216 file_name = image_spec_value (img->spec, QCfile, NULL);
8217 if (STRINGP (file_name))
8219 Lisp_Object file;
8220 unsigned char *contents;
8221 ptrdiff_t size;
8223 file = x_find_image_file (file_name);
8224 if (!STRINGP (file))
8226 image_error ("Cannot find image file `%s'", file_name, Qnil);
8227 return 0;
8230 /* Read the entire file into memory. */
8231 contents = slurp_file (SSDATA (file), &size);
8232 if (contents == NULL)
8234 image_error ("Error loading SVG image `%s'", img->spec, Qnil);
8235 return 0;
8237 /* If the file was slurped into memory properly, parse it. */
8238 success_p = svg_load_image (f, img, contents, size);
8239 xfree (contents);
8241 /* Else its not a file, its a lisp object. Load the image from a
8242 lisp object rather than a file. */
8243 else
8245 Lisp_Object data;
8247 data = image_spec_value (img->spec, QCdata, NULL);
8248 if (!STRINGP (data))
8250 image_error ("Invalid image data `%s'", data, Qnil);
8251 return 0;
8253 success_p = svg_load_image (f, img, SDATA (data), SBYTES (data));
8256 return success_p;
8259 /* svg_load_image is a helper function for svg_load, which does the
8260 actual loading given contents and size, apart from frame and image
8261 structures, passed from svg_load.
8263 Uses librsvg to do most of the image processing.
8265 Returns true when successful. */
8266 static bool
8267 svg_load_image (struct frame *f, /* Pointer to emacs frame structure. */
8268 struct image *img, /* Pointer to emacs image structure. */
8269 unsigned char *contents, /* String containing the SVG XML data to be parsed. */
8270 ptrdiff_t size) /* Size of data in bytes. */
8272 RsvgHandle *rsvg_handle;
8273 RsvgDimensionData dimension_data;
8274 GError *err = NULL;
8275 GdkPixbuf *pixbuf;
8276 int width;
8277 int height;
8278 const guint8 *pixels;
8279 int rowstride;
8280 XImagePtr ximg;
8281 Lisp_Object specified_bg;
8282 XColor background;
8283 int x;
8284 int y;
8286 /* g_type_init is a glib function that must be called prior to using
8287 gnome type library functions. */
8288 fn_g_type_init ();
8289 /* Make a handle to a new rsvg object. */
8290 rsvg_handle = fn_rsvg_handle_new ();
8292 /* Parse the contents argument and fill in the rsvg_handle. */
8293 fn_rsvg_handle_write (rsvg_handle, contents, size, &err);
8294 if (err) goto rsvg_error;
8296 /* The parsing is complete, rsvg_handle is ready to used, close it
8297 for further writes. */
8298 fn_rsvg_handle_close (rsvg_handle, &err);
8299 if (err) goto rsvg_error;
8301 fn_rsvg_handle_get_dimensions (rsvg_handle, &dimension_data);
8302 if (! check_image_size (f, dimension_data.width, dimension_data.height))
8304 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8305 goto rsvg_error;
8308 /* We can now get a valid pixel buffer from the svg file, if all
8309 went ok. */
8310 pixbuf = fn_rsvg_handle_get_pixbuf (rsvg_handle);
8311 if (!pixbuf) goto rsvg_error;
8312 fn_g_object_unref (rsvg_handle);
8314 /* Extract some meta data from the svg handle. */
8315 width = fn_gdk_pixbuf_get_width (pixbuf);
8316 height = fn_gdk_pixbuf_get_height (pixbuf);
8317 pixels = fn_gdk_pixbuf_get_pixels (pixbuf);
8318 rowstride = fn_gdk_pixbuf_get_rowstride (pixbuf);
8320 /* Validate the svg meta data. */
8321 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf) == GDK_COLORSPACE_RGB);
8322 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf) == 4);
8323 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf));
8324 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf) == 8);
8326 /* Try to create a x pixmap to hold the svg pixmap. */
8327 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
8329 fn_g_object_unref (pixbuf);
8330 return 0;
8333 init_color_table ();
8335 /* Handle alpha channel by combining the image with a background
8336 color. */
8337 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
8338 if (!STRINGP (specified_bg)
8339 || !x_defined_color (f, SSDATA (specified_bg), &background, 0))
8341 #ifndef HAVE_NS
8342 background.pixel = FRAME_BACKGROUND_PIXEL (f);
8343 x_query_color (f, &background);
8344 #else
8345 ns_query_color (FRAME_BACKGROUND_COLOR (f), &background, 1);
8346 #endif
8349 /* SVG pixmaps specify transparency in the last byte, so right
8350 shift 8 bits to get rid of it, since emacs doesn't support
8351 transparency. */
8352 background.red >>= 8;
8353 background.green >>= 8;
8354 background.blue >>= 8;
8356 /* This loop handles opacity values, since Emacs assumes
8357 non-transparent images. Each pixel must be "flattened" by
8358 calculating the resulting color, given the transparency of the
8359 pixel, and the image background color. */
8360 for (y = 0; y < height; ++y)
8362 for (x = 0; x < width; ++x)
8364 int red;
8365 int green;
8366 int blue;
8367 int opacity;
8369 red = *pixels++;
8370 green = *pixels++;
8371 blue = *pixels++;
8372 opacity = *pixels++;
8374 red = ((red * opacity)
8375 + (background.red * ((1 << 8) - opacity)));
8376 green = ((green * opacity)
8377 + (background.green * ((1 << 8) - opacity)));
8378 blue = ((blue * opacity)
8379 + (background.blue * ((1 << 8) - opacity)));
8381 XPutPixel (ximg, x, y, lookup_rgb_color (f, red, green, blue));
8384 pixels += rowstride - 4 * width;
8387 #ifdef COLOR_TABLE_SUPPORT
8388 /* Remember colors allocated for this image. */
8389 img->colors = colors_in_color_table (&img->ncolors);
8390 free_color_table ();
8391 #endif /* COLOR_TABLE_SUPPORT */
8393 fn_g_object_unref (pixbuf);
8395 img->width = width;
8396 img->height = height;
8398 /* Maybe fill in the background field while we have ximg handy.
8399 Casting avoids a GCC warning. */
8400 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
8402 /* Put the image into the pixmap, then free the X image and its
8403 buffer. */
8404 x_put_x_image (f, ximg, img->pixmap, width, height);
8405 x_destroy_x_image (ximg);
8407 return 1;
8409 rsvg_error:
8410 fn_g_object_unref (rsvg_handle);
8411 /* FIXME: Use error->message so the user knows what is the actual
8412 problem with the image. */
8413 image_error ("Error parsing SVG image `%s'", img->spec, Qnil);
8414 fn_g_error_free (err);
8415 return 0;
8418 #endif /* defined (HAVE_RSVG) */
8423 /***********************************************************************
8424 Ghostscript
8425 ***********************************************************************/
8427 #ifdef HAVE_X_WINDOWS
8428 #define HAVE_GHOSTSCRIPT 1
8429 #endif /* HAVE_X_WINDOWS */
8431 #ifdef HAVE_GHOSTSCRIPT
8433 static bool gs_image_p (Lisp_Object object);
8434 static bool gs_load (struct frame *f, struct image *img);
8435 static void gs_clear_image (struct frame *f, struct image *img);
8437 /* Keyword symbols. */
8439 static Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
8441 /* Indices of image specification fields in gs_format, below. */
8443 enum gs_keyword_index
8445 GS_TYPE,
8446 GS_PT_WIDTH,
8447 GS_PT_HEIGHT,
8448 GS_FILE,
8449 GS_LOADER,
8450 GS_BOUNDING_BOX,
8451 GS_ASCENT,
8452 GS_MARGIN,
8453 GS_RELIEF,
8454 GS_ALGORITHM,
8455 GS_HEURISTIC_MASK,
8456 GS_MASK,
8457 GS_BACKGROUND,
8458 GS_LAST
8461 /* Vector of image_keyword structures describing the format
8462 of valid user-defined image specifications. */
8464 static const struct image_keyword gs_format[GS_LAST] =
8466 {":type", IMAGE_SYMBOL_VALUE, 1},
8467 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8468 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8469 {":file", IMAGE_STRING_VALUE, 1},
8470 {":loader", IMAGE_FUNCTION_VALUE, 0},
8471 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
8472 {":ascent", IMAGE_ASCENT_VALUE, 0},
8473 {":margin", IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR, 0},
8474 {":relief", IMAGE_INTEGER_VALUE, 0},
8475 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8476 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8477 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8478 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8481 /* Structure describing the image type `ghostscript'. */
8483 static struct image_type gs_type =
8485 &Qpostscript,
8486 gs_image_p,
8487 gs_load,
8488 gs_clear_image,
8489 NULL,
8490 NULL
8494 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8496 static void
8497 gs_clear_image (struct frame *f, struct image *img)
8499 x_clear_image (f, img);
8503 /* Return true if OBJECT is a valid Ghostscript image
8504 specification. */
8506 static bool
8507 gs_image_p (Lisp_Object object)
8509 struct image_keyword fmt[GS_LAST];
8510 Lisp_Object tem;
8511 int i;
8513 memcpy (fmt, gs_format, sizeof fmt);
8515 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
8516 return 0;
8518 /* Bounding box must be a list or vector containing 4 integers. */
8519 tem = fmt[GS_BOUNDING_BOX].value;
8520 if (CONSP (tem))
8522 for (i = 0; i < 4; ++i, tem = XCDR (tem))
8523 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
8524 return 0;
8525 if (!NILP (tem))
8526 return 0;
8528 else if (VECTORP (tem))
8530 if (ASIZE (tem) != 4)
8531 return 0;
8532 for (i = 0; i < 4; ++i)
8533 if (!INTEGERP (AREF (tem, i)))
8534 return 0;
8536 else
8537 return 0;
8539 return 1;
8543 /* Load Ghostscript image IMG for use on frame F. Value is true
8544 if successful. */
8546 static bool
8547 gs_load (struct frame *f, struct image *img)
8549 uprintmax_t printnum1, printnum2;
8550 char buffer[sizeof " " + INT_STRLEN_BOUND (printmax_t)];
8551 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
8552 Lisp_Object frame;
8553 double in_width, in_height;
8554 Lisp_Object pixel_colors = Qnil;
8556 /* Compute pixel size of pixmap needed from the given size in the
8557 image specification. Sizes in the specification are in pt. 1 pt
8558 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8559 info. */
8560 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
8561 in_width = INTEGERP (pt_width) ? XFASTINT (pt_width) / 72.0 : 0;
8562 in_width *= FRAME_X_DISPLAY_INFO (f)->resx;
8563 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
8564 in_height = INTEGERP (pt_height) ? XFASTINT (pt_height) / 72.0 : 0;
8565 in_height *= FRAME_X_DISPLAY_INFO (f)->resy;
8567 if (! (in_width <= INT_MAX && in_height <= INT_MAX
8568 && check_image_size (f, in_width, in_height)))
8570 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8571 return 0;
8573 img->width = in_width;
8574 img->height = in_height;
8576 /* Create the pixmap. */
8577 eassert (img->pixmap == NO_PIXMAP);
8579 if (x_check_image_size (0, img->width, img->height))
8581 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8582 block_input ();
8583 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8584 img->width, img->height,
8585 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
8586 unblock_input ();
8589 if (!img->pixmap)
8591 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
8592 return 0;
8595 /* Call the loader to fill the pixmap. It returns a process object
8596 if successful. We do not record_unwind_protect here because
8597 other places in redisplay like calling window scroll functions
8598 don't either. Let the Lisp loader use `unwind-protect' instead. */
8599 printnum1 = FRAME_X_WINDOW (f);
8600 printnum2 = img->pixmap;
8601 window_and_pixmap_id
8602 = make_formatted_string (buffer, "%"pMu" %"pMu, printnum1, printnum2);
8604 printnum1 = FRAME_FOREGROUND_PIXEL (f);
8605 printnum2 = FRAME_BACKGROUND_PIXEL (f);
8606 pixel_colors
8607 = make_formatted_string (buffer, "%"pMu" %"pMu, printnum1, printnum2);
8609 XSETFRAME (frame, f);
8610 loader = image_spec_value (img->spec, QCloader, NULL);
8611 if (NILP (loader))
8612 loader = intern ("gs-load-image");
8614 img->lisp_data = call6 (loader, frame, img->spec,
8615 make_number (img->width),
8616 make_number (img->height),
8617 window_and_pixmap_id,
8618 pixel_colors);
8619 return PROCESSP (img->lisp_data);
8623 /* Kill the Ghostscript process that was started to fill PIXMAP on
8624 frame F. Called from XTread_socket when receiving an event
8625 telling Emacs that Ghostscript has finished drawing. */
8627 void
8628 x_kill_gs_process (Pixmap pixmap, struct frame *f)
8630 struct image_cache *c = FRAME_IMAGE_CACHE (f);
8631 int class;
8632 ptrdiff_t i;
8633 struct image *img;
8635 /* Find the image containing PIXMAP. */
8636 for (i = 0; i < c->used; ++i)
8637 if (c->images[i]->pixmap == pixmap)
8638 break;
8640 /* Should someone in between have cleared the image cache, for
8641 instance, give up. */
8642 if (i == c->used)
8643 return;
8645 /* Kill the GS process. We should have found PIXMAP in the image
8646 cache and its image should contain a process object. */
8647 img = c->images[i];
8648 eassert (PROCESSP (img->lisp_data));
8649 Fkill_process (img->lisp_data, Qnil);
8650 img->lisp_data = Qnil;
8652 #if defined (HAVE_X_WINDOWS)
8654 /* On displays with a mutable colormap, figure out the colors
8655 allocated for the image by looking at the pixels of an XImage for
8656 img->pixmap. */
8657 class = FRAME_X_VISUAL (f)->class;
8658 if (class != StaticColor && class != StaticGray && class != TrueColor)
8660 XImagePtr ximg;
8662 block_input ();
8664 /* Try to get an XImage for img->pixmep. */
8665 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
8666 0, 0, img->width, img->height, ~0, ZPixmap);
8667 if (ximg)
8669 int x, y;
8671 /* Initialize the color table. */
8672 init_color_table ();
8674 /* For each pixel of the image, look its color up in the
8675 color table. After having done so, the color table will
8676 contain an entry for each color used by the image. */
8677 for (y = 0; y < img->height; ++y)
8678 for (x = 0; x < img->width; ++x)
8680 unsigned long pixel = XGetPixel (ximg, x, y);
8681 lookup_pixel_color (f, pixel);
8684 /* Record colors in the image. Free color table and XImage. */
8685 #ifdef COLOR_TABLE_SUPPORT
8686 img->colors = colors_in_color_table (&img->ncolors);
8687 free_color_table ();
8688 #endif
8689 XDestroyImage (ximg);
8691 #if 0 /* This doesn't seem to be the case. If we free the colors
8692 here, we get a BadAccess later in x_clear_image when
8693 freeing the colors. */
8694 /* We have allocated colors once, but Ghostscript has also
8695 allocated colors on behalf of us. So, to get the
8696 reference counts right, free them once. */
8697 if (img->ncolors)
8698 x_free_colors (f, img->colors, img->ncolors);
8699 #endif
8701 else
8702 image_error ("Cannot get X image of `%s'; colors will not be freed",
8703 img->spec, Qnil);
8705 unblock_input ();
8707 #endif /* HAVE_X_WINDOWS */
8709 /* Now that we have the pixmap, compute mask and transform the
8710 image if requested. */
8711 block_input ();
8712 postprocess_image (f, img);
8713 unblock_input ();
8716 #endif /* HAVE_GHOSTSCRIPT */
8719 /***********************************************************************
8720 Tests
8721 ***********************************************************************/
8723 #ifdef GLYPH_DEBUG
8725 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
8726 doc: /* Value is non-nil if SPEC is a valid image specification. */)
8727 (Lisp_Object spec)
8729 return valid_image_p (spec) ? Qt : Qnil;
8733 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
8734 (Lisp_Object spec)
8736 ptrdiff_t id = -1;
8738 if (valid_image_p (spec))
8739 id = lookup_image (SELECTED_FRAME (), spec);
8741 debug_print (spec);
8742 return make_number (id);
8745 #endif /* GLYPH_DEBUG */
8748 /***********************************************************************
8749 Initialization
8750 ***********************************************************************/
8752 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 1, 1, 0,
8753 doc: /* Initialize image library implementing image type TYPE.
8754 Return non-nil if TYPE is a supported image type.
8756 If image libraries are loaded dynamically (currently only the case on
8757 MS-Windows), load the library for TYPE if it is not yet loaded, using
8758 the library file(s) specified by `dynamic-library-alist'. */)
8759 (Lisp_Object type)
8761 return lookup_image_type (type) ? Qt : Qnil;
8764 /* Look up image type TYPE, and return a pointer to its image_type
8765 structure. Return 0 if TYPE is not a known image type. */
8767 static struct image_type *
8768 lookup_image_type (Lisp_Object type)
8770 /* Types pbm and xbm are built-in and always available. */
8771 if (EQ (type, Qpbm))
8772 return define_image_type (&pbm_type);
8774 if (EQ (type, Qxbm))
8775 return define_image_type (&xbm_type);
8777 #if defined (HAVE_XPM) || defined (HAVE_NS)
8778 if (EQ (type, Qxpm))
8779 return define_image_type (&xpm_type);
8780 #endif
8782 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8783 if (EQ (type, Qjpeg))
8784 return define_image_type (&jpeg_type);
8785 #endif
8787 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8788 if (EQ (type, Qtiff))
8789 return define_image_type (&tiff_type);
8790 #endif
8792 #if defined (HAVE_GIF) || defined (HAVE_NS)
8793 if (EQ (type, Qgif))
8794 return define_image_type (&gif_type);
8795 #endif
8797 #if defined (HAVE_PNG) || defined (HAVE_NS)
8798 if (EQ (type, Qpng))
8799 return define_image_type (&png_type);
8800 #endif
8802 #if defined (HAVE_RSVG)
8803 if (EQ (type, Qsvg))
8804 return define_image_type (&svg_type);
8805 #endif
8807 #if defined (HAVE_IMAGEMAGICK)
8808 if (EQ (type, Qimagemagick))
8809 return define_image_type (&imagemagick_type);
8810 #endif
8812 #ifdef HAVE_GHOSTSCRIPT
8813 if (EQ (type, Qpostscript))
8814 return define_image_type (&gs_type);
8815 #endif
8817 return NULL;
8820 /* Reset image_types before dumping.
8821 Called from Fdump_emacs. */
8823 void
8824 reset_image_types (void)
8826 while (image_types)
8828 struct image_type *next = image_types->next;
8829 xfree (image_types);
8830 image_types = next;
8834 void
8835 syms_of_image (void)
8837 /* Initialize this only once; it will be reset before dumping. */
8838 image_types = NULL;
8840 /* Must be defined now because we're going to update it below, while
8841 defining the supported image types. */
8842 DEFVAR_LISP ("image-types", Vimage_types,
8843 doc: /* List of potentially supported image types.
8844 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8845 To check whether it is really supported, use `image-type-available-p'. */);
8846 Vimage_types = Qnil;
8848 DEFVAR_LISP ("max-image-size", Vmax_image_size,
8849 doc: /* Maximum size of images.
8850 Emacs will not load an image into memory if its pixel width or
8851 pixel height exceeds this limit.
8853 If the value is an integer, it directly specifies the maximum
8854 image height and width, measured in pixels. If it is a floating
8855 point number, it specifies the maximum image height and width
8856 as a ratio to the frame height and width. If the value is
8857 non-numeric, there is no explicit limit on the size of images. */);
8858 Vmax_image_size = make_float (MAX_IMAGE_SIZE);
8860 DEFSYM (Qcount, "count");
8861 DEFSYM (Qextension_data, "extension-data");
8862 DEFSYM (Qdelay, "delay");
8864 DEFSYM (QCascent, ":ascent");
8865 DEFSYM (QCmargin, ":margin");
8866 DEFSYM (QCrelief, ":relief");
8867 DEFSYM (QCconversion, ":conversion");
8868 DEFSYM (QCcolor_symbols, ":color-symbols");
8869 DEFSYM (QCheuristic_mask, ":heuristic-mask");
8870 DEFSYM (QCindex, ":index");
8871 DEFSYM (QCgeometry, ":geometry");
8872 DEFSYM (QCcrop, ":crop");
8873 DEFSYM (QCrotation, ":rotation");
8874 DEFSYM (QCmatrix, ":matrix");
8875 DEFSYM (QCcolor_adjustment, ":color-adjustment");
8876 DEFSYM (QCmask, ":mask");
8878 DEFSYM (Qlaplace, "laplace");
8879 DEFSYM (Qemboss, "emboss");
8880 DEFSYM (Qedge_detection, "edge-detection");
8881 DEFSYM (Qheuristic, "heuristic");
8883 DEFSYM (Qpostscript, "postscript");
8884 #ifdef HAVE_GHOSTSCRIPT
8885 ADD_IMAGE_TYPE (Qpostscript);
8886 DEFSYM (QCloader, ":loader");
8887 DEFSYM (QCbounding_box, ":bounding-box");
8888 DEFSYM (QCpt_width, ":pt-width");
8889 DEFSYM (QCpt_height, ":pt-height");
8890 #endif /* HAVE_GHOSTSCRIPT */
8892 #ifdef HAVE_NTGUI
8893 DEFSYM (Qlibpng_version, "libpng-version");
8894 Fset (Qlibpng_version,
8895 #if HAVE_PNG
8896 make_number (PNG_LIBPNG_VER)
8897 #else
8898 make_number (-1)
8899 #endif
8901 #endif
8903 DEFSYM (Qpbm, "pbm");
8904 ADD_IMAGE_TYPE (Qpbm);
8906 DEFSYM (Qxbm, "xbm");
8907 ADD_IMAGE_TYPE (Qxbm);
8909 #if defined (HAVE_XPM) || defined (HAVE_NS)
8910 DEFSYM (Qxpm, "xpm");
8911 ADD_IMAGE_TYPE (Qxpm);
8912 #endif
8914 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8915 DEFSYM (Qjpeg, "jpeg");
8916 ADD_IMAGE_TYPE (Qjpeg);
8917 #endif
8919 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8920 DEFSYM (Qtiff, "tiff");
8921 ADD_IMAGE_TYPE (Qtiff);
8922 #endif
8924 #if defined (HAVE_GIF) || defined (HAVE_NS)
8925 DEFSYM (Qgif, "gif");
8926 ADD_IMAGE_TYPE (Qgif);
8927 #endif
8929 #if defined (HAVE_PNG) || defined (HAVE_NS)
8930 DEFSYM (Qpng, "png");
8931 ADD_IMAGE_TYPE (Qpng);
8932 #endif
8934 #if defined (HAVE_IMAGEMAGICK)
8935 DEFSYM (Qimagemagick, "imagemagick");
8936 ADD_IMAGE_TYPE (Qimagemagick);
8937 #endif
8939 #if defined (HAVE_RSVG)
8940 DEFSYM (Qsvg, "svg");
8941 ADD_IMAGE_TYPE (Qsvg);
8942 #ifdef HAVE_NTGUI
8943 /* Other libraries used directly by svg code. */
8944 DEFSYM (Qgdk_pixbuf, "gdk-pixbuf");
8945 DEFSYM (Qglib, "glib");
8946 DEFSYM (Qgobject, "gobject");
8947 #endif /* HAVE_NTGUI */
8948 #endif /* HAVE_RSVG */
8950 defsubr (&Sinit_image_library);
8951 #ifdef HAVE_IMAGEMAGICK
8952 defsubr (&Simagemagick_types);
8953 #endif
8954 defsubr (&Sclear_image_cache);
8955 defsubr (&Simage_flush);
8956 defsubr (&Simage_size);
8957 defsubr (&Simage_mask_p);
8958 defsubr (&Simage_metadata);
8960 #ifdef GLYPH_DEBUG
8961 defsubr (&Simagep);
8962 defsubr (&Slookup_image);
8963 #endif
8965 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images,
8966 doc: /* Non-nil means always draw a cross over disabled images.
8967 Disabled images are those having a `:conversion disabled' property.
8968 A cross is always drawn on black & white displays. */);
8969 cross_disabled_images = 0;
8971 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path,
8972 doc: /* List of directories to search for window system bitmap files. */);
8973 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
8975 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay,
8976 doc: /* Maximum time after which images are removed from the cache.
8977 When an image has not been displayed this many seconds, Emacs
8978 automatically removes it from the image cache. If the cache contains
8979 a large number of images, the actual eviction time may be shorter.
8980 The value can also be nil, meaning the cache is never cleared.
8982 The function `clear-image-cache' disregards this variable. */);
8983 Vimage_cache_eviction_delay = make_number (300);
8984 #ifdef HAVE_IMAGEMAGICK
8985 DEFVAR_INT ("imagemagick-render-type", imagemagick_render_type,
8986 doc: /* Integer indicating which ImageMagick rendering method to use.
8987 The options are:
8988 0 -- the default method (pixel pushing)
8989 1 -- a newer method ("MagickExportImagePixels") that may perform
8990 better (speed etc) in some cases, but has not been as thoroughly
8991 tested with Emacs as the default method. This method requires
8992 ImageMagick version 6.4.6 (approximately) or later.
8993 */);
8994 /* MagickExportImagePixels is in 6.4.6-9, but not 6.4.4-10. */
8995 imagemagick_render_type = 0;
8996 #endif