mostly cosmetic, moving { instances, changing indentation accordingly.
[emacs.git] / src / image.c
blob9de83fa05e2532fab126fd64326eef3308f69e5f
1 /* Functions for image support on window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <stdio.h>
23 #include <math.h>
24 #include <ctype.h>
26 #ifdef HAVE_UNISTD_H
27 #include <unistd.h>
28 #endif
30 #ifdef HAVE_PNG
31 #if defined HAVE_LIBPNG_PNG_H
32 # include <libpng/png.h>
33 #else
34 # include <png.h>
35 #endif
36 #endif
38 #include <setjmp.h>
40 /* This makes the fields of a Display accessible, in Xlib header files. */
42 #define XLIB_ILLEGAL_ACCESS
44 #include "lisp.h"
45 #include "frame.h"
46 #include "window.h"
47 #include "dispextern.h"
48 #include "blockinput.h"
49 #include "systime.h"
50 #include <epaths.h>
51 #include "character.h"
52 #include "coding.h"
53 #include "termhooks.h"
54 #include "font.h"
56 #ifdef HAVE_X_WINDOWS
57 #include "xterm.h"
58 #include <sys/types.h>
59 #include <sys/stat.h>
61 #define COLOR_TABLE_SUPPORT 1
63 typedef struct x_bitmap_record Bitmap_Record;
64 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
65 #define NO_PIXMAP None
67 #define RGB_PIXEL_COLOR unsigned long
69 #define PIX_MASK_RETAIN 0
70 #define PIX_MASK_DRAW 1
71 #endif /* HAVE_X_WINDOWS */
74 #ifdef HAVE_NTGUI
75 #include "w32term.h"
77 /* W32_TODO : Color tables on W32. */
78 #undef COLOR_TABLE_SUPPORT
80 typedef struct w32_bitmap_record Bitmap_Record;
81 #define GET_PIXEL(ximg, x, y) GetPixel(ximg, x, y)
82 #define NO_PIXMAP 0
84 #define RGB_PIXEL_COLOR COLORREF
86 #define PIX_MASK_RETAIN 0
87 #define PIX_MASK_DRAW 1
89 #define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
90 #define x_defined_color w32_defined_color
91 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
93 /* Functions from w32term.c that depend on XColor (so can't go in w32term.h
94 without modifying lots of files). */
95 extern void x_query_colors (struct frame *f, XColor *colors, int ncolors);
96 extern void x_query_color (struct frame *f, XColor *color);
97 #endif /* HAVE_NTGUI */
99 #ifdef HAVE_NS
100 #include "nsterm.h"
101 #include <sys/types.h>
102 #include <sys/stat.h>
104 #undef COLOR_TABLE_SUPPORT
106 typedef struct ns_bitmap_record Bitmap_Record;
108 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
109 #define NO_PIXMAP 0
111 #define RGB_PIXEL_COLOR unsigned long
112 #define ZPixmap 0
114 #define PIX_MASK_RETAIN 0
115 #define PIX_MASK_DRAW 1
117 #define FRAME_X_VISUAL FRAME_NS_DISPLAY_INFO(f)->visual
118 #define x_defined_color(f, name, color_def, alloc) \
119 ns_defined_color (f, name, color_def, alloc, 0)
120 #define FRAME_X_SCREEN(f) 0
121 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
122 #endif /* HAVE_NS */
125 /* Search path for bitmap files. */
127 Lisp_Object Vx_bitmap_file_path;
130 static void x_disable_image P_ ((struct frame *, struct image *));
131 static void x_edge_detection P_ ((struct frame *, struct image *, Lisp_Object,
132 Lisp_Object));
134 static void init_color_table P_ ((void));
135 static unsigned long lookup_rgb_color P_ ((struct frame *f, int r, int g, int b));
136 #ifdef COLOR_TABLE_SUPPORT
137 static void free_color_table P_ ((void));
138 static unsigned long *colors_in_color_table P_ ((int *n));
139 static unsigned long lookup_pixel_color P_ ((struct frame *f, unsigned long p));
140 #endif
142 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
143 id, which is just an int that this section returns. Bitmaps are
144 reference counted so they can be shared among frames.
146 Bitmap indices are guaranteed to be > 0, so a negative number can
147 be used to indicate no bitmap.
149 If you use x_create_bitmap_from_data, then you must keep track of
150 the bitmaps yourself. That is, creating a bitmap from the same
151 data more than once will not be caught. */
153 #ifdef HAVE_NS
154 XImagePtr
155 XGetImage (Display *display, Pixmap pixmap, int x, int y,
156 unsigned int width, unsigned int height,
157 unsigned long plane_mask, int format)
159 /* TODO: not sure what this function is supposed to do.. */
160 ns_retain_object(pixmap);
161 return pixmap;
164 /* use with imgs created by ns_image_for_XPM */
165 unsigned long
166 XGetPixel (XImagePtr ximage, int x, int y)
168 return ns_get_pixel(ximage, x, y);
171 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
172 pixel is assumed to be in form RGB */
173 void
174 XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel)
176 ns_put_pixel(ximage, x, y, pixel);
178 #endif /* HAVE_NS */
181 /* Functions to access the contents of a bitmap, given an id. */
184 x_bitmap_height (f, id)
185 FRAME_PTR f;
186 int id;
188 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
192 x_bitmap_width (f, id)
193 FRAME_PTR f;
194 int id;
196 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
199 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
201 x_bitmap_pixmap (f, id)
202 FRAME_PTR f;
203 int id;
205 return (int) FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
207 #endif
209 #ifdef HAVE_X_WINDOWS
211 x_bitmap_mask (f, id)
212 FRAME_PTR f;
213 int id;
215 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].mask;
217 #endif
219 /* Allocate a new bitmap record. Returns index of new record. */
221 static int
222 x_allocate_bitmap_record (f)
223 FRAME_PTR f;
225 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
226 int i;
228 if (dpyinfo->bitmaps == NULL)
230 dpyinfo->bitmaps_size = 10;
231 dpyinfo->bitmaps
232 = (Bitmap_Record *) xmalloc (dpyinfo->bitmaps_size * sizeof (Bitmap_Record));
233 dpyinfo->bitmaps_last = 1;
234 return 1;
237 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
238 return ++dpyinfo->bitmaps_last;
240 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
241 if (dpyinfo->bitmaps[i].refcount == 0)
242 return i + 1;
244 dpyinfo->bitmaps_size *= 2;
245 dpyinfo->bitmaps
246 = (Bitmap_Record *) xrealloc (dpyinfo->bitmaps,
247 dpyinfo->bitmaps_size * sizeof (Bitmap_Record));
248 return ++dpyinfo->bitmaps_last;
251 /* Add one reference to the reference count of the bitmap with id ID. */
253 void
254 x_reference_bitmap (f, id)
255 FRAME_PTR f;
256 int id;
258 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
261 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
264 x_create_bitmap_from_data (f, bits, width, height)
265 struct frame *f;
266 char *bits;
267 unsigned int width, height;
269 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
270 int id;
272 #ifdef HAVE_X_WINDOWS
273 Pixmap bitmap;
274 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
275 bits, width, height);
276 if (! bitmap)
277 return -1;
278 #endif /* HAVE_X_WINDOWS */
280 #ifdef HAVE_NTGUI
281 Pixmap bitmap;
282 bitmap = CreateBitmap (width, height,
283 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_planes,
284 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_cbits,
285 bits);
286 if (! bitmap)
287 return -1;
288 #endif /* HAVE_NTGUI */
290 #ifdef HAVE_NS
291 void *bitmap = ns_image_from_XBM(bits, width, height);
292 if (!bitmap)
293 return -1;
294 #endif
296 id = x_allocate_bitmap_record (f);
298 #ifdef HAVE_NS
299 dpyinfo->bitmaps[id - 1].img = bitmap;
300 dpyinfo->bitmaps[id - 1].depth = 1;
301 #endif
303 dpyinfo->bitmaps[id - 1].file = NULL;
304 dpyinfo->bitmaps[id - 1].height = height;
305 dpyinfo->bitmaps[id - 1].width = width;
306 dpyinfo->bitmaps[id - 1].refcount = 1;
308 #ifdef HAVE_X_WINDOWS
309 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
310 dpyinfo->bitmaps[id - 1].have_mask = 0;
311 dpyinfo->bitmaps[id - 1].depth = 1;
312 #endif /* HAVE_X_WINDOWS */
314 #ifdef HAVE_NTGUI
315 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
316 dpyinfo->bitmaps[id - 1].hinst = NULL;
317 dpyinfo->bitmaps[id - 1].depth = 1;
318 #endif /* HAVE_NTGUI */
320 return id;
323 /* Create bitmap from file FILE for frame F. */
326 x_create_bitmap_from_file (f, file)
327 struct frame *f;
328 Lisp_Object file;
330 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
332 #ifdef HAVE_NTGUI
333 return -1; /* W32_TODO : bitmap support */
334 #endif /* HAVE_NTGUI */
336 #ifdef HAVE_NS
337 int id;
338 void *bitmap = ns_image_from_file(file);
340 if (!bitmap)
341 return -1;
344 id = x_allocate_bitmap_record (f);
345 dpyinfo->bitmaps[id - 1].img = bitmap;
346 dpyinfo->bitmaps[id - 1].refcount = 1;
347 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (SBYTES (file) + 1);
348 dpyinfo->bitmaps[id - 1].depth = 1;
349 dpyinfo->bitmaps[id - 1].height = ns_image_width(bitmap);
350 dpyinfo->bitmaps[id - 1].width = ns_image_height(bitmap);
351 strcpy (dpyinfo->bitmaps[id - 1].file, SDATA (file));
352 return id;
353 #endif
355 #ifdef HAVE_X_WINDOWS
356 unsigned int width, height;
357 Pixmap bitmap;
358 int xhot, yhot, result, id;
359 Lisp_Object found;
360 int fd;
361 char *filename;
363 /* Look for an existing bitmap with the same name. */
364 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
366 if (dpyinfo->bitmaps[id].refcount
367 && dpyinfo->bitmaps[id].file
368 && !strcmp (dpyinfo->bitmaps[id].file, (char *) SDATA (file)))
370 ++dpyinfo->bitmaps[id].refcount;
371 return id + 1;
375 /* Search bitmap-file-path for the file, if appropriate. */
376 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
377 if (fd < 0)
378 return -1;
379 emacs_close (fd);
381 filename = (char *) SDATA (found);
383 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
384 filename, &width, &height, &bitmap, &xhot, &yhot);
385 if (result != BitmapSuccess)
386 return -1;
388 id = x_allocate_bitmap_record (f);
389 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
390 dpyinfo->bitmaps[id - 1].have_mask = 0;
391 dpyinfo->bitmaps[id - 1].refcount = 1;
392 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (SBYTES (file) + 1);
393 dpyinfo->bitmaps[id - 1].depth = 1;
394 dpyinfo->bitmaps[id - 1].height = height;
395 dpyinfo->bitmaps[id - 1].width = width;
396 strcpy (dpyinfo->bitmaps[id - 1].file, SDATA (file));
398 return id;
399 #endif /* HAVE_X_WINDOWS */
402 /* Free bitmap B. */
404 static void
405 free_bitmap_record (dpyinfo, bm)
406 Display_Info *dpyinfo;
407 Bitmap_Record *bm;
409 #ifdef HAVE_X_WINDOWS
410 XFreePixmap (dpyinfo->display, bm->pixmap);
411 if (bm->have_mask)
412 XFreePixmap (dpyinfo->display, bm->mask);
413 #endif /* HAVE_X_WINDOWS */
415 #ifdef HAVE_NTGUI
416 DeleteObject (bm->pixmap);
417 #endif /* HAVE_NTGUI */
419 #ifdef HAVE_NS
420 ns_release_object(bm->img);
421 #endif
423 if (bm->file)
425 xfree (bm->file);
426 bm->file = NULL;
430 /* Remove reference to bitmap with id number ID. */
432 void
433 x_destroy_bitmap (f, id)
434 FRAME_PTR f;
435 int id;
437 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
439 if (id > 0)
441 Bitmap_Record *bm = &dpyinfo->bitmaps[id - 1];
443 if (--bm->refcount == 0)
445 BLOCK_INPUT;
446 free_bitmap_record (dpyinfo, bm);
447 UNBLOCK_INPUT;
452 /* Free all the bitmaps for the display specified by DPYINFO. */
454 void
455 x_destroy_all_bitmaps (dpyinfo)
456 Display_Info *dpyinfo;
458 int i;
459 Bitmap_Record *bm = dpyinfo->bitmaps;
461 for (i = 0; i < dpyinfo->bitmaps_last; i++, bm++)
462 if (bm->refcount > 0)
463 free_bitmap_record (dpyinfo, bm);
465 dpyinfo->bitmaps_last = 0;
469 #ifdef HAVE_X_WINDOWS
471 /* Useful functions defined in the section
472 `Image type independent image structures' below. */
474 static unsigned long four_corners_best P_ ((XImagePtr ximg,
475 int *corners,
476 unsigned long width,
477 unsigned long height));
479 static int x_create_x_image_and_pixmap P_ ((struct frame *f, int width, int height,
480 int depth, XImagePtr *ximg,
481 Pixmap *pixmap));
483 static void x_destroy_x_image P_ ((XImagePtr ximg));
486 /* Create a mask of a bitmap. Note is this not a perfect mask.
487 It's nicer with some borders in this context */
490 x_create_bitmap_mask (f, id)
491 struct frame *f;
492 int id;
494 Pixmap pixmap, mask;
495 XImagePtr ximg, mask_img;
496 unsigned long width, height;
497 int result;
498 unsigned long bg;
499 unsigned long x, y, xp, xm, yp, ym;
500 GC gc;
502 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
504 if (!(id > 0))
505 return -1;
507 pixmap = x_bitmap_pixmap (f, id);
508 width = x_bitmap_width (f, id);
509 height = x_bitmap_height (f, id);
511 BLOCK_INPUT;
512 ximg = XGetImage (FRAME_X_DISPLAY (f), pixmap, 0, 0, width, height,
513 ~0, ZPixmap);
515 if (!ximg)
517 UNBLOCK_INPUT;
518 return -1;
521 result = x_create_x_image_and_pixmap (f, width, height, 1, &mask_img, &mask);
523 UNBLOCK_INPUT;
524 if (!result)
526 XDestroyImage (ximg);
527 return -1;
530 bg = four_corners_best (ximg, NULL, width, height);
532 for (y = 0; y < ximg->height; ++y)
534 for (x = 0; x < ximg->width; ++x)
536 xp = x != ximg->width - 1 ? x + 1 : 0;
537 xm = x != 0 ? x - 1 : ximg->width - 1;
538 yp = y != ximg->height - 1 ? y + 1 : 0;
539 ym = y != 0 ? y - 1 : ximg->height - 1;
540 if (XGetPixel (ximg, x, y) == bg
541 && XGetPixel (ximg, x, yp) == bg
542 && XGetPixel (ximg, x, ym) == bg
543 && XGetPixel (ximg, xp, y) == bg
544 && XGetPixel (ximg, xp, yp) == bg
545 && XGetPixel (ximg, xp, ym) == bg
546 && XGetPixel (ximg, xm, y) == bg
547 && XGetPixel (ximg, xm, yp) == bg
548 && XGetPixel (ximg, xm, ym) == bg)
549 XPutPixel (mask_img, x, y, 0);
550 else
551 XPutPixel (mask_img, x, y, 1);
555 xassert (interrupt_input_blocked);
556 gc = XCreateGC (FRAME_X_DISPLAY (f), mask, 0, NULL);
557 XPutImage (FRAME_X_DISPLAY (f), mask, gc, mask_img, 0, 0, 0, 0,
558 width, height);
559 XFreeGC (FRAME_X_DISPLAY (f), gc);
561 dpyinfo->bitmaps[id - 1].have_mask = 1;
562 dpyinfo->bitmaps[id - 1].mask = mask;
564 XDestroyImage (ximg);
565 x_destroy_x_image (mask_img);
567 return 0;
570 #endif /* HAVE_X_WINDOWS */
573 /***********************************************************************
574 Image types
575 ***********************************************************************/
577 /* Value is the number of elements of vector VECTOR. */
579 #define DIM(VECTOR) (sizeof (VECTOR) / sizeof *(VECTOR))
581 /* List of supported image types. Use define_image_type to add new
582 types. Use lookup_image_type to find a type for a given symbol. */
584 static struct image_type *image_types;
586 /* A list of symbols, one for each supported image type. */
588 Lisp_Object Vimage_types;
590 /* An alist of image types and libraries that implement the type. */
592 Lisp_Object Vimage_library_alist;
594 /* Cache for delayed-loading image types. */
596 static Lisp_Object Vimage_type_cache;
598 /* The symbol `xbm' which is used as the type symbol for XBM images. */
600 Lisp_Object Qxbm;
602 /* Keywords. */
604 extern Lisp_Object QCwidth, QCheight, QCforeground, QCbackground, QCfile;
605 extern Lisp_Object QCdata, QCtype;
606 extern Lisp_Object Qcenter;
607 Lisp_Object QCascent, QCmargin, QCrelief, Qcount, Qextension_data;
608 Lisp_Object QCconversion, QCcolor_symbols, QCheuristic_mask;
609 Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask, QCgeometry, QCcrop, QCrotation;
611 /* Other symbols. */
613 Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
615 /* Time in seconds after which images should be removed from the cache
616 if not displayed. */
618 Lisp_Object Vimage_cache_eviction_delay;
620 /* Function prototypes. */
622 static Lisp_Object define_image_type P_ ((struct image_type *type, int loaded));
623 static struct image_type *lookup_image_type P_ ((Lisp_Object symbol));
624 static void image_error P_ ((char *format, Lisp_Object, Lisp_Object));
625 static void x_laplace P_ ((struct frame *, struct image *));
626 static void x_emboss P_ ((struct frame *, struct image *));
627 static int x_build_heuristic_mask P_ ((struct frame *, struct image *,
628 Lisp_Object));
630 #define CACHE_IMAGE_TYPE(type, status) \
631 do { Vimage_type_cache = Fcons (Fcons (type, status), Vimage_type_cache); } while (0)
633 #define ADD_IMAGE_TYPE(type) \
634 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
636 /* Define a new image type from TYPE. This adds a copy of TYPE to
637 image_types and caches the loading status of TYPE. */
639 static Lisp_Object
640 define_image_type (type, loaded)
641 struct image_type *type;
642 int loaded;
644 Lisp_Object success;
646 if (!loaded)
647 success = Qnil;
648 else
650 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
651 The initialized data segment is read-only. */
652 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
653 bcopy (type, p, sizeof *p);
654 p->next = image_types;
655 image_types = p;
656 success = Qt;
659 CACHE_IMAGE_TYPE (*type->type, success);
660 return success;
664 /* Look up image type SYMBOL, and return a pointer to its image_type
665 structure. Value is null if SYMBOL is not a known image type. */
667 static INLINE struct image_type *
668 lookup_image_type (symbol)
669 Lisp_Object symbol;
671 struct image_type *type;
673 /* We must initialize the image-type if it hasn't been already. */
674 if (NILP (Finit_image_library (symbol, Vimage_library_alist)))
675 return 0; /* unimplemented */
677 for (type = image_types; type; type = type->next)
678 if (EQ (symbol, *type->type))
679 break;
681 return type;
685 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
686 valid image specification is a list whose car is the symbol
687 `image', and whose rest is a property list. The property list must
688 contain a value for key `:type'. That value must be the name of a
689 supported image type. The rest of the property list depends on the
690 image type. */
693 valid_image_p (object)
694 Lisp_Object object;
696 int valid_p = 0;
698 if (IMAGEP (object))
700 Lisp_Object tem;
702 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
703 if (EQ (XCAR (tem), QCtype))
705 tem = XCDR (tem);
706 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
708 struct image_type *type;
709 type = lookup_image_type (XCAR (tem));
710 if (type)
711 valid_p = type->valid_p (object);
714 break;
718 return valid_p;
722 /* Log error message with format string FORMAT and argument ARG.
723 Signaling an error, e.g. when an image cannot be loaded, is not a
724 good idea because this would interrupt redisplay, and the error
725 message display would lead to another redisplay. This function
726 therefore simply displays a message. */
728 static void
729 image_error (format, arg1, arg2)
730 char *format;
731 Lisp_Object arg1, arg2;
733 add_to_log (format, arg1, arg2);
738 /***********************************************************************
739 Image specifications
740 ***********************************************************************/
742 enum image_value_type
744 IMAGE_DONT_CHECK_VALUE_TYPE,
745 IMAGE_STRING_VALUE,
746 IMAGE_STRING_OR_NIL_VALUE,
747 IMAGE_SYMBOL_VALUE,
748 IMAGE_POSITIVE_INTEGER_VALUE,
749 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
750 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
751 IMAGE_ASCENT_VALUE,
752 IMAGE_INTEGER_VALUE,
753 IMAGE_FUNCTION_VALUE,
754 IMAGE_NUMBER_VALUE,
755 IMAGE_BOOL_VALUE
758 /* Structure used when parsing image specifications. */
760 struct image_keyword
762 /* Name of keyword. */
763 char *name;
765 /* The type of value allowed. */
766 enum image_value_type type;
768 /* Non-zero means key must be present. */
769 int mandatory_p;
771 /* Used to recognize duplicate keywords in a property list. */
772 int count;
774 /* The value that was found. */
775 Lisp_Object value;
779 static int parse_image_spec P_ ((Lisp_Object, struct image_keyword *,
780 int, Lisp_Object));
781 static Lisp_Object image_spec_value P_ ((Lisp_Object, Lisp_Object, int *));
784 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
785 has the format (image KEYWORD VALUE ...). One of the keyword/
786 value pairs must be `:type TYPE'. KEYWORDS is a vector of
787 image_keywords structures of size NKEYWORDS describing other
788 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
790 static int
791 parse_image_spec (spec, keywords, nkeywords, type)
792 Lisp_Object spec;
793 struct image_keyword *keywords;
794 int nkeywords;
795 Lisp_Object type;
797 int i;
798 Lisp_Object plist;
800 if (!IMAGEP (spec))
801 return 0;
803 plist = XCDR (spec);
804 while (CONSP (plist))
806 Lisp_Object key, value;
808 /* First element of a pair must be a symbol. */
809 key = XCAR (plist);
810 plist = XCDR (plist);
811 if (!SYMBOLP (key))
812 return 0;
814 /* There must follow a value. */
815 if (!CONSP (plist))
816 return 0;
817 value = XCAR (plist);
818 plist = XCDR (plist);
820 /* Find key in KEYWORDS. Error if not found. */
821 for (i = 0; i < nkeywords; ++i)
822 if (strcmp (keywords[i].name, SDATA (SYMBOL_NAME (key))) == 0)
823 break;
825 if (i == nkeywords)
826 continue;
828 /* Record that we recognized the keyword. If a keywords
829 was found more than once, it's an error. */
830 keywords[i].value = value;
831 ++keywords[i].count;
833 if (keywords[i].count > 1)
834 return 0;
836 /* Check type of value against allowed type. */
837 switch (keywords[i].type)
839 case IMAGE_STRING_VALUE:
840 if (!STRINGP (value))
841 return 0;
842 break;
844 case IMAGE_STRING_OR_NIL_VALUE:
845 if (!STRINGP (value) && !NILP (value))
846 return 0;
847 break;
849 case IMAGE_SYMBOL_VALUE:
850 if (!SYMBOLP (value))
851 return 0;
852 break;
854 case IMAGE_POSITIVE_INTEGER_VALUE:
855 if (!INTEGERP (value) || XINT (value) <= 0)
856 return 0;
857 break;
859 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR:
860 if (INTEGERP (value) && XINT (value) >= 0)
861 break;
862 if (CONSP (value)
863 && INTEGERP (XCAR (value)) && INTEGERP (XCDR (value))
864 && XINT (XCAR (value)) >= 0 && XINT (XCDR (value)) >= 0)
865 break;
866 return 0;
868 case IMAGE_ASCENT_VALUE:
869 if (SYMBOLP (value) && EQ (value, Qcenter))
870 break;
871 else if (INTEGERP (value)
872 && XINT (value) >= 0
873 && XINT (value) <= 100)
874 break;
875 return 0;
877 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
878 if (!INTEGERP (value) || XINT (value) < 0)
879 return 0;
880 break;
882 case IMAGE_DONT_CHECK_VALUE_TYPE:
883 break;
885 case IMAGE_FUNCTION_VALUE:
886 value = indirect_function (value);
887 if (SUBRP (value)
888 || COMPILEDP (value)
889 || (CONSP (value) && EQ (XCAR (value), Qlambda)))
890 break;
891 return 0;
893 case IMAGE_NUMBER_VALUE:
894 if (!INTEGERP (value) && !FLOATP (value))
895 return 0;
896 break;
898 case IMAGE_INTEGER_VALUE:
899 if (!INTEGERP (value))
900 return 0;
901 break;
903 case IMAGE_BOOL_VALUE:
904 if (!NILP (value) && !EQ (value, Qt))
905 return 0;
906 break;
908 default:
909 abort ();
910 break;
913 if (EQ (key, QCtype) && !EQ (type, value))
914 return 0;
917 /* Check that all mandatory fields are present. */
918 for (i = 0; i < nkeywords; ++i)
919 if (keywords[i].mandatory_p && keywords[i].count == 0)
920 return 0;
922 return NILP (plist);
926 /* Return the value of KEY in image specification SPEC. Value is nil
927 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
928 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
930 static Lisp_Object
931 image_spec_value (spec, key, found)
932 Lisp_Object spec, key;
933 int *found;
935 Lisp_Object tail;
937 xassert (valid_image_p (spec));
939 for (tail = XCDR (spec);
940 CONSP (tail) && CONSP (XCDR (tail));
941 tail = XCDR (XCDR (tail)))
943 if (EQ (XCAR (tail), key))
945 if (found)
946 *found = 1;
947 return XCAR (XCDR (tail));
951 if (found)
952 *found = 0;
953 return Qnil;
957 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
958 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
959 PIXELS non-nil means return the size in pixels, otherwise return the
960 size in canonical character units.
961 FRAME is the frame on which the image will be displayed. FRAME nil
962 or omitted means use the selected frame. */)
963 (spec, pixels, frame)
964 Lisp_Object spec, pixels, frame;
966 Lisp_Object size;
968 size = Qnil;
969 if (valid_image_p (spec))
971 struct frame *f = check_x_frame (frame);
972 int id = lookup_image (f, spec);
973 struct image *img = IMAGE_FROM_ID (f, id);
974 int width = img->width + 2 * img->hmargin;
975 int height = img->height + 2 * img->vmargin;
977 if (NILP (pixels))
978 size = Fcons (make_float ((double) width / FRAME_COLUMN_WIDTH (f)),
979 make_float ((double) height / FRAME_LINE_HEIGHT (f)));
980 else
981 size = Fcons (make_number (width), make_number (height));
983 else
984 error ("Invalid image specification");
986 return size;
990 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
991 doc: /* Return t if image SPEC has a mask bitmap.
992 FRAME is the frame on which the image will be displayed. FRAME nil
993 or omitted means use the selected frame. */)
994 (spec, frame)
995 Lisp_Object spec, frame;
997 Lisp_Object mask;
999 mask = Qnil;
1000 if (valid_image_p (spec))
1002 struct frame *f = check_x_frame (frame);
1003 int id = lookup_image (f, spec);
1004 struct image *img = IMAGE_FROM_ID (f, id);
1005 if (img->mask)
1006 mask = Qt;
1008 else
1009 error ("Invalid image specification");
1011 return mask;
1014 DEFUN ("image-metadata", Fimage_metadata, Simage_metadata, 1, 2, 0,
1015 doc: /* Return metadata for image SPEC.
1016 FRAME is the frame on which the image will be displayed. FRAME nil
1017 or omitted means use the selected frame. */)
1018 (spec, frame)
1019 Lisp_Object spec, frame;
1021 Lisp_Object ext;
1023 ext = Qnil;
1024 if (valid_image_p (spec))
1026 struct frame *f = check_x_frame (frame);
1027 int id = lookup_image (f, spec);
1028 struct image *img = IMAGE_FROM_ID (f, id);
1029 ext = img->data.lisp_val;
1032 return ext;
1036 /***********************************************************************
1037 Image type independent image structures
1038 ***********************************************************************/
1040 static struct image *make_image P_ ((Lisp_Object spec, unsigned hash));
1041 static void free_image P_ ((struct frame *f, struct image *img));
1042 static int check_image_size P_ ((struct frame *f, int width, int height));
1044 #define MAX_IMAGE_SIZE 6.0
1045 Lisp_Object Vmax_image_size;
1047 /* Allocate and return a new image structure for image specification
1048 SPEC. SPEC has a hash value of HASH. */
1050 static struct image *
1051 make_image (spec, hash)
1052 Lisp_Object spec;
1053 unsigned hash;
1055 struct image *img = (struct image *) xmalloc (sizeof *img);
1056 Lisp_Object file = image_spec_value (spec, QCfile, NULL);
1058 xassert (valid_image_p (spec));
1059 bzero (img, sizeof *img);
1060 img->dependencies = NILP (file) ? Qnil : list1 (file);
1061 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
1062 xassert (img->type != NULL);
1063 img->spec = spec;
1064 img->data.lisp_val = Qnil;
1065 img->ascent = DEFAULT_IMAGE_ASCENT;
1066 img->hash = hash;
1067 img->corners[BOT_CORNER] = -1; /* Full image */
1068 return img;
1072 /* Free image IMG which was used on frame F, including its resources. */
1074 static void
1075 free_image (f, img)
1076 struct frame *f;
1077 struct image *img;
1079 if (img)
1081 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1083 /* Remove IMG from the hash table of its cache. */
1084 if (img->prev)
1085 img->prev->next = img->next;
1086 else
1087 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
1089 if (img->next)
1090 img->next->prev = img->prev;
1092 c->images[img->id] = NULL;
1094 /* Free resources, then free IMG. */
1095 img->type->free (f, img);
1096 xfree (img);
1100 /* Return 1 if the given widths and heights are valid for display;
1101 otherwise, return 0. */
1104 check_image_size (f, width, height)
1105 struct frame *f;
1106 int width;
1107 int height;
1109 int w, h;
1111 if (width <= 0 || height <= 0)
1112 return 0;
1114 if (INTEGERP (Vmax_image_size))
1115 w = h = XINT (Vmax_image_size);
1116 else if (FLOATP (Vmax_image_size))
1118 if (f != NULL)
1120 w = FRAME_PIXEL_WIDTH (f);
1121 h = FRAME_PIXEL_HEIGHT (f);
1123 else
1124 w = h = 1024; /* Arbitrary size for unknown frame. */
1125 w = (int) (XFLOAT_DATA (Vmax_image_size) * w);
1126 h = (int) (XFLOAT_DATA (Vmax_image_size) * h);
1128 else
1129 return 1;
1131 return (width <= w && height <= h);
1134 /* Prepare image IMG for display on frame F. Must be called before
1135 drawing an image. */
1137 void
1138 prepare_image_for_display (f, img)
1139 struct frame *f;
1140 struct image *img;
1142 EMACS_TIME t;
1144 /* We're about to display IMG, so set its timestamp to `now'. */
1145 EMACS_GET_TIME (t);
1146 img->timestamp = EMACS_SECS (t);
1148 /* If IMG doesn't have a pixmap yet, load it now, using the image
1149 type dependent loader function. */
1150 if (img->pixmap == NO_PIXMAP && !img->load_failed_p)
1151 img->load_failed_p = img->type->load (f, img) == 0;
1156 /* Value is the number of pixels for the ascent of image IMG when
1157 drawn in face FACE. */
1160 image_ascent (img, face, slice)
1161 struct image *img;
1162 struct face *face;
1163 struct glyph_slice *slice;
1165 int height;
1166 int ascent;
1168 if (slice->height == img->height)
1169 height = img->height + img->vmargin;
1170 else if (slice->y == 0)
1171 height = slice->height + img->vmargin;
1172 else
1173 height = slice->height;
1175 if (img->ascent == CENTERED_IMAGE_ASCENT)
1177 if (face->font)
1179 #ifdef HAVE_NTGUI
1180 /* W32 specific version. Why?. ++kfs */
1181 ascent = height / 2 - (FONT_DESCENT (face->font)
1182 - FONT_BASE (face->font)) / 2;
1183 #else
1184 /* This expression is arranged so that if the image can't be
1185 exactly centered, it will be moved slightly up. This is
1186 because a typical font is `top-heavy' (due to the presence
1187 uppercase letters), so the image placement should err towards
1188 being top-heavy too. It also just generally looks better. */
1189 ascent = (height + FONT_BASE(face->font)
1190 - FONT_DESCENT(face->font) + 1) / 2;
1191 #endif /* HAVE_NTGUI */
1193 else
1194 ascent = height / 2;
1196 else
1197 ascent = (int) (height * img->ascent / 100.0);
1199 return ascent;
1203 /* Image background colors. */
1205 /* Find the "best" corner color of a bitmap.
1206 On W32, XIMG is assumed to a device context with the bitmap selected. */
1208 static RGB_PIXEL_COLOR
1209 four_corners_best (ximg, corners, width, height)
1210 XImagePtr_or_DC ximg;
1211 int *corners;
1212 unsigned long width, height;
1214 RGB_PIXEL_COLOR corner_pixels[4], best;
1215 int i, best_count;
1217 if (corners && corners[BOT_CORNER] >= 0)
1219 /* Get the colors at the corner_pixels of ximg. */
1220 corner_pixels[0] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[TOP_CORNER]);
1221 corner_pixels[1] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[TOP_CORNER]);
1222 corner_pixels[2] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[BOT_CORNER] - 1);
1223 corner_pixels[3] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[BOT_CORNER] - 1);
1225 else
1227 /* Get the colors at the corner_pixels of ximg. */
1228 corner_pixels[0] = GET_PIXEL (ximg, 0, 0);
1229 corner_pixels[1] = GET_PIXEL (ximg, width - 1, 0);
1230 corner_pixels[2] = GET_PIXEL (ximg, width - 1, height - 1);
1231 corner_pixels[3] = GET_PIXEL (ximg, 0, height - 1);
1233 /* Choose the most frequently found color as background. */
1234 for (i = best_count = 0; i < 4; ++i)
1236 int j, n;
1238 for (j = n = 0; j < 4; ++j)
1239 if (corner_pixels[i] == corner_pixels[j])
1240 ++n;
1242 if (n > best_count)
1243 best = corner_pixels[i], best_count = n;
1246 return best;
1249 /* Portability macros */
1251 #ifdef HAVE_NTGUI
1253 #define Destroy_Image(img_dc, prev) \
1254 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1256 #define Free_Pixmap(display, pixmap) \
1257 DeleteObject (pixmap)
1259 #elif defined (HAVE_NS)
1261 #define Destroy_Image(ximg, dummy) \
1262 ns_release_object(ximg)
1264 #define Free_Pixmap(display, pixmap) \
1265 ns_release_object(pixmap)
1267 #else
1269 #define Destroy_Image(ximg, dummy) \
1270 XDestroyImage (ximg)
1272 #define Free_Pixmap(display, pixmap) \
1273 XFreePixmap (display, pixmap)
1275 #endif /* !HAVE_NTGUI && !HAVE_NS */
1278 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1279 it is guessed heuristically. If non-zero, XIMG is an existing
1280 XImage object (or device context with the image selected on W32) to
1281 use for the heuristic. */
1283 RGB_PIXEL_COLOR
1284 image_background (img, f, ximg)
1285 struct image *img;
1286 struct frame *f;
1287 XImagePtr_or_DC ximg;
1289 if (! img->background_valid)
1290 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1292 int free_ximg = !ximg;
1293 #ifdef HAVE_NTGUI
1294 HGDIOBJ prev;
1295 #endif /* HAVE_NTGUI */
1297 if (free_ximg)
1299 #ifndef HAVE_NTGUI
1300 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
1301 0, 0, img->width, img->height, ~0, ZPixmap);
1302 #else
1303 HDC frame_dc = get_frame_dc (f);
1304 ximg = CreateCompatibleDC (frame_dc);
1305 release_frame_dc (f, frame_dc);
1306 prev = SelectObject (ximg, img->pixmap);
1307 #endif /* !HAVE_NTGUI */
1310 img->background = four_corners_best (ximg, img->corners, img->width, img->height);
1312 if (free_ximg)
1313 Destroy_Image (ximg, prev);
1315 img->background_valid = 1;
1318 return img->background;
1321 /* Return the `background_transparent' field of IMG. If IMG doesn't
1322 have one yet, it is guessed heuristically. If non-zero, MASK is an
1323 existing XImage object to use for the heuristic. */
1326 image_background_transparent (img, f, mask)
1327 struct image *img;
1328 struct frame *f;
1329 XImagePtr_or_DC mask;
1331 if (! img->background_transparent_valid)
1332 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1334 if (img->mask)
1336 int free_mask = !mask;
1337 #ifdef HAVE_NTGUI
1338 HGDIOBJ prev;
1339 #endif /* HAVE_NTGUI */
1341 if (free_mask)
1343 #ifndef HAVE_NTGUI
1344 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
1345 0, 0, img->width, img->height, ~0, ZPixmap);
1346 #else
1347 HDC frame_dc = get_frame_dc (f);
1348 mask = CreateCompatibleDC (frame_dc);
1349 release_frame_dc (f, frame_dc);
1350 prev = SelectObject (mask, img->mask);
1351 #endif /* HAVE_NTGUI */
1354 img->background_transparent
1355 = (four_corners_best (mask, img->corners, img->width, img->height) == PIX_MASK_RETAIN);
1357 if (free_mask)
1358 Destroy_Image (mask, prev);
1360 else
1361 img->background_transparent = 0;
1363 img->background_transparent_valid = 1;
1366 return img->background_transparent;
1370 /***********************************************************************
1371 Helper functions for X image types
1372 ***********************************************************************/
1374 static void x_clear_image_1 P_ ((struct frame *, struct image *, int,
1375 int, int));
1376 static void x_clear_image P_ ((struct frame *f, struct image *img));
1377 static unsigned long x_alloc_image_color P_ ((struct frame *f,
1378 struct image *img,
1379 Lisp_Object color_name,
1380 unsigned long dflt));
1383 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
1384 free the pixmap if any. MASK_P non-zero means clear the mask
1385 pixmap if any. COLORS_P non-zero means free colors allocated for
1386 the image, if any. */
1388 static void
1389 x_clear_image_1 (f, img, pixmap_p, mask_p, colors_p)
1390 struct frame *f;
1391 struct image *img;
1392 int pixmap_p, mask_p, colors_p;
1394 if (pixmap_p && img->pixmap)
1396 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
1397 img->pixmap = NO_PIXMAP;
1398 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1399 img->background_valid = 0;
1402 if (mask_p && img->mask)
1404 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1405 img->mask = NO_PIXMAP;
1406 img->background_transparent_valid = 0;
1409 if (colors_p && img->ncolors)
1411 /* W32_TODO: color table support. */
1412 #ifdef HAVE_X_WINDOWS
1413 x_free_colors (f, img->colors, img->ncolors);
1414 #endif /* HAVE_X_WINDOWS */
1415 xfree (img->colors);
1416 img->colors = NULL;
1417 img->ncolors = 0;
1422 /* Free X resources of image IMG which is used on frame F. */
1424 static void
1425 x_clear_image (f, img)
1426 struct frame *f;
1427 struct image *img;
1429 BLOCK_INPUT;
1430 x_clear_image_1 (f, img, 1, 1, 1);
1431 UNBLOCK_INPUT;
1435 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1436 cannot be allocated, use DFLT. Add a newly allocated color to
1437 IMG->colors, so that it can be freed again. Value is the pixel
1438 color. */
1440 static unsigned long
1441 x_alloc_image_color (f, img, color_name, dflt)
1442 struct frame *f;
1443 struct image *img;
1444 Lisp_Object color_name;
1445 unsigned long dflt;
1447 XColor color;
1448 unsigned long result;
1450 xassert (STRINGP (color_name));
1452 if (x_defined_color (f, SDATA (color_name), &color, 1))
1454 /* This isn't called frequently so we get away with simply
1455 reallocating the color vector to the needed size, here. */
1456 ++img->ncolors;
1457 img->colors =
1458 (unsigned long *) xrealloc (img->colors,
1459 img->ncolors * sizeof *img->colors);
1460 img->colors[img->ncolors - 1] = color.pixel;
1461 result = color.pixel;
1463 else
1464 result = dflt;
1466 return result;
1471 /***********************************************************************
1472 Image Cache
1473 ***********************************************************************/
1475 static struct image *search_image_cache P_ ((struct frame *, Lisp_Object, unsigned));
1476 static void cache_image P_ ((struct frame *f, struct image *img));
1477 static void postprocess_image P_ ((struct frame *, struct image *));
1479 /* Return a new, initialized image cache that is allocated from the
1480 heap. Call free_image_cache to free an image cache. */
1482 struct image_cache *
1483 make_image_cache ()
1485 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
1486 int size;
1488 bzero (c, sizeof *c);
1489 c->size = 50;
1490 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
1491 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
1492 c->buckets = (struct image **) xmalloc (size);
1493 bzero (c->buckets, size);
1494 return c;
1498 /* Find an image matching SPEC in the cache, and return it. If no
1499 image is found, return NULL. */
1500 static struct image *
1501 search_image_cache (f, spec, hash)
1502 struct frame *f;
1503 Lisp_Object spec;
1504 unsigned hash;
1506 struct image *img;
1507 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1508 int i = hash % IMAGE_CACHE_BUCKETS_SIZE;
1510 if (!c) return NULL;
1512 /* If the image spec does not specify a background color, the cached
1513 image must have the same background color as the current frame.
1514 The foreground color must also match, for the sake of monochrome
1515 images.
1517 In fact, we could ignore the foreground color matching condition
1518 for color images, or if the image spec specifies :foreground;
1519 similarly we could ignore the background color matching condition
1520 for formats that don't use transparency (such as jpeg), or if the
1521 image spec specifies :background. However, the extra memory
1522 usage is probably negligible in practice, so we don't bother. */
1524 for (img = c->buckets[i]; img; img = img->next)
1525 if (img->hash == hash
1526 && !NILP (Fequal (img->spec, spec))
1527 && img->frame_foreground == FRAME_FOREGROUND_PIXEL (f)
1528 && img->frame_background == FRAME_BACKGROUND_PIXEL (f))
1529 break;
1530 return img;
1534 /* Search frame F for an image with spec SPEC, and free it. */
1536 static void
1537 uncache_image (f, spec)
1538 struct frame *f;
1539 Lisp_Object spec;
1541 struct image *img = search_image_cache (f, spec, sxhash (spec, 0));
1542 if (img)
1543 free_image (f, img);
1547 /* Free image cache of frame F. Be aware that X frames share images
1548 caches. */
1550 void
1551 free_image_cache (f)
1552 struct frame *f;
1554 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1555 if (c)
1557 int i;
1559 /* Cache should not be referenced by any frame when freed. */
1560 xassert (c->refcount == 0);
1562 for (i = 0; i < c->used; ++i)
1563 free_image (f, c->images[i]);
1564 xfree (c->images);
1565 xfree (c->buckets);
1566 xfree (c);
1567 FRAME_IMAGE_CACHE (f) = NULL;
1572 /* Clear image cache of frame F. FILTER=t means free all images.
1573 FILTER=nil means clear only images that haven't been
1574 displayed for some time.
1575 Else, only free the images which have FILTER in their `dependencies'.
1576 Should be called from time to time to reduce the number of loaded images.
1577 If image-cache-eviction-delay is non-nil, this frees images in the cache
1578 which weren't displayed for at least that many seconds. */
1580 void
1581 clear_image_cache (struct frame *f, Lisp_Object filter)
1583 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1585 if (c)
1587 int i, nfreed = 0;
1589 /* Block input so that we won't be interrupted by a SIGIO
1590 while being in an inconsistent state. */
1591 BLOCK_INPUT;
1593 if (!NILP (filter))
1595 /* Filter image cache. */
1596 for (i = 0; i < c->used; ++i)
1598 struct image *img = c->images[i];
1599 if (img && (EQ (Qt, filter)
1600 || !NILP (Fmember (filter, img->dependencies))))
1602 free_image (f, img);
1603 ++nfreed;
1607 else if (INTEGERP (Vimage_cache_eviction_delay))
1609 /* Free cache based on timestamp. */
1610 EMACS_TIME t;
1611 unsigned long old;
1612 int delay, nimages = 0;
1614 for (i = 0; i < c->used; ++i)
1615 if (c->images[i])
1616 nimages++;
1618 /* If the number of cached images has grown unusually large,
1619 decrease the cache eviction delay (Bug#6230). */
1620 delay = XFASTINT (Vimage_cache_eviction_delay);
1621 if (nimages > 40)
1622 delay = max (1, 1600 * delay / (nimages*nimages));
1624 EMACS_GET_TIME (t);
1625 old = EMACS_SECS (t) - delay;
1627 for (i = 0; i < c->used; ++i)
1629 struct image *img = c->images[i];
1630 if (img && img->timestamp < old)
1632 free_image (f, img);
1633 ++nfreed;
1638 /* We may be clearing the image cache because, for example,
1639 Emacs was iconified for a longer period of time. In that
1640 case, current matrices may still contain references to
1641 images freed above. So, clear these matrices. */
1642 if (nfreed)
1644 Lisp_Object tail, frame;
1646 FOR_EACH_FRAME (tail, frame)
1648 struct frame *f = XFRAME (frame);
1649 if (FRAME_IMAGE_CACHE (f) == c)
1650 clear_current_matrices (f);
1653 ++windows_or_buffers_changed;
1656 UNBLOCK_INPUT;
1660 void
1661 clear_image_caches (Lisp_Object filter)
1663 /* FIXME: We want to do
1664 * struct terminal *t;
1665 * for (t = terminal_list; t; t = t->next_terminal)
1666 * clear_image_cache (t, filter); */
1667 Lisp_Object tail, frame;
1668 FOR_EACH_FRAME (tail, frame)
1669 if (FRAME_WINDOW_P (XFRAME (frame)))
1670 clear_image_cache (XFRAME (frame), filter);
1673 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
1674 0, 1, 0,
1675 doc: /* Clear the image cache.
1676 FILTER nil or a frame means clear all images in the selected frame.
1677 FILTER t means clear the image caches of all frames.
1678 Anything else, means only clear those images which refer to FILTER,
1679 which is then usually a filename. */)
1680 (filter)
1681 Lisp_Object filter;
1683 if (!(EQ (filter, Qnil) || FRAMEP (filter)))
1684 clear_image_caches (filter);
1685 else
1686 clear_image_cache (check_x_frame (filter), Qt);
1688 return Qnil;
1692 DEFUN ("image-flush", Fimage_flush, Simage_flush,
1693 1, 2, 0,
1694 doc: /* Fush the image with specification SPEC on frame FRAME.
1695 This removes the image from the Emacs image cache. If SPEC specifies
1696 an image file, the next redisplay of this image will read from the
1697 current contents of that file.
1699 FRAME nil or omitted means use the selected frame.
1700 FRAME t means refresh the image on all frames. */)
1701 (spec, frame)
1702 Lisp_Object spec, frame;
1704 if (!valid_image_p (spec))
1705 error ("Invalid image specification");
1707 if (EQ (frame, Qt))
1709 Lisp_Object tail;
1710 FOR_EACH_FRAME (tail, frame)
1712 struct frame *f = XFRAME (frame);
1713 if (FRAME_WINDOW_P (f))
1714 uncache_image (f, spec);
1717 else
1718 uncache_image (check_x_frame (frame), spec);
1720 return Qnil;
1724 /* Compute masks and transform image IMG on frame F, as specified
1725 by the image's specification, */
1727 static void
1728 postprocess_image (f, img)
1729 struct frame *f;
1730 struct image *img;
1732 /* Manipulation of the image's mask. */
1733 if (img->pixmap)
1735 Lisp_Object conversion, spec;
1736 Lisp_Object mask;
1738 spec = img->spec;
1740 /* `:heuristic-mask t'
1741 `:mask heuristic'
1742 means build a mask heuristically.
1743 `:heuristic-mask (R G B)'
1744 `:mask (heuristic (R G B))'
1745 means build a mask from color (R G B) in the
1746 image.
1747 `:mask nil'
1748 means remove a mask, if any. */
1750 mask = image_spec_value (spec, QCheuristic_mask, NULL);
1751 if (!NILP (mask))
1752 x_build_heuristic_mask (f, img, mask);
1753 else
1755 int found_p;
1757 mask = image_spec_value (spec, QCmask, &found_p);
1759 if (EQ (mask, Qheuristic))
1760 x_build_heuristic_mask (f, img, Qt);
1761 else if (CONSP (mask)
1762 && EQ (XCAR (mask), Qheuristic))
1764 if (CONSP (XCDR (mask)))
1765 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
1766 else
1767 x_build_heuristic_mask (f, img, XCDR (mask));
1769 else if (NILP (mask) && found_p && img->mask)
1771 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1772 img->mask = NO_PIXMAP;
1777 /* Should we apply an image transformation algorithm? */
1778 conversion = image_spec_value (spec, QCconversion, NULL);
1779 if (EQ (conversion, Qdisabled))
1780 x_disable_image (f, img);
1781 else if (EQ (conversion, Qlaplace))
1782 x_laplace (f, img);
1783 else if (EQ (conversion, Qemboss))
1784 x_emboss (f, img);
1785 else if (CONSP (conversion)
1786 && EQ (XCAR (conversion), Qedge_detection))
1788 Lisp_Object tem;
1789 tem = XCDR (conversion);
1790 if (CONSP (tem))
1791 x_edge_detection (f, img,
1792 Fplist_get (tem, QCmatrix),
1793 Fplist_get (tem, QCcolor_adjustment));
1799 /* Return the id of image with Lisp specification SPEC on frame F.
1800 SPEC must be a valid Lisp image specification (see valid_image_p). */
1803 lookup_image (f, spec)
1804 struct frame *f;
1805 Lisp_Object spec;
1807 struct image_cache *c;
1808 struct image *img;
1809 unsigned hash;
1810 struct gcpro gcpro1;
1811 EMACS_TIME now;
1813 /* F must be a window-system frame, and SPEC must be a valid image
1814 specification. */
1815 xassert (FRAME_WINDOW_P (f));
1816 xassert (valid_image_p (spec));
1818 c = FRAME_IMAGE_CACHE (f);
1820 GCPRO1 (spec);
1822 /* Look up SPEC in the hash table of the image cache. */
1823 hash = sxhash (spec, 0);
1824 img = search_image_cache (f, spec, hash);
1825 if (img && img->load_failed_p)
1827 free_image (f, img);
1828 img = NULL;
1831 /* If not found, create a new image and cache it. */
1832 if (img == NULL)
1834 extern Lisp_Object Qpostscript;
1836 BLOCK_INPUT;
1837 img = make_image (spec, hash);
1838 cache_image (f, img);
1839 img->load_failed_p = img->type->load (f, img) == 0;
1840 img->frame_foreground = FRAME_FOREGROUND_PIXEL (f);
1841 img->frame_background = FRAME_BACKGROUND_PIXEL (f);
1843 /* If we can't load the image, and we don't have a width and
1844 height, use some arbitrary width and height so that we can
1845 draw a rectangle for it. */
1846 if (img->load_failed_p)
1848 Lisp_Object value;
1850 value = image_spec_value (spec, QCwidth, NULL);
1851 img->width = (INTEGERP (value)
1852 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
1853 value = image_spec_value (spec, QCheight, NULL);
1854 img->height = (INTEGERP (value)
1855 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
1857 else
1859 /* Handle image type independent image attributes
1860 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1861 `:background COLOR'. */
1862 Lisp_Object ascent, margin, relief, bg;
1864 ascent = image_spec_value (spec, QCascent, NULL);
1865 if (INTEGERP (ascent))
1866 img->ascent = XFASTINT (ascent);
1867 else if (EQ (ascent, Qcenter))
1868 img->ascent = CENTERED_IMAGE_ASCENT;
1870 margin = image_spec_value (spec, QCmargin, NULL);
1871 if (INTEGERP (margin) && XINT (margin) >= 0)
1872 img->vmargin = img->hmargin = XFASTINT (margin);
1873 else if (CONSP (margin) && INTEGERP (XCAR (margin))
1874 && INTEGERP (XCDR (margin)))
1876 if (XINT (XCAR (margin)) > 0)
1877 img->hmargin = XFASTINT (XCAR (margin));
1878 if (XINT (XCDR (margin)) > 0)
1879 img->vmargin = XFASTINT (XCDR (margin));
1882 relief = image_spec_value (spec, QCrelief, NULL);
1883 if (INTEGERP (relief))
1885 img->relief = XINT (relief);
1886 img->hmargin += eabs (img->relief);
1887 img->vmargin += eabs (img->relief);
1890 if (! img->background_valid)
1892 bg = image_spec_value (img->spec, QCbackground, NULL);
1893 if (!NILP (bg))
1895 img->background
1896 = x_alloc_image_color (f, img, bg,
1897 FRAME_BACKGROUND_PIXEL (f));
1898 img->background_valid = 1;
1902 /* Do image transformations and compute masks, unless we
1903 don't have the image yet. */
1904 if (!EQ (*img->type->type, Qpostscript))
1905 postprocess_image (f, img);
1908 UNBLOCK_INPUT;
1911 /* We're using IMG, so set its timestamp to `now'. */
1912 EMACS_GET_TIME (now);
1913 img->timestamp = EMACS_SECS (now);
1915 UNGCPRO;
1917 /* Value is the image id. */
1918 return img->id;
1922 /* Cache image IMG in the image cache of frame F. */
1924 static void
1925 cache_image (f, img)
1926 struct frame *f;
1927 struct image *img;
1929 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1930 int i;
1932 /* Find a free slot in c->images. */
1933 for (i = 0; i < c->used; ++i)
1934 if (c->images[i] == NULL)
1935 break;
1937 /* If no free slot found, maybe enlarge c->images. */
1938 if (i == c->used && c->used == c->size)
1940 c->size *= 2;
1941 c->images = (struct image **) xrealloc (c->images,
1942 c->size * sizeof *c->images);
1945 /* Add IMG to c->images, and assign IMG an id. */
1946 c->images[i] = img;
1947 img->id = i;
1948 if (i == c->used)
1949 ++c->used;
1951 /* Add IMG to the cache's hash table. */
1952 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
1953 img->next = c->buckets[i];
1954 if (img->next)
1955 img->next->prev = img;
1956 img->prev = NULL;
1957 c->buckets[i] = img;
1961 /* Call FN on every image in the image cache of frame F. Used to mark
1962 Lisp Objects in the image cache. */
1964 /* Mark Lisp objects in image IMG. */
1966 static void
1967 mark_image (img)
1968 struct image *img;
1970 mark_object (img->spec);
1971 mark_object (img->dependencies);
1973 if (!NILP (img->data.lisp_val))
1974 mark_object (img->data.lisp_val);
1978 void
1979 mark_image_cache (struct image_cache *c)
1981 if (c)
1983 int i;
1984 for (i = 0; i < c->used; ++i)
1985 if (c->images[i])
1986 mark_image (c->images[i]);
1992 /***********************************************************************
1993 X / NS / W32 support code
1994 ***********************************************************************/
1996 #ifdef HAVE_NTGUI
1998 /* Macro for defining functions that will be loaded from image DLLs. */
1999 #define DEF_IMGLIB_FN(func) int (FAR CDECL *fn_##func)()
2001 /* Macro for loading those image functions from the library. */
2002 #define LOAD_IMGLIB_FN(lib,func) { \
2003 fn_##func = (void *) GetProcAddress (lib, #func); \
2004 if (!fn_##func) return 0; \
2007 /* Load a DLL implementing an image type.
2008 The `image-library-alist' variable associates a symbol,
2009 identifying an image type, to a list of possible filenames.
2010 The function returns NULL if no library could be loaded for
2011 the given image type, or if the library was previously loaded;
2012 else the handle of the DLL. */
2013 static HMODULE
2014 w32_delayed_load (Lisp_Object libraries, Lisp_Object type)
2016 HMODULE library = NULL;
2018 if (CONSP (libraries) && NILP (Fassq (type, Vimage_type_cache)))
2020 Lisp_Object dlls = Fassq (type, libraries);
2022 if (CONSP (dlls))
2023 for (dlls = XCDR (dlls); CONSP (dlls); dlls = XCDR (dlls))
2025 CHECK_STRING_CAR (dlls);
2026 if (library = LoadLibrary (SDATA (XCAR (dlls))))
2027 break;
2031 return library;
2034 #endif /* HAVE_NTGUI */
2036 static int x_create_x_image_and_pixmap P_ ((struct frame *, int, int, int,
2037 XImagePtr *, Pixmap *));
2038 static void x_destroy_x_image P_ ((XImagePtr));
2039 static void x_put_x_image P_ ((struct frame *, XImagePtr, Pixmap, int, int));
2042 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
2043 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
2044 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
2045 via xmalloc. Print error messages via image_error if an error
2046 occurs. Value is non-zero if successful.
2048 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
2049 should indicate the bit depth of the image. */
2051 static int
2052 x_create_x_image_and_pixmap (f, width, height, depth, ximg, pixmap)
2053 struct frame *f;
2054 int width, height, depth;
2055 XImagePtr *ximg;
2056 Pixmap *pixmap;
2058 #ifdef HAVE_X_WINDOWS
2059 Display *display = FRAME_X_DISPLAY (f);
2060 Window window = FRAME_X_WINDOW (f);
2061 Screen *screen = FRAME_X_SCREEN (f);
2063 xassert (interrupt_input_blocked);
2065 if (depth <= 0)
2066 depth = DefaultDepthOfScreen (screen);
2067 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
2068 depth, ZPixmap, 0, NULL, width, height,
2069 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
2070 if (*ximg == NULL)
2072 image_error ("Unable to allocate X image", Qnil, Qnil);
2073 return 0;
2076 /* Allocate image raster. */
2077 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
2079 /* Allocate a pixmap of the same size. */
2080 *pixmap = XCreatePixmap (display, window, width, height, depth);
2081 if (*pixmap == NO_PIXMAP)
2083 x_destroy_x_image (*ximg);
2084 *ximg = NULL;
2085 image_error ("Unable to create X pixmap", Qnil, Qnil);
2086 return 0;
2089 return 1;
2090 #endif /* HAVE_X_WINDOWS */
2092 #ifdef HAVE_NTGUI
2094 BITMAPINFOHEADER *header;
2095 HDC hdc;
2096 int scanline_width_bits;
2097 int remainder;
2098 int palette_colors = 0;
2100 if (depth == 0)
2101 depth = 24;
2103 if (depth != 1 && depth != 4 && depth != 8
2104 && depth != 16 && depth != 24 && depth != 32)
2106 image_error ("Invalid image bit depth specified", Qnil, Qnil);
2107 return 0;
2110 scanline_width_bits = width * depth;
2111 remainder = scanline_width_bits % 32;
2113 if (remainder)
2114 scanline_width_bits += 32 - remainder;
2116 /* Bitmaps with a depth less than 16 need a palette. */
2117 /* BITMAPINFO structure already contains the first RGBQUAD. */
2118 if (depth < 16)
2119 palette_colors = 1 << depth - 1;
2121 *ximg = xmalloc (sizeof (XImage) + palette_colors * sizeof (RGBQUAD));
2122 if (*ximg == NULL)
2124 image_error ("Unable to allocate memory for XImage", Qnil, Qnil);
2125 return 0;
2128 header = &((*ximg)->info.bmiHeader);
2129 bzero (&((*ximg)->info), sizeof (BITMAPINFO));
2130 header->biSize = sizeof (*header);
2131 header->biWidth = width;
2132 header->biHeight = -height; /* negative indicates a top-down bitmap. */
2133 header->biPlanes = 1;
2134 header->biBitCount = depth;
2135 header->biCompression = BI_RGB;
2136 header->biClrUsed = palette_colors;
2138 /* TODO: fill in palette. */
2139 if (depth == 1)
2141 (*ximg)->info.bmiColors[0].rgbBlue = 0;
2142 (*ximg)->info.bmiColors[0].rgbGreen = 0;
2143 (*ximg)->info.bmiColors[0].rgbRed = 0;
2144 (*ximg)->info.bmiColors[0].rgbReserved = 0;
2145 (*ximg)->info.bmiColors[1].rgbBlue = 255;
2146 (*ximg)->info.bmiColors[1].rgbGreen = 255;
2147 (*ximg)->info.bmiColors[1].rgbRed = 255;
2148 (*ximg)->info.bmiColors[1].rgbReserved = 0;
2151 hdc = get_frame_dc (f);
2153 /* Create a DIBSection and raster array for the bitmap,
2154 and store its handle in *pixmap. */
2155 *pixmap = CreateDIBSection (hdc, &((*ximg)->info),
2156 (depth < 16) ? DIB_PAL_COLORS : DIB_RGB_COLORS,
2157 /* casting avoids a GCC warning */
2158 (void **)&((*ximg)->data), NULL, 0);
2160 /* Realize display palette and garbage all frames. */
2161 release_frame_dc (f, hdc);
2163 if (*pixmap == NULL)
2165 DWORD err = GetLastError ();
2166 Lisp_Object errcode;
2167 /* All system errors are < 10000, so the following is safe. */
2168 XSETINT (errcode, (int) err);
2169 image_error ("Unable to create bitmap, error code %d", errcode, Qnil);
2170 x_destroy_x_image (*ximg);
2171 return 0;
2174 return 1;
2176 #endif /* HAVE_NTGUI */
2178 #ifdef HAVE_NS
2179 *pixmap = ns_image_for_XPM(width, height, depth);
2180 if (*pixmap == 0)
2182 *ximg = NULL;
2183 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil, Qnil);
2184 return 0;
2186 *ximg = *pixmap;
2187 return 1;
2188 #endif
2192 /* Destroy XImage XIMG. Free XIMG->data. */
2194 static void
2195 x_destroy_x_image (ximg)
2196 XImagePtr ximg;
2198 xassert (interrupt_input_blocked);
2199 if (ximg)
2201 #ifdef HAVE_X_WINDOWS
2202 xfree (ximg->data);
2203 ximg->data = NULL;
2204 XDestroyImage (ximg);
2205 #endif /* HAVE_X_WINDOWS */
2206 #ifdef HAVE_NTGUI
2207 /* Data will be freed by DestroyObject. */
2208 ximg->data = NULL;
2209 xfree (ximg);
2210 #endif /* HAVE_NTGUI */
2211 #ifdef HAVE_NS
2212 ns_release_object(ximg);
2213 #endif /* HAVE_NS */
2218 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2219 are width and height of both the image and pixmap. */
2221 static void
2222 x_put_x_image (f, ximg, pixmap, width, height)
2223 struct frame *f;
2224 XImagePtr ximg;
2225 Pixmap pixmap;
2226 int width, height;
2228 #ifdef HAVE_X_WINDOWS
2229 GC gc;
2231 xassert (interrupt_input_blocked);
2232 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
2233 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
2234 XFreeGC (FRAME_X_DISPLAY (f), gc);
2235 #endif /* HAVE_X_WINDOWS */
2237 #ifdef HAVE_NTGUI
2238 #if 0 /* I don't think this is necessary looking at where it is used. */
2239 HDC hdc = get_frame_dc (f);
2240 SetDIBits (hdc, pixmap, 0, height, ximg->data, &(ximg->info), DIB_RGB_COLORS);
2241 release_frame_dc (f, hdc);
2242 #endif
2243 #endif /* HAVE_NTGUI */
2245 #ifdef HAVE_NS
2246 xassert (ximg == pixmap);
2247 ns_retain_object(ximg);
2248 #endif
2252 /***********************************************************************
2253 File Handling
2254 ***********************************************************************/
2256 static unsigned char *slurp_file P_ ((char *, int *));
2259 /* Find image file FILE. Look in data-directory/images, then
2260 x-bitmap-file-path. Value is the encoded full name of the file
2261 found, or nil if not found. */
2263 Lisp_Object
2264 x_find_image_file (file)
2265 Lisp_Object file;
2267 Lisp_Object file_found, search_path;
2268 struct gcpro gcpro1, gcpro2;
2269 int fd;
2271 file_found = Qnil;
2272 /* TODO I think this should use something like image-load-path
2273 instead. Unfortunately, that can contain non-string elements. */
2274 search_path = Fcons (Fexpand_file_name (build_string ("images"),
2275 Vdata_directory),
2276 Vx_bitmap_file_path);
2277 GCPRO2 (file_found, search_path);
2279 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2280 fd = openp (search_path, file, Qnil, &file_found, Qnil);
2282 if (fd == -1)
2283 file_found = Qnil;
2284 else
2286 file_found = ENCODE_FILE (file_found);
2287 close (fd);
2290 UNGCPRO;
2291 return file_found;
2295 /* Read FILE into memory. Value is a pointer to a buffer allocated
2296 with xmalloc holding FILE's contents. Value is null if an error
2297 occurred. *SIZE is set to the size of the file. */
2299 static unsigned char *
2300 slurp_file (file, size)
2301 char *file;
2302 int *size;
2304 FILE *fp = NULL;
2305 unsigned char *buf = NULL;
2306 struct stat st;
2308 if (stat (file, &st) == 0
2309 && (fp = fopen (file, "rb")) != NULL
2310 && (buf = (unsigned char *) xmalloc (st.st_size),
2311 fread (buf, 1, st.st_size, fp) == st.st_size))
2313 *size = st.st_size;
2314 fclose (fp);
2316 else
2318 if (fp)
2319 fclose (fp);
2320 if (buf)
2322 xfree (buf);
2323 buf = NULL;
2327 return buf;
2332 /***********************************************************************
2333 XBM images
2334 ***********************************************************************/
2336 static int xbm_scan P_ ((unsigned char **, unsigned char *, char *, int *));
2337 static int xbm_load P_ ((struct frame *f, struct image *img));
2338 static int xbm_load_image P_ ((struct frame *f, struct image *img,
2339 unsigned char *, unsigned char *));
2340 static int xbm_image_p P_ ((Lisp_Object object));
2341 static int xbm_read_bitmap_data P_ ((struct frame *f,
2342 unsigned char *, unsigned char *,
2343 int *, int *, unsigned char **, int));
2344 static int xbm_file_p P_ ((Lisp_Object));
2347 /* Indices of image specification fields in xbm_format, below. */
2349 enum xbm_keyword_index
2351 XBM_TYPE,
2352 XBM_FILE,
2353 XBM_WIDTH,
2354 XBM_HEIGHT,
2355 XBM_DATA,
2356 XBM_FOREGROUND,
2357 XBM_BACKGROUND,
2358 XBM_ASCENT,
2359 XBM_MARGIN,
2360 XBM_RELIEF,
2361 XBM_ALGORITHM,
2362 XBM_HEURISTIC_MASK,
2363 XBM_MASK,
2364 XBM_LAST
2367 /* Vector of image_keyword structures describing the format
2368 of valid XBM image specifications. */
2370 static const struct image_keyword xbm_format[XBM_LAST] =
2372 {":type", IMAGE_SYMBOL_VALUE, 1},
2373 {":file", IMAGE_STRING_VALUE, 0},
2374 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2375 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2376 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2377 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
2378 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
2379 {":ascent", IMAGE_ASCENT_VALUE, 0},
2380 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
2381 {":relief", IMAGE_INTEGER_VALUE, 0},
2382 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2383 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2384 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
2387 /* Structure describing the image type XBM. */
2389 static struct image_type xbm_type =
2391 &Qxbm,
2392 xbm_image_p,
2393 xbm_load,
2394 x_clear_image,
2395 NULL
2398 /* Tokens returned from xbm_scan. */
2400 enum xbm_token
2402 XBM_TK_IDENT = 256,
2403 XBM_TK_NUMBER
2407 /* Return non-zero if OBJECT is a valid XBM-type image specification.
2408 A valid specification is a list starting with the symbol `image'
2409 The rest of the list is a property list which must contain an
2410 entry `:type xbm..
2412 If the specification specifies a file to load, it must contain
2413 an entry `:file FILENAME' where FILENAME is a string.
2415 If the specification is for a bitmap loaded from memory it must
2416 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2417 WIDTH and HEIGHT are integers > 0. DATA may be:
2419 1. a string large enough to hold the bitmap data, i.e. it must
2420 have a size >= (WIDTH + 7) / 8 * HEIGHT
2422 2. a bool-vector of size >= WIDTH * HEIGHT
2424 3. a vector of strings or bool-vectors, one for each line of the
2425 bitmap.
2427 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2428 may not be specified in this case because they are defined in the
2429 XBM file.
2431 Both the file and data forms may contain the additional entries
2432 `:background COLOR' and `:foreground COLOR'. If not present,
2433 foreground and background of the frame on which the image is
2434 displayed is used. */
2436 static int
2437 xbm_image_p (object)
2438 Lisp_Object object;
2440 struct image_keyword kw[XBM_LAST];
2442 bcopy (xbm_format, kw, sizeof kw);
2443 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
2444 return 0;
2446 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
2448 if (kw[XBM_FILE].count)
2450 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
2451 return 0;
2453 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
2455 /* In-memory XBM file. */
2456 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
2457 return 0;
2459 else
2461 Lisp_Object data;
2462 int width, height;
2464 /* Entries for `:width', `:height' and `:data' must be present. */
2465 if (!kw[XBM_WIDTH].count
2466 || !kw[XBM_HEIGHT].count
2467 || !kw[XBM_DATA].count)
2468 return 0;
2470 data = kw[XBM_DATA].value;
2471 width = XFASTINT (kw[XBM_WIDTH].value);
2472 height = XFASTINT (kw[XBM_HEIGHT].value);
2474 /* Check type of data, and width and height against contents of
2475 data. */
2476 if (VECTORP (data))
2478 int i;
2480 /* Number of elements of the vector must be >= height. */
2481 if (XVECTOR (data)->size < height)
2482 return 0;
2484 /* Each string or bool-vector in data must be large enough
2485 for one line of the image. */
2486 for (i = 0; i < height; ++i)
2488 Lisp_Object elt = XVECTOR (data)->contents[i];
2490 if (STRINGP (elt))
2492 if (SCHARS (elt)
2493 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
2494 return 0;
2496 else if (BOOL_VECTOR_P (elt))
2498 if (XBOOL_VECTOR (elt)->size < width)
2499 return 0;
2501 else
2502 return 0;
2505 else if (STRINGP (data))
2507 if (SCHARS (data)
2508 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
2509 return 0;
2511 else if (BOOL_VECTOR_P (data))
2513 if (XBOOL_VECTOR (data)->size < width * height)
2514 return 0;
2516 else
2517 return 0;
2520 return 1;
2524 /* Scan a bitmap file. FP is the stream to read from. Value is
2525 either an enumerator from enum xbm_token, or a character for a
2526 single-character token, or 0 at end of file. If scanning an
2527 identifier, store the lexeme of the identifier in SVAL. If
2528 scanning a number, store its value in *IVAL. */
2530 static int
2531 xbm_scan (s, end, sval, ival)
2532 unsigned char **s, *end;
2533 char *sval;
2534 int *ival;
2536 unsigned int c;
2538 loop:
2540 /* Skip white space. */
2541 while (*s < end && (c = *(*s)++, isspace (c)))
2544 if (*s >= end)
2545 c = 0;
2546 else if (isdigit (c))
2548 int value = 0, digit;
2550 if (c == '0' && *s < end)
2552 c = *(*s)++;
2553 if (c == 'x' || c == 'X')
2555 while (*s < end)
2557 c = *(*s)++;
2558 if (isdigit (c))
2559 digit = c - '0';
2560 else if (c >= 'a' && c <= 'f')
2561 digit = c - 'a' + 10;
2562 else if (c >= 'A' && c <= 'F')
2563 digit = c - 'A' + 10;
2564 else
2565 break;
2566 value = 16 * value + digit;
2569 else if (isdigit (c))
2571 value = c - '0';
2572 while (*s < end
2573 && (c = *(*s)++, isdigit (c)))
2574 value = 8 * value + c - '0';
2577 else
2579 value = c - '0';
2580 while (*s < end
2581 && (c = *(*s)++, isdigit (c)))
2582 value = 10 * value + c - '0';
2585 if (*s < end)
2586 *s = *s - 1;
2587 *ival = value;
2588 c = XBM_TK_NUMBER;
2590 else if (isalpha (c) || c == '_')
2592 *sval++ = c;
2593 while (*s < end
2594 && (c = *(*s)++, (isalnum (c) || c == '_')))
2595 *sval++ = c;
2596 *sval = 0;
2597 if (*s < end)
2598 *s = *s - 1;
2599 c = XBM_TK_IDENT;
2601 else if (c == '/' && **s == '*')
2603 /* C-style comment. */
2604 ++*s;
2605 while (**s && (**s != '*' || *(*s + 1) != '/'))
2606 ++*s;
2607 if (**s)
2609 *s += 2;
2610 goto loop;
2614 return c;
2617 #ifdef HAVE_NTGUI
2619 /* Create a Windows bitmap from X bitmap data. */
2620 static HBITMAP
2621 w32_create_pixmap_from_bitmap_data (int width, int height, char *data)
2623 static unsigned char swap_nibble[16]
2624 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2625 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2626 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2627 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2628 int i, j, w1, w2;
2629 unsigned char *bits, *p;
2630 HBITMAP bmp;
2632 w1 = (width + 7) / 8; /* nb of 8bits elt in X bitmap */
2633 w2 = ((width + 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2634 bits = (unsigned char *) alloca (height * w2);
2635 bzero (bits, height * w2);
2636 for (i = 0; i < height; i++)
2638 p = bits + i*w2;
2639 for (j = 0; j < w1; j++)
2641 /* Bitswap XBM bytes to match how Windows does things. */
2642 unsigned char c = *data++;
2643 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
2644 | (swap_nibble[(c>>4) & 0xf]));
2647 bmp = CreateBitmap (width, height, 1, 1, (char *) bits);
2649 return bmp;
2652 static void
2653 convert_mono_to_color_image (f, img, foreground, background)
2654 struct frame *f;
2655 struct image *img;
2656 COLORREF foreground, background;
2658 HDC hdc, old_img_dc, new_img_dc;
2659 HGDIOBJ old_prev, new_prev;
2660 HBITMAP new_pixmap;
2662 hdc = get_frame_dc (f);
2663 old_img_dc = CreateCompatibleDC (hdc);
2664 new_img_dc = CreateCompatibleDC (hdc);
2665 new_pixmap = CreateCompatibleBitmap (hdc, img->width, img->height);
2666 release_frame_dc (f, hdc);
2667 old_prev = SelectObject (old_img_dc, img->pixmap);
2668 new_prev = SelectObject (new_img_dc, new_pixmap);
2669 /* Windows convention for mono bitmaps is black = background,
2670 white = foreground. */
2671 SetTextColor (new_img_dc, background);
2672 SetBkColor (new_img_dc, foreground);
2674 BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc,
2675 0, 0, SRCCOPY);
2677 SelectObject (old_img_dc, old_prev);
2678 SelectObject (new_img_dc, new_prev);
2679 DeleteDC (old_img_dc);
2680 DeleteDC (new_img_dc);
2681 DeleteObject (img->pixmap);
2682 if (new_pixmap == 0)
2683 fprintf (stderr, "Failed to convert image to color.\n");
2684 else
2685 img->pixmap = new_pixmap;
2688 #define XBM_BIT_SHUFFLE(b) (~(b))
2690 #else
2692 #define XBM_BIT_SHUFFLE(b) (b)
2694 #endif /* HAVE_NTGUI */
2697 static void
2698 Create_Pixmap_From_Bitmap_Data (f, img, data, fg, bg, non_default_colors)
2699 struct frame *f;
2700 struct image *img;
2701 char *data;
2702 RGB_PIXEL_COLOR fg, bg;
2703 int non_default_colors;
2705 #ifdef HAVE_NTGUI
2706 img->pixmap
2707 = w32_create_pixmap_from_bitmap_data (img->width, img->height, data);
2709 /* If colors were specified, transfer the bitmap to a color one. */
2710 if (non_default_colors)
2711 convert_mono_to_color_image (f, img, fg, bg);
2713 #elif defined (HAVE_NS)
2714 img->pixmap = ns_image_from_XBM(data, img->width, img->height);
2716 #else
2717 img->pixmap
2718 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
2719 FRAME_X_WINDOW (f),
2720 data,
2721 img->width, img->height,
2722 fg, bg,
2723 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
2724 #endif /* !HAVE_NTGUI && !HAVE_NS */
2729 /* Replacement for XReadBitmapFileData which isn't available under old
2730 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2731 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2732 the image. Return in *DATA the bitmap data allocated with xmalloc.
2733 Value is non-zero if successful. DATA null means just test if
2734 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR
2735 is non-zero, inhibit the call to image_error when the image size is
2736 invalid (the bitmap remains unread). */
2738 static int
2739 xbm_read_bitmap_data (f, contents, end, width, height, data, inhibit_image_error)
2740 struct frame *f;
2741 unsigned char *contents, *end;
2742 int *width, *height;
2743 unsigned char **data;
2744 int inhibit_image_error;
2746 unsigned char *s = contents;
2747 char buffer[BUFSIZ];
2748 int padding_p = 0;
2749 int v10 = 0;
2750 int bytes_per_line, i, nbytes;
2751 unsigned char *p;
2752 int value;
2753 int LA1;
2755 #define match() \
2756 LA1 = xbm_scan (&s, end, buffer, &value)
2758 #define expect(TOKEN) \
2759 if (LA1 != (TOKEN)) \
2760 goto failure; \
2761 else \
2762 match ()
2764 #define expect_ident(IDENT) \
2765 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2766 match (); \
2767 else \
2768 goto failure
2770 *width = *height = -1;
2771 if (data)
2772 *data = NULL;
2773 LA1 = xbm_scan (&s, end, buffer, &value);
2775 /* Parse defines for width, height and hot-spots. */
2776 while (LA1 == '#')
2778 match ();
2779 expect_ident ("define");
2780 expect (XBM_TK_IDENT);
2782 if (LA1 == XBM_TK_NUMBER)
2784 char *p = strrchr (buffer, '_');
2785 p = p ? p + 1 : buffer;
2786 if (strcmp (p, "width") == 0)
2787 *width = value;
2788 else if (strcmp (p, "height") == 0)
2789 *height = value;
2791 expect (XBM_TK_NUMBER);
2794 if (!check_image_size (f, *width, *height))
2796 if (!inhibit_image_error)
2797 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
2798 goto failure;
2800 else if (data == NULL)
2801 goto success;
2803 /* Parse bits. Must start with `static'. */
2804 expect_ident ("static");
2805 if (LA1 == XBM_TK_IDENT)
2807 if (strcmp (buffer, "unsigned") == 0)
2809 match ();
2810 expect_ident ("char");
2812 else if (strcmp (buffer, "short") == 0)
2814 match ();
2815 v10 = 1;
2816 if (*width % 16 && *width % 16 < 9)
2817 padding_p = 1;
2819 else if (strcmp (buffer, "char") == 0)
2820 match ();
2821 else
2822 goto failure;
2824 else
2825 goto failure;
2827 expect (XBM_TK_IDENT);
2828 expect ('[');
2829 expect (']');
2830 expect ('=');
2831 expect ('{');
2833 bytes_per_line = (*width + 7) / 8 + padding_p;
2834 nbytes = bytes_per_line * *height;
2835 p = *data = (unsigned char *) xmalloc (nbytes);
2837 if (v10)
2839 for (i = 0; i < nbytes; i += 2)
2841 int val = value;
2842 expect (XBM_TK_NUMBER);
2844 *p++ = XBM_BIT_SHUFFLE (val);
2845 if (!padding_p || ((i + 2) % bytes_per_line))
2846 *p++ = XBM_BIT_SHUFFLE (value >> 8);
2848 if (LA1 == ',' || LA1 == '}')
2849 match ();
2850 else
2851 goto failure;
2854 else
2856 for (i = 0; i < nbytes; ++i)
2858 int val = value;
2859 expect (XBM_TK_NUMBER);
2861 *p++ = XBM_BIT_SHUFFLE (val);
2863 if (LA1 == ',' || LA1 == '}')
2864 match ();
2865 else
2866 goto failure;
2870 success:
2871 return 1;
2873 failure:
2875 if (data && *data)
2877 xfree (*data);
2878 *data = NULL;
2880 return 0;
2882 #undef match
2883 #undef expect
2884 #undef expect_ident
2888 /* Load XBM image IMG which will be displayed on frame F from buffer
2889 CONTENTS. END is the end of the buffer. Value is non-zero if
2890 successful. */
2892 static int
2893 xbm_load_image (f, img, contents, end)
2894 struct frame *f;
2895 struct image *img;
2896 unsigned char *contents, *end;
2898 int rc;
2899 unsigned char *data;
2900 int success_p = 0;
2902 rc = xbm_read_bitmap_data (f, contents, end, &img->width, &img->height,
2903 &data, 0);
2904 if (rc)
2906 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2907 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2908 int non_default_colors = 0;
2909 Lisp_Object value;
2911 xassert (img->width > 0 && img->height > 0);
2913 /* Get foreground and background colors, maybe allocate colors. */
2914 value = image_spec_value (img->spec, QCforeground, NULL);
2915 if (!NILP (value))
2917 foreground = x_alloc_image_color (f, img, value, foreground);
2918 non_default_colors = 1;
2920 value = image_spec_value (img->spec, QCbackground, NULL);
2921 if (!NILP (value))
2923 background = x_alloc_image_color (f, img, value, background);
2924 img->background = background;
2925 img->background_valid = 1;
2926 non_default_colors = 1;
2929 Create_Pixmap_From_Bitmap_Data (f, img, data,
2930 foreground, background,
2931 non_default_colors);
2932 xfree (data);
2934 if (img->pixmap == NO_PIXMAP)
2936 x_clear_image (f, img);
2937 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
2939 else
2940 success_p = 1;
2942 else
2943 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2945 return success_p;
2949 /* Value is non-zero if DATA looks like an in-memory XBM file. */
2951 static int
2952 xbm_file_p (data)
2953 Lisp_Object data;
2955 int w, h;
2956 return (STRINGP (data)
2957 && xbm_read_bitmap_data (NULL, SDATA (data),
2958 (SDATA (data) + SBYTES (data)),
2959 &w, &h, NULL, 1));
2963 /* Fill image IMG which is used on frame F with pixmap data. Value is
2964 non-zero if successful. */
2966 static int
2967 xbm_load (f, img)
2968 struct frame *f;
2969 struct image *img;
2971 int success_p = 0;
2972 Lisp_Object file_name;
2974 xassert (xbm_image_p (img->spec));
2976 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2977 file_name = image_spec_value (img->spec, QCfile, NULL);
2978 if (STRINGP (file_name))
2980 Lisp_Object file;
2981 unsigned char *contents;
2982 int size;
2983 struct gcpro gcpro1;
2985 file = x_find_image_file (file_name);
2986 GCPRO1 (file);
2987 if (!STRINGP (file))
2989 image_error ("Cannot find image file `%s'", file_name, Qnil);
2990 UNGCPRO;
2991 return 0;
2994 contents = slurp_file (SDATA (file), &size);
2995 if (contents == NULL)
2997 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2998 UNGCPRO;
2999 return 0;
3002 success_p = xbm_load_image (f, img, contents, contents + size);
3003 UNGCPRO;
3005 else
3007 struct image_keyword fmt[XBM_LAST];
3008 Lisp_Object data;
3009 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
3010 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
3011 int non_default_colors = 0;
3012 char *bits;
3013 int parsed_p;
3014 int in_memory_file_p = 0;
3016 /* See if data looks like an in-memory XBM file. */
3017 data = image_spec_value (img->spec, QCdata, NULL);
3018 in_memory_file_p = xbm_file_p (data);
3020 /* Parse the image specification. */
3021 bcopy (xbm_format, fmt, sizeof fmt);
3022 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
3023 xassert (parsed_p);
3025 /* Get specified width, and height. */
3026 if (!in_memory_file_p)
3028 img->width = XFASTINT (fmt[XBM_WIDTH].value);
3029 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
3030 xassert (img->width > 0 && img->height > 0);
3033 /* Get foreground and background colors, maybe allocate colors. */
3034 if (fmt[XBM_FOREGROUND].count
3035 && STRINGP (fmt[XBM_FOREGROUND].value))
3037 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
3038 foreground);
3039 non_default_colors = 1;
3042 if (fmt[XBM_BACKGROUND].count
3043 && STRINGP (fmt[XBM_BACKGROUND].value))
3045 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
3046 background);
3047 non_default_colors = 1;
3050 if (in_memory_file_p)
3051 success_p = xbm_load_image (f, img, SDATA (data),
3052 (SDATA (data)
3053 + SBYTES (data)));
3054 else
3056 if (VECTORP (data))
3058 int i;
3059 char *p;
3060 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
3062 p = bits = (char *) alloca (nbytes * img->height);
3063 for (i = 0; i < img->height; ++i, p += nbytes)
3065 Lisp_Object line = XVECTOR (data)->contents[i];
3066 if (STRINGP (line))
3067 bcopy (SDATA (line), p, nbytes);
3068 else
3069 bcopy (XBOOL_VECTOR (line)->data, p, nbytes);
3072 else if (STRINGP (data))
3073 bits = SDATA (data);
3074 else
3075 bits = XBOOL_VECTOR (data)->data;
3077 #ifdef WINDOWSNT
3079 char *invertedBits;
3080 int nbytes, i;
3081 /* Windows mono bitmaps are reversed compared with X. */
3082 invertedBits = bits;
3083 nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR
3084 * img->height;
3085 bits = (char *) alloca(nbytes);
3086 for (i = 0; i < nbytes; i++)
3087 bits[i] = XBM_BIT_SHUFFLE (invertedBits[i]);
3089 #endif
3090 /* Create the pixmap. */
3092 Create_Pixmap_From_Bitmap_Data (f, img, bits,
3093 foreground, background,
3094 non_default_colors);
3095 if (img->pixmap)
3096 success_p = 1;
3097 else
3099 image_error ("Unable to create pixmap for XBM image `%s'",
3100 img->spec, Qnil);
3101 x_clear_image (f, img);
3106 return success_p;
3111 /***********************************************************************
3112 XPM images
3113 ***********************************************************************/
3115 #if defined (HAVE_XPM) || defined (HAVE_NS)
3117 static int xpm_image_p P_ ((Lisp_Object object));
3118 static int xpm_load P_ ((struct frame *f, struct image *img));
3119 static int xpm_valid_color_symbols_p P_ ((Lisp_Object));
3121 #endif /* HAVE_XPM || HAVE_NS */
3123 #ifdef HAVE_XPM
3124 #ifdef HAVE_NTGUI
3125 /* Indicate to xpm.h that we don't have Xlib. */
3126 #define FOR_MSW
3127 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
3128 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
3129 #define XColor xpm_XColor
3130 #define XImage xpm_XImage
3131 #define Display xpm_Display
3132 #define PIXEL_ALREADY_TYPEDEFED
3133 #include "X11/xpm.h"
3134 #undef FOR_MSW
3135 #undef XColor
3136 #undef XImage
3137 #undef Display
3138 #undef PIXEL_ALREADY_TYPEDEFED
3139 #else
3140 #include "X11/xpm.h"
3141 #endif /* HAVE_NTGUI */
3142 #endif /* HAVE_XPM */
3144 #if defined (HAVE_XPM) || defined (HAVE_NS)
3145 /* The symbol `xpm' identifying XPM-format images. */
3147 Lisp_Object Qxpm;
3149 /* Indices of image specification fields in xpm_format, below. */
3151 enum xpm_keyword_index
3153 XPM_TYPE,
3154 XPM_FILE,
3155 XPM_DATA,
3156 XPM_ASCENT,
3157 XPM_MARGIN,
3158 XPM_RELIEF,
3159 XPM_ALGORITHM,
3160 XPM_HEURISTIC_MASK,
3161 XPM_MASK,
3162 XPM_COLOR_SYMBOLS,
3163 XPM_BACKGROUND,
3164 XPM_LAST
3167 /* Vector of image_keyword structures describing the format
3168 of valid XPM image specifications. */
3170 static const struct image_keyword xpm_format[XPM_LAST] =
3172 {":type", IMAGE_SYMBOL_VALUE, 1},
3173 {":file", IMAGE_STRING_VALUE, 0},
3174 {":data", IMAGE_STRING_VALUE, 0},
3175 {":ascent", IMAGE_ASCENT_VALUE, 0},
3176 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
3177 {":relief", IMAGE_INTEGER_VALUE, 0},
3178 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3179 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3180 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3181 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3182 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
3185 /* Structure describing the image type XPM. */
3187 static struct image_type xpm_type =
3189 &Qxpm,
3190 xpm_image_p,
3191 xpm_load,
3192 x_clear_image,
3193 NULL
3196 #ifdef HAVE_X_WINDOWS
3198 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3199 functions for allocating image colors. Our own functions handle
3200 color allocation failures more gracefully than the ones on the XPM
3201 lib. */
3203 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3204 #define ALLOC_XPM_COLORS
3205 #endif
3206 #endif /* HAVE_X_WINDOWS */
3208 #ifdef ALLOC_XPM_COLORS
3210 static void xpm_init_color_cache P_ ((struct frame *, XpmAttributes *));
3211 static void xpm_free_color_cache P_ ((void));
3212 static int xpm_lookup_color P_ ((struct frame *, char *, XColor *));
3213 static int xpm_color_bucket P_ ((char *));
3214 static struct xpm_cached_color *xpm_cache_color P_ ((struct frame *, char *,
3215 XColor *, int));
3217 /* An entry in a hash table used to cache color definitions of named
3218 colors. This cache is necessary to speed up XPM image loading in
3219 case we do color allocations ourselves. Without it, we would need
3220 a call to XParseColor per pixel in the image. */
3222 struct xpm_cached_color
3224 /* Next in collision chain. */
3225 struct xpm_cached_color *next;
3227 /* Color definition (RGB and pixel color). */
3228 XColor color;
3230 /* Color name. */
3231 char name[1];
3234 /* The hash table used for the color cache, and its bucket vector
3235 size. */
3237 #define XPM_COLOR_CACHE_BUCKETS 1001
3238 struct xpm_cached_color **xpm_color_cache;
3240 /* Initialize the color cache. */
3242 static void
3243 xpm_init_color_cache (f, attrs)
3244 struct frame *f;
3245 XpmAttributes *attrs;
3247 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
3248 xpm_color_cache = (struct xpm_cached_color **) xmalloc (nbytes);
3249 memset (xpm_color_cache, 0, nbytes);
3250 init_color_table ();
3252 if (attrs->valuemask & XpmColorSymbols)
3254 int i;
3255 XColor color;
3257 for (i = 0; i < attrs->numsymbols; ++i)
3258 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3259 attrs->colorsymbols[i].value, &color))
3261 color.pixel = lookup_rgb_color (f, color.red, color.green,
3262 color.blue);
3263 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
3268 /* Free the color cache. */
3270 static void
3271 xpm_free_color_cache ()
3273 struct xpm_cached_color *p, *next;
3274 int i;
3276 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
3277 for (p = xpm_color_cache[i]; p; p = next)
3279 next = p->next;
3280 xfree (p);
3283 xfree (xpm_color_cache);
3284 xpm_color_cache = NULL;
3285 free_color_table ();
3288 /* Return the bucket index for color named COLOR_NAME in the color
3289 cache. */
3291 static int
3292 xpm_color_bucket (color_name)
3293 char *color_name;
3295 unsigned h = 0;
3296 char *s;
3298 for (s = color_name; *s; ++s)
3299 h = (h << 2) ^ *s;
3300 return h %= XPM_COLOR_CACHE_BUCKETS;
3304 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3305 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3306 entry added. */
3308 static struct xpm_cached_color *
3309 xpm_cache_color (f, color_name, color, bucket)
3310 struct frame *f;
3311 char *color_name;
3312 XColor *color;
3313 int bucket;
3315 size_t nbytes;
3316 struct xpm_cached_color *p;
3318 if (bucket < 0)
3319 bucket = xpm_color_bucket (color_name);
3321 nbytes = sizeof *p + strlen (color_name);
3322 p = (struct xpm_cached_color *) xmalloc (nbytes);
3323 strcpy (p->name, color_name);
3324 p->color = *color;
3325 p->next = xpm_color_cache[bucket];
3326 xpm_color_cache[bucket] = p;
3327 return p;
3330 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3331 return the cached definition in *COLOR. Otherwise, make a new
3332 entry in the cache and allocate the color. Value is zero if color
3333 allocation failed. */
3335 static int
3336 xpm_lookup_color (f, color_name, color)
3337 struct frame *f;
3338 char *color_name;
3339 XColor *color;
3341 struct xpm_cached_color *p;
3342 int h = xpm_color_bucket (color_name);
3344 for (p = xpm_color_cache[h]; p; p = p->next)
3345 if (strcmp (p->name, color_name) == 0)
3346 break;
3348 if (p != NULL)
3349 *color = p->color;
3350 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3351 color_name, color))
3353 color->pixel = lookup_rgb_color (f, color->red, color->green,
3354 color->blue);
3355 p = xpm_cache_color (f, color_name, color, h);
3357 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3358 with transparency, and it's useful. */
3359 else if (strcmp ("opaque", color_name) == 0)
3361 bzero (color, sizeof (XColor)); /* Is this necessary/correct? */
3362 color->pixel = FRAME_FOREGROUND_PIXEL (f);
3363 p = xpm_cache_color (f, color_name, color, h);
3366 return p != NULL;
3370 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3371 CLOSURE is a pointer to the frame on which we allocate the
3372 color. Return in *COLOR the allocated color. Value is non-zero
3373 if successful. */
3375 static int
3376 xpm_alloc_color (dpy, cmap, color_name, color, closure)
3377 Display *dpy;
3378 Colormap cmap;
3379 char *color_name;
3380 XColor *color;
3381 void *closure;
3383 return xpm_lookup_color ((struct frame *) closure, color_name, color);
3387 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3388 is a pointer to the frame on which we allocate the color. Value is
3389 non-zero if successful. */
3391 static int
3392 xpm_free_colors (dpy, cmap, pixels, npixels, closure)
3393 Display *dpy;
3394 Colormap cmap;
3395 Pixel *pixels;
3396 int npixels;
3397 void *closure;
3399 return 1;
3402 #endif /* ALLOC_XPM_COLORS */
3405 #ifdef HAVE_NTGUI
3407 /* XPM library details. */
3409 DEF_IMGLIB_FN (XpmFreeAttributes);
3410 DEF_IMGLIB_FN (XpmCreateImageFromBuffer);
3411 DEF_IMGLIB_FN (XpmReadFileToImage);
3412 DEF_IMGLIB_FN (XImageFree);
3414 static int
3415 init_xpm_functions (Lisp_Object libraries)
3417 HMODULE library;
3419 if (!(library = w32_delayed_load (libraries, Qxpm)))
3420 return 0;
3422 LOAD_IMGLIB_FN (library, XpmFreeAttributes);
3423 LOAD_IMGLIB_FN (library, XpmCreateImageFromBuffer);
3424 LOAD_IMGLIB_FN (library, XpmReadFileToImage);
3425 LOAD_IMGLIB_FN (library, XImageFree);
3426 return 1;
3429 #endif /* HAVE_NTGUI */
3432 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
3433 for XPM images. Such a list must consist of conses whose car and
3434 cdr are strings. */
3436 static int
3437 xpm_valid_color_symbols_p (color_symbols)
3438 Lisp_Object color_symbols;
3440 while (CONSP (color_symbols))
3442 Lisp_Object sym = XCAR (color_symbols);
3443 if (!CONSP (sym)
3444 || !STRINGP (XCAR (sym))
3445 || !STRINGP (XCDR (sym)))
3446 break;
3447 color_symbols = XCDR (color_symbols);
3450 return NILP (color_symbols);
3454 /* Value is non-zero if OBJECT is a valid XPM image specification. */
3456 static int
3457 xpm_image_p (object)
3458 Lisp_Object object;
3460 struct image_keyword fmt[XPM_LAST];
3461 bcopy (xpm_format, fmt, sizeof fmt);
3462 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
3463 /* Either `:file' or `:data' must be present. */
3464 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
3465 /* Either no `:color-symbols' or it's a list of conses
3466 whose car and cdr are strings. */
3467 && (fmt[XPM_COLOR_SYMBOLS].count == 0
3468 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
3471 #endif /* HAVE_XPM || HAVE_NS */
3473 #if defined (HAVE_XPM) && defined (HAVE_X_WINDOWS)
3475 x_create_bitmap_from_xpm_data (f, bits)
3476 struct frame *f;
3477 char **bits;
3479 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3480 int id, rc;
3481 XpmAttributes attrs;
3482 Pixmap bitmap, mask;
3484 bzero (&attrs, sizeof attrs);
3486 attrs.visual = FRAME_X_VISUAL (f);
3487 attrs.colormap = FRAME_X_COLORMAP (f);
3488 attrs.valuemask |= XpmVisual;
3489 attrs.valuemask |= XpmColormap;
3491 rc = XpmCreatePixmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3492 bits, &bitmap, &mask, &attrs);
3493 if (rc != XpmSuccess)
3495 XpmFreeAttributes (&attrs);
3496 return -1;
3499 id = x_allocate_bitmap_record (f);
3500 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
3501 dpyinfo->bitmaps[id - 1].have_mask = 1;
3502 dpyinfo->bitmaps[id - 1].mask = mask;
3503 dpyinfo->bitmaps[id - 1].file = NULL;
3504 dpyinfo->bitmaps[id - 1].height = attrs.height;
3505 dpyinfo->bitmaps[id - 1].width = attrs.width;
3506 dpyinfo->bitmaps[id - 1].depth = attrs.depth;
3507 dpyinfo->bitmaps[id - 1].refcount = 1;
3509 XpmFreeAttributes (&attrs);
3510 return id;
3512 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3514 /* Load image IMG which will be displayed on frame F. Value is
3515 non-zero if successful. */
3517 #ifdef HAVE_XPM
3519 static int
3520 xpm_load (f, img)
3521 struct frame *f;
3522 struct image *img;
3524 int rc;
3525 XpmAttributes attrs;
3526 Lisp_Object specified_file, color_symbols;
3527 #ifdef HAVE_NTGUI
3528 HDC hdc;
3529 xpm_XImage * xpm_image = NULL, * xpm_mask = NULL;
3530 #endif /* HAVE_NTGUI */
3532 /* Configure the XPM lib. Use the visual of frame F. Allocate
3533 close colors. Return colors allocated. */
3534 bzero (&attrs, sizeof attrs);
3536 #ifndef HAVE_NTGUI
3537 attrs.visual = FRAME_X_VISUAL (f);
3538 attrs.colormap = FRAME_X_COLORMAP (f);
3539 attrs.valuemask |= XpmVisual;
3540 attrs.valuemask |= XpmColormap;
3541 #endif /* HAVE_NTGUI */
3543 #ifdef ALLOC_XPM_COLORS
3544 /* Allocate colors with our own functions which handle
3545 failing color allocation more gracefully. */
3546 attrs.color_closure = f;
3547 attrs.alloc_color = xpm_alloc_color;
3548 attrs.free_colors = xpm_free_colors;
3549 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
3550 #else /* not ALLOC_XPM_COLORS */
3551 /* Let the XPM lib allocate colors. */
3552 attrs.valuemask |= XpmReturnAllocPixels;
3553 #ifdef XpmAllocCloseColors
3554 attrs.alloc_close_colors = 1;
3555 attrs.valuemask |= XpmAllocCloseColors;
3556 #else /* not XpmAllocCloseColors */
3557 attrs.closeness = 600;
3558 attrs.valuemask |= XpmCloseness;
3559 #endif /* not XpmAllocCloseColors */
3560 #endif /* ALLOC_XPM_COLORS */
3562 /* If image specification contains symbolic color definitions, add
3563 these to `attrs'. */
3564 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3565 if (CONSP (color_symbols))
3567 Lisp_Object tail;
3568 XpmColorSymbol *xpm_syms;
3569 int i, size;
3571 attrs.valuemask |= XpmColorSymbols;
3573 /* Count number of symbols. */
3574 attrs.numsymbols = 0;
3575 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
3576 ++attrs.numsymbols;
3578 /* Allocate an XpmColorSymbol array. */
3579 size = attrs.numsymbols * sizeof *xpm_syms;
3580 xpm_syms = (XpmColorSymbol *) alloca (size);
3581 bzero (xpm_syms, size);
3582 attrs.colorsymbols = xpm_syms;
3584 /* Fill the color symbol array. */
3585 for (tail = color_symbols, i = 0;
3586 CONSP (tail);
3587 ++i, tail = XCDR (tail))
3589 Lisp_Object name = XCAR (XCAR (tail));
3590 Lisp_Object color = XCDR (XCAR (tail));
3591 xpm_syms[i].name = (char *) alloca (SCHARS (name) + 1);
3592 strcpy (xpm_syms[i].name, SDATA (name));
3593 xpm_syms[i].value = (char *) alloca (SCHARS (color) + 1);
3594 strcpy (xpm_syms[i].value, SDATA (color));
3598 /* Create a pixmap for the image, either from a file, or from a
3599 string buffer containing data in the same format as an XPM file. */
3600 #ifdef ALLOC_XPM_COLORS
3601 xpm_init_color_cache (f, &attrs);
3602 #endif
3604 specified_file = image_spec_value (img->spec, QCfile, NULL);
3606 #ifdef HAVE_NTGUI
3608 HDC frame_dc = get_frame_dc (f);
3609 hdc = CreateCompatibleDC (frame_dc);
3610 release_frame_dc (f, frame_dc);
3612 #endif /* HAVE_NTGUI */
3614 if (STRINGP (specified_file))
3616 Lisp_Object file = x_find_image_file (specified_file);
3617 if (!STRINGP (file))
3619 image_error ("Cannot find image file `%s'", specified_file, Qnil);
3620 return 0;
3623 #ifdef HAVE_NTGUI
3624 /* XpmReadFileToPixmap is not available in the Windows port of
3625 libxpm. But XpmReadFileToImage almost does what we want. */
3626 rc = fn_XpmReadFileToImage (&hdc, SDATA (file),
3627 &xpm_image, &xpm_mask,
3628 &attrs);
3629 #else
3630 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3631 SDATA (file), &img->pixmap, &img->mask,
3632 &attrs);
3633 #endif /* HAVE_NTGUI */
3635 else
3637 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
3638 #ifdef HAVE_NTGUI
3639 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3640 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3641 rc = fn_XpmCreateImageFromBuffer (&hdc, SDATA (buffer),
3642 &xpm_image, &xpm_mask,
3643 &attrs);
3644 #else
3645 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3646 SDATA (buffer),
3647 &img->pixmap, &img->mask,
3648 &attrs);
3649 #endif /* HAVE_NTGUI */
3652 if (rc == XpmSuccess)
3654 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3655 img->colors = colors_in_color_table (&img->ncolors);
3656 #else /* not ALLOC_XPM_COLORS */
3657 int i;
3659 #ifdef HAVE_NTGUI
3660 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3661 plus some duplicate attributes. */
3662 if (xpm_image && xpm_image->bitmap)
3664 img->pixmap = xpm_image->bitmap;
3665 /* XImageFree in libXpm frees XImage struct without destroying
3666 the bitmap, which is what we want. */
3667 fn_XImageFree (xpm_image);
3669 if (xpm_mask && xpm_mask->bitmap)
3671 /* The mask appears to be inverted compared with what we expect.
3672 TODO: invert our expectations. See other places where we
3673 have to invert bits because our idea of masks is backwards. */
3674 HGDIOBJ old_obj;
3675 old_obj = SelectObject (hdc, xpm_mask->bitmap);
3677 PatBlt (hdc, 0, 0, xpm_mask->width, xpm_mask->height, DSTINVERT);
3678 SelectObject (hdc, old_obj);
3680 img->mask = xpm_mask->bitmap;
3681 fn_XImageFree (xpm_mask);
3682 DeleteDC (hdc);
3685 DeleteDC (hdc);
3686 #endif /* HAVE_NTGUI */
3688 /* Remember allocated colors. */
3689 img->ncolors = attrs.nalloc_pixels;
3690 img->colors = (unsigned long *) xmalloc (img->ncolors
3691 * sizeof *img->colors);
3692 for (i = 0; i < attrs.nalloc_pixels; ++i)
3694 img->colors[i] = attrs.alloc_pixels[i];
3695 #ifdef DEBUG_X_COLORS
3696 register_color (img->colors[i]);
3697 #endif
3699 #endif /* not ALLOC_XPM_COLORS */
3701 img->width = attrs.width;
3702 img->height = attrs.height;
3703 xassert (img->width > 0 && img->height > 0);
3705 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3706 #ifdef HAVE_NTGUI
3707 fn_XpmFreeAttributes (&attrs);
3708 #else
3709 XpmFreeAttributes (&attrs);
3710 #endif /* HAVE_NTGUI */
3712 else
3714 #ifdef HAVE_NTGUI
3715 DeleteDC (hdc);
3716 #endif /* HAVE_NTGUI */
3718 switch (rc)
3720 case XpmOpenFailed:
3721 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
3722 break;
3724 case XpmFileInvalid:
3725 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
3726 break;
3728 case XpmNoMemory:
3729 image_error ("Out of memory (%s)", img->spec, Qnil);
3730 break;
3732 case XpmColorFailed:
3733 image_error ("Color allocation error (%s)", img->spec, Qnil);
3734 break;
3736 default:
3737 image_error ("Unknown error (%s)", img->spec, Qnil);
3738 break;
3742 #ifdef ALLOC_XPM_COLORS
3743 xpm_free_color_cache ();
3744 #endif
3745 return rc == XpmSuccess;
3748 #endif /* HAVE_XPM */
3750 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3752 /* XPM support functions for NS where libxpm is not available.
3753 Only XPM version 3 (without any extensions) is supported. */
3755 static int xpm_scan P_ ((const unsigned char **, const unsigned char *,
3756 const unsigned char **, int *));
3757 static Lisp_Object xpm_make_color_table_v
3758 P_ ((void (**) (Lisp_Object, const unsigned char *, int, Lisp_Object),
3759 Lisp_Object (**) (Lisp_Object, const unsigned char *, int)));
3760 static void xpm_put_color_table_v P_ ((Lisp_Object, const unsigned char *,
3761 int, Lisp_Object));
3762 static Lisp_Object xpm_get_color_table_v P_ ((Lisp_Object,
3763 const unsigned char *, int));
3764 static Lisp_Object xpm_make_color_table_h
3765 P_ ((void (**) (Lisp_Object, const unsigned char *, int, Lisp_Object),
3766 Lisp_Object (**) (Lisp_Object, const unsigned char *, int)));
3767 static void xpm_put_color_table_h P_ ((Lisp_Object, const unsigned char *,
3768 int, Lisp_Object));
3769 static Lisp_Object xpm_get_color_table_h P_ ((Lisp_Object,
3770 const unsigned char *, int));
3771 static int xpm_str_to_color_key P_ ((const char *));
3772 static int xpm_load_image P_ ((struct frame *, struct image *,
3773 const unsigned char *, const unsigned char *));
3775 /* Tokens returned from xpm_scan. */
3777 enum xpm_token
3779 XPM_TK_IDENT = 256,
3780 XPM_TK_STRING,
3781 XPM_TK_EOF
3784 /* Scan an XPM data and return a character (< 256) or a token defined
3785 by enum xpm_token above. *S and END are the start (inclusive) and
3786 the end (exclusive) addresses of the data, respectively. Advance
3787 *S while scanning. If token is either XPM_TK_IDENT or
3788 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3789 length of the corresponding token, respectively. */
3791 static int
3792 xpm_scan (s, end, beg, len)
3793 const unsigned char **s, *end, **beg;
3794 int *len;
3796 int c;
3798 while (*s < end)
3800 /* Skip white-space. */
3801 while (*s < end && (c = *(*s)++, isspace (c)))
3804 /* gnus-pointer.xpm uses '-' in its identifier.
3805 sb-dir-plus.xpm uses '+' in its identifier. */
3806 if (isalpha (c) || c == '_' || c == '-' || c == '+')
3808 *beg = *s - 1;
3809 while (*s < end
3810 && (c = **s, isalnum (c) || c == '_' || c == '-' || c == '+'))
3811 ++*s;
3812 *len = *s - *beg;
3813 return XPM_TK_IDENT;
3815 else if (c == '"')
3817 *beg = *s;
3818 while (*s < end && **s != '"')
3819 ++*s;
3820 *len = *s - *beg;
3821 if (*s < end)
3822 ++*s;
3823 return XPM_TK_STRING;
3825 else if (c == '/')
3827 if (*s < end && **s == '*')
3829 /* C-style comment. */
3830 ++*s;
3833 while (*s < end && *(*s)++ != '*')
3836 while (*s < end && **s != '/');
3837 if (*s < end)
3838 ++*s;
3840 else
3841 return c;
3843 else
3844 return c;
3847 return XPM_TK_EOF;
3850 /* Functions for color table lookup in XPM data. A key is a string
3851 specifying the color of each pixel in XPM data. A value is either
3852 an integer that specifies a pixel color, Qt that specifies
3853 transparency, or Qnil for the unspecified color. If the length of
3854 the key string is one, a vector is used as a table. Otherwise, a
3855 hash table is used. */
3857 static Lisp_Object
3858 xpm_make_color_table_v (put_func, get_func)
3859 void (**put_func) (Lisp_Object, const unsigned char *, int, Lisp_Object);
3860 Lisp_Object (**get_func) (Lisp_Object, const unsigned char *, int);
3862 *put_func = xpm_put_color_table_v;
3863 *get_func = xpm_get_color_table_v;
3864 return Fmake_vector (make_number (256), Qnil);
3867 static void
3868 xpm_put_color_table_v (color_table, chars_start, chars_len, color)
3869 Lisp_Object color_table;
3870 const unsigned char *chars_start;
3871 int chars_len;
3872 Lisp_Object color;
3874 XVECTOR (color_table)->contents[*chars_start] = color;
3877 static Lisp_Object
3878 xpm_get_color_table_v (color_table, chars_start, chars_len)
3879 Lisp_Object color_table;
3880 const unsigned char *chars_start;
3881 int chars_len;
3883 return XVECTOR (color_table)->contents[*chars_start];
3886 static Lisp_Object
3887 xpm_make_color_table_h (put_func, get_func)
3888 void (**put_func) (Lisp_Object, const unsigned char *, int, Lisp_Object);
3889 Lisp_Object (**get_func) (Lisp_Object, const unsigned char *, int);
3891 *put_func = xpm_put_color_table_h;
3892 *get_func = xpm_get_color_table_h;
3893 return make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
3894 make_float (DEFAULT_REHASH_SIZE),
3895 make_float (DEFAULT_REHASH_THRESHOLD),
3896 Qnil, Qnil, Qnil);
3899 static void
3900 xpm_put_color_table_h (color_table, chars_start, chars_len, color)
3901 Lisp_Object color_table;
3902 const unsigned char *chars_start;
3903 int chars_len;
3904 Lisp_Object color;
3906 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3907 unsigned hash_code;
3908 Lisp_Object chars = make_unibyte_string (chars_start, chars_len);
3910 hash_lookup (table, chars, &hash_code);
3911 hash_put (table, chars, color, hash_code);
3914 static Lisp_Object
3915 xpm_get_color_table_h (color_table, chars_start, chars_len)
3916 Lisp_Object color_table;
3917 const unsigned char *chars_start;
3918 int chars_len;
3920 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3921 int i = hash_lookup (table, make_unibyte_string (chars_start, chars_len),
3922 NULL);
3924 return i >= 0 ? HASH_VALUE (table, i) : Qnil;
3927 enum xpm_color_key {
3928 XPM_COLOR_KEY_S,
3929 XPM_COLOR_KEY_M,
3930 XPM_COLOR_KEY_G4,
3931 XPM_COLOR_KEY_G,
3932 XPM_COLOR_KEY_C
3935 static const char xpm_color_key_strings[][4] = {"s", "m", "g4", "g", "c"};
3937 static int
3938 xpm_str_to_color_key (s)
3939 const char *s;
3941 int i;
3943 for (i = 0;
3944 i < sizeof xpm_color_key_strings / sizeof xpm_color_key_strings[0];
3945 i++)
3946 if (strcmp (xpm_color_key_strings[i], s) == 0)
3947 return i;
3948 return -1;
3951 static int
3952 xpm_load_image (f, img, contents, end)
3953 struct frame *f;
3954 struct image *img;
3955 const unsigned char *contents, *end;
3957 const unsigned char *s = contents, *beg, *str;
3958 unsigned char buffer[BUFSIZ];
3959 int width, height, x, y;
3960 int num_colors, chars_per_pixel;
3961 int len, LA1;
3962 void (*put_color_table) (Lisp_Object, const unsigned char *, int, Lisp_Object);
3963 Lisp_Object (*get_color_table) (Lisp_Object, const unsigned char *, int);
3964 Lisp_Object frame, color_symbols, color_table;
3965 int best_key, have_mask = 0;
3966 XImagePtr ximg = NULL, mask_img = NULL;
3968 #define match() \
3969 LA1 = xpm_scan (&s, end, &beg, &len)
3971 #define expect(TOKEN) \
3972 if (LA1 != (TOKEN)) \
3973 goto failure; \
3974 else \
3975 match ()
3977 #define expect_ident(IDENT) \
3978 if (LA1 == XPM_TK_IDENT \
3979 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3980 match (); \
3981 else \
3982 goto failure
3984 if (!(end - s >= 9 && memcmp (s, "/* XPM */", 9) == 0))
3985 goto failure;
3986 s += 9;
3987 match();
3988 expect_ident ("static");
3989 expect_ident ("char");
3990 expect ('*');
3991 expect (XPM_TK_IDENT);
3992 expect ('[');
3993 expect (']');
3994 expect ('=');
3995 expect ('{');
3996 expect (XPM_TK_STRING);
3997 if (len >= BUFSIZ)
3998 goto failure;
3999 memcpy (buffer, beg, len);
4000 buffer[len] = '\0';
4001 if (sscanf (buffer, "%d %d %d %d", &width, &height,
4002 &num_colors, &chars_per_pixel) != 4
4003 || width <= 0 || height <= 0
4004 || num_colors <= 0 || chars_per_pixel <= 0)
4005 goto failure;
4007 if (!check_image_size (f, width, height))
4009 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
4010 goto failure;
4013 expect (',');
4015 XSETFRAME (frame, f);
4016 if (!NILP (Fxw_display_color_p (frame)))
4017 best_key = XPM_COLOR_KEY_C;
4018 else if (!NILP (Fx_display_grayscale_p (frame)))
4019 best_key = (XFASTINT (Fx_display_planes (frame)) > 2
4020 ? XPM_COLOR_KEY_G : XPM_COLOR_KEY_G4);
4021 else
4022 best_key = XPM_COLOR_KEY_M;
4024 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
4025 if (chars_per_pixel == 1)
4026 color_table = xpm_make_color_table_v (&put_color_table,
4027 &get_color_table);
4028 else
4029 color_table = xpm_make_color_table_h (&put_color_table,
4030 &get_color_table);
4032 while (num_colors-- > 0)
4034 unsigned char *color, *max_color;
4035 int key, next_key, max_key = 0;
4036 Lisp_Object symbol_color = Qnil, color_val;
4037 XColor cdef;
4039 expect (XPM_TK_STRING);
4040 if (len <= chars_per_pixel || len >= BUFSIZ + chars_per_pixel)
4041 goto failure;
4042 memcpy (buffer, beg + chars_per_pixel, len - chars_per_pixel);
4043 buffer[len - chars_per_pixel] = '\0';
4045 str = strtok (buffer, " \t");
4046 if (str == NULL)
4047 goto failure;
4048 key = xpm_str_to_color_key (str);
4049 if (key < 0)
4050 goto failure;
4053 color = strtok (NULL, " \t");
4054 if (color == NULL)
4055 goto failure;
4057 while ((str = strtok (NULL, " \t")) != NULL)
4059 next_key = xpm_str_to_color_key (str);
4060 if (next_key >= 0)
4061 break;
4062 color[strlen (color)] = ' ';
4065 if (key == XPM_COLOR_KEY_S)
4067 if (NILP (symbol_color))
4068 symbol_color = build_string (color);
4070 else if (max_key < key && key <= best_key)
4072 max_key = key;
4073 max_color = color;
4075 key = next_key;
4077 while (str);
4079 color_val = Qnil;
4080 if (!NILP (color_symbols) && !NILP (symbol_color))
4082 Lisp_Object specified_color = Fassoc (symbol_color, color_symbols);
4084 if (CONSP (specified_color) && STRINGP (XCDR (specified_color)))
4086 if (xstrcasecmp (SDATA (XCDR (specified_color)), "None") == 0)
4087 color_val = Qt;
4088 else if (x_defined_color (f, SDATA (XCDR (specified_color)),
4089 &cdef, 0))
4090 color_val = make_number (cdef.pixel);
4093 if (NILP (color_val) && max_key > 0)
4095 if (xstrcasecmp (max_color, "None") == 0)
4096 color_val = Qt;
4097 else if (x_defined_color (f, max_color, &cdef, 0))
4098 color_val = make_number (cdef.pixel);
4100 if (!NILP (color_val))
4101 (*put_color_table) (color_table, beg, chars_per_pixel, color_val);
4103 expect (',');
4106 if (!x_create_x_image_and_pixmap (f, width, height, 0,
4107 &ximg, &img->pixmap)
4108 #ifndef HAVE_NS
4109 || !x_create_x_image_and_pixmap (f, width, height, 1,
4110 &mask_img, &img->mask)
4111 #endif
4114 image_error ("Out of memory (%s)", img->spec, Qnil);
4115 goto error;
4118 for (y = 0; y < height; y++)
4120 expect (XPM_TK_STRING);
4121 str = beg;
4122 if (len < width * chars_per_pixel)
4123 goto failure;
4124 for (x = 0; x < width; x++, str += chars_per_pixel)
4126 Lisp_Object color_val =
4127 (*get_color_table) (color_table, str, chars_per_pixel);
4129 XPutPixel (ximg, x, y,
4130 (INTEGERP (color_val) ? XINT (color_val)
4131 : FRAME_FOREGROUND_PIXEL (f)));
4132 #ifndef HAVE_NS
4133 XPutPixel (mask_img, x, y,
4134 (!EQ (color_val, Qt) ? PIX_MASK_DRAW
4135 : (have_mask = 1, PIX_MASK_RETAIN)));
4136 #else
4137 if (EQ(color_val, Qt))
4138 ns_set_alpha(ximg, x, y, 0);
4139 #endif
4141 if (y + 1 < height)
4142 expect (',');
4145 img->width = width;
4146 img->height = height;
4148 /* Maybe fill in the background field while we have ximg handy. */
4149 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
4150 IMAGE_BACKGROUND (img, f, ximg);
4152 x_put_x_image (f, ximg, img->pixmap, width, height);
4153 x_destroy_x_image (ximg);
4154 #ifndef HAVE_NS
4155 if (have_mask)
4157 /* Fill in the background_transparent field while we have the
4158 mask handy. */
4159 image_background_transparent (img, f, mask_img);
4161 x_put_x_image (f, mask_img, img->mask, width, height);
4162 x_destroy_x_image (mask_img);
4164 else
4166 x_destroy_x_image (mask_img);
4167 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4168 img->mask = NO_PIXMAP;
4170 #endif
4171 return 1;
4173 failure:
4174 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
4175 error:
4176 x_destroy_x_image (ximg);
4177 x_destroy_x_image (mask_img);
4178 x_clear_image (f, img);
4179 return 0;
4181 #undef match
4182 #undef expect
4183 #undef expect_ident
4186 static int
4187 xpm_load (f, img)
4188 struct frame *f;
4189 struct image *img;
4191 int success_p = 0;
4192 Lisp_Object file_name;
4194 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4195 file_name = image_spec_value (img->spec, QCfile, NULL);
4196 if (STRINGP (file_name))
4198 Lisp_Object file;
4199 unsigned char *contents;
4200 int size;
4201 struct gcpro gcpro1;
4203 file = x_find_image_file (file_name);
4204 GCPRO1 (file);
4205 if (!STRINGP (file))
4207 image_error ("Cannot find image file `%s'", file_name, Qnil);
4208 UNGCPRO;
4209 return 0;
4212 contents = slurp_file (SDATA (file), &size);
4213 if (contents == NULL)
4215 image_error ("Error loading XPM image `%s'", img->spec, Qnil);
4216 UNGCPRO;
4217 return 0;
4220 success_p = xpm_load_image (f, img, contents, contents + size);
4221 xfree (contents);
4222 UNGCPRO;
4224 else
4226 Lisp_Object data;
4228 data = image_spec_value (img->spec, QCdata, NULL);
4229 success_p = xpm_load_image (f, img, SDATA (data),
4230 SDATA (data) + SBYTES (data));
4233 return success_p;
4236 #endif /* HAVE_NS && !HAVE_XPM */
4240 /***********************************************************************
4241 Color table
4242 ***********************************************************************/
4244 #ifdef COLOR_TABLE_SUPPORT
4246 /* An entry in the color table mapping an RGB color to a pixel color. */
4248 struct ct_color
4250 int r, g, b;
4251 unsigned long pixel;
4253 /* Next in color table collision list. */
4254 struct ct_color *next;
4257 /* The bucket vector size to use. Must be prime. */
4259 #define CT_SIZE 101
4261 /* Value is a hash of the RGB color given by R, G, and B. */
4263 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4265 /* The color hash table. */
4267 struct ct_color **ct_table;
4269 /* Number of entries in the color table. */
4271 int ct_colors_allocated;
4273 /* Initialize the color table. */
4275 static void
4276 init_color_table ()
4278 int size = CT_SIZE * sizeof (*ct_table);
4279 ct_table = (struct ct_color **) xmalloc (size);
4280 bzero (ct_table, size);
4281 ct_colors_allocated = 0;
4285 /* Free memory associated with the color table. */
4287 static void
4288 free_color_table ()
4290 int i;
4291 struct ct_color *p, *next;
4293 for (i = 0; i < CT_SIZE; ++i)
4294 for (p = ct_table[i]; p; p = next)
4296 next = p->next;
4297 xfree (p);
4300 xfree (ct_table);
4301 ct_table = NULL;
4305 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4306 entry for that color already is in the color table, return the
4307 pixel color of that entry. Otherwise, allocate a new color for R,
4308 G, B, and make an entry in the color table. */
4310 static unsigned long
4311 lookup_rgb_color (f, r, g, b)
4312 struct frame *f;
4313 int r, g, b;
4315 unsigned hash = CT_HASH_RGB (r, g, b);
4316 int i = hash % CT_SIZE;
4317 struct ct_color *p;
4318 Display_Info *dpyinfo;
4320 /* Handle TrueColor visuals specially, which improves performance by
4321 two orders of magnitude. Freeing colors on TrueColor visuals is
4322 a nop, and pixel colors specify RGB values directly. See also
4323 the Xlib spec, chapter 3.1. */
4324 dpyinfo = FRAME_X_DISPLAY_INFO (f);
4325 if (dpyinfo->red_bits > 0)
4327 unsigned long pr, pg, pb;
4329 /* Apply gamma-correction like normal color allocation does. */
4330 if (f->gamma)
4332 XColor color;
4333 color.red = r, color.green = g, color.blue = b;
4334 gamma_correct (f, &color);
4335 r = color.red, g = color.green, b = color.blue;
4338 /* Scale down RGB values to the visual's bits per RGB, and shift
4339 them to the right position in the pixel color. Note that the
4340 original RGB values are 16-bit values, as usual in X. */
4341 pr = (r >> (16 - dpyinfo->red_bits)) << dpyinfo->red_offset;
4342 pg = (g >> (16 - dpyinfo->green_bits)) << dpyinfo->green_offset;
4343 pb = (b >> (16 - dpyinfo->blue_bits)) << dpyinfo->blue_offset;
4345 /* Assemble the pixel color. */
4346 return pr | pg | pb;
4349 for (p = ct_table[i]; p; p = p->next)
4350 if (p->r == r && p->g == g && p->b == b)
4351 break;
4353 if (p == NULL)
4356 #ifdef HAVE_X_WINDOWS
4357 XColor color;
4358 Colormap cmap;
4359 int rc;
4361 color.red = r;
4362 color.green = g;
4363 color.blue = b;
4365 cmap = FRAME_X_COLORMAP (f);
4366 rc = x_alloc_nearest_color (f, cmap, &color);
4367 if (rc)
4369 ++ct_colors_allocated;
4370 p = (struct ct_color *) xmalloc (sizeof *p);
4371 p->r = r;
4372 p->g = g;
4373 p->b = b;
4374 p->pixel = color.pixel;
4375 p->next = ct_table[i];
4376 ct_table[i] = p;
4378 else
4379 return FRAME_FOREGROUND_PIXEL (f);
4381 #else
4382 COLORREF color;
4383 #ifdef HAVE_NTGUI
4384 color = PALETTERGB (r, g, b);
4385 #else
4386 color = RGB_TO_ULONG (r, g, b);
4387 #endif /* HAVE_NTGUI */
4388 ++ct_colors_allocated;
4389 p = (struct ct_color *) xmalloc (sizeof *p);
4390 p->r = r;
4391 p->g = g;
4392 p->b = b;
4393 p->pixel = color;
4394 p->next = ct_table[i];
4395 ct_table[i] = p;
4396 #endif /* HAVE_X_WINDOWS */
4400 return p->pixel;
4404 /* Look up pixel color PIXEL which is used on frame F in the color
4405 table. If not already present, allocate it. Value is PIXEL. */
4407 static unsigned long
4408 lookup_pixel_color (f, pixel)
4409 struct frame *f;
4410 unsigned long pixel;
4412 int i = pixel % CT_SIZE;
4413 struct ct_color *p;
4415 for (p = ct_table[i]; p; p = p->next)
4416 if (p->pixel == pixel)
4417 break;
4419 if (p == NULL)
4421 XColor color;
4422 Colormap cmap;
4423 int rc;
4425 #ifdef HAVE_X_WINDOWS
4426 cmap = FRAME_X_COLORMAP (f);
4427 color.pixel = pixel;
4428 x_query_color (f, &color);
4429 rc = x_alloc_nearest_color (f, cmap, &color);
4430 #else
4431 BLOCK_INPUT;
4432 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
4433 color.pixel = pixel;
4434 XQueryColor (NULL, cmap, &color);
4435 rc = x_alloc_nearest_color (f, cmap, &color);
4436 UNBLOCK_INPUT;
4437 #endif /* HAVE_X_WINDOWS */
4439 if (rc)
4441 ++ct_colors_allocated;
4443 p = (struct ct_color *) xmalloc (sizeof *p);
4444 p->r = color.red;
4445 p->g = color.green;
4446 p->b = color.blue;
4447 p->pixel = pixel;
4448 p->next = ct_table[i];
4449 ct_table[i] = p;
4451 else
4452 return FRAME_FOREGROUND_PIXEL (f);
4454 return p->pixel;
4458 /* Value is a vector of all pixel colors contained in the color table,
4459 allocated via xmalloc. Set *N to the number of colors. */
4461 static unsigned long *
4462 colors_in_color_table (n)
4463 int *n;
4465 int i, j;
4466 struct ct_color *p;
4467 unsigned long *colors;
4469 if (ct_colors_allocated == 0)
4471 *n = 0;
4472 colors = NULL;
4474 else
4476 colors = (unsigned long *) xmalloc (ct_colors_allocated
4477 * sizeof *colors);
4478 *n = ct_colors_allocated;
4480 for (i = j = 0; i < CT_SIZE; ++i)
4481 for (p = ct_table[i]; p; p = p->next)
4482 colors[j++] = p->pixel;
4485 return colors;
4488 #else /* COLOR_TABLE_SUPPORT */
4490 static unsigned long
4491 lookup_rgb_color (f, r, g, b)
4492 struct frame *f;
4493 int r, g, b;
4495 unsigned long pixel;
4497 #ifdef HAVE_NTGUI
4498 pixel = PALETTERGB (r >> 8, g >> 8, b >> 8);
4499 #endif /* HAVE_NTGUI */
4501 #ifdef HAVE_NS
4502 pixel = RGB_TO_ULONG (r >> 8, g >> 8, b >> 8);
4503 #endif /* HAVE_NS */
4504 return pixel;
4507 static void
4508 init_color_table ()
4511 #endif /* COLOR_TABLE_SUPPORT */
4514 /***********************************************************************
4515 Algorithms
4516 ***********************************************************************/
4518 static XColor *x_to_xcolors P_ ((struct frame *, struct image *, int));
4519 static void x_from_xcolors P_ ((struct frame *, struct image *, XColor *));
4520 static void x_detect_edges P_ ((struct frame *, struct image *, int[9], int));
4522 #ifdef HAVE_NTGUI
4523 static void XPutPixel (XImagePtr , int, int, COLORREF);
4524 #endif /* HAVE_NTGUI */
4526 /* Non-zero means draw a cross on images having `:conversion
4527 disabled'. */
4529 int cross_disabled_images;
4531 /* Edge detection matrices for different edge-detection
4532 strategies. */
4534 static int emboss_matrix[9] = {
4535 /* x - 1 x x + 1 */
4536 2, -1, 0, /* y - 1 */
4537 -1, 0, 1, /* y */
4538 0, 1, -2 /* y + 1 */
4541 static int laplace_matrix[9] = {
4542 /* x - 1 x x + 1 */
4543 1, 0, 0, /* y - 1 */
4544 0, 0, 0, /* y */
4545 0, 0, -1 /* y + 1 */
4548 /* Value is the intensity of the color whose red/green/blue values
4549 are R, G, and B. */
4551 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4554 /* On frame F, return an array of XColor structures describing image
4555 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4556 non-zero means also fill the red/green/blue members of the XColor
4557 structures. Value is a pointer to the array of XColors structures,
4558 allocated with xmalloc; it must be freed by the caller. */
4560 static XColor *
4561 x_to_xcolors (f, img, rgb_p)
4562 struct frame *f;
4563 struct image *img;
4564 int rgb_p;
4566 int x, y;
4567 XColor *colors, *p;
4568 XImagePtr_or_DC ximg;
4569 #ifdef HAVE_NTGUI
4570 HDC hdc;
4571 HGDIOBJ prev;
4572 #endif /* HAVE_NTGUI */
4574 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
4576 #ifndef HAVE_NTGUI
4577 /* Get the X image IMG->pixmap. */
4578 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
4579 0, 0, img->width, img->height, ~0, ZPixmap);
4580 #else
4581 /* Load the image into a memory device context. */
4582 hdc = get_frame_dc (f);
4583 ximg = CreateCompatibleDC (hdc);
4584 release_frame_dc (f, hdc);
4585 prev = SelectObject (ximg, img->pixmap);
4586 #endif /* HAVE_NTGUI */
4588 /* Fill the `pixel' members of the XColor array. I wished there
4589 were an easy and portable way to circumvent XGetPixel. */
4590 p = colors;
4591 for (y = 0; y < img->height; ++y)
4593 XColor *row = p;
4595 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4596 for (x = 0; x < img->width; ++x, ++p)
4597 p->pixel = GET_PIXEL (ximg, x, y);
4598 if (rgb_p)
4599 x_query_colors (f, row, img->width);
4601 #else
4603 for (x = 0; x < img->width; ++x, ++p)
4605 /* W32_TODO: palette support needed here? */
4606 p->pixel = GET_PIXEL (ximg, x, y);
4607 if (rgb_p)
4609 p->red = RED16_FROM_ULONG (p->pixel);
4610 p->green = GREEN16_FROM_ULONG (p->pixel);
4611 p->blue = BLUE16_FROM_ULONG (p->pixel);
4614 #endif /* HAVE_X_WINDOWS */
4617 Destroy_Image (ximg, prev);
4619 return colors;
4622 #ifdef HAVE_NTGUI
4624 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4625 created with CreateDIBSection, with the pointer to the bit values
4626 stored in ximg->data. */
4628 static void
4629 XPutPixel (ximg, x, y, color)
4630 XImagePtr ximg;
4631 int x, y;
4632 COLORREF color;
4634 int width = ximg->info.bmiHeader.biWidth;
4635 int height = ximg->info.bmiHeader.biHeight;
4636 unsigned char * pixel;
4638 /* True color images. */
4639 if (ximg->info.bmiHeader.biBitCount == 24)
4641 int rowbytes = width * 3;
4642 /* Ensure scanlines are aligned on 4 byte boundaries. */
4643 if (rowbytes % 4)
4644 rowbytes += 4 - (rowbytes % 4);
4646 pixel = ximg->data + y * rowbytes + x * 3;
4647 /* Windows bitmaps are in BGR order. */
4648 *pixel = GetBValue (color);
4649 *(pixel + 1) = GetGValue (color);
4650 *(pixel + 2) = GetRValue (color);
4652 /* Monochrome images. */
4653 else if (ximg->info.bmiHeader.biBitCount == 1)
4655 int rowbytes = width / 8;
4656 /* Ensure scanlines are aligned on 4 byte boundaries. */
4657 if (rowbytes % 4)
4658 rowbytes += 4 - (rowbytes % 4);
4659 pixel = ximg->data + y * rowbytes + x / 8;
4660 /* Filter out palette info. */
4661 if (color & 0x00ffffff)
4662 *pixel = *pixel | (1 << x % 8);
4663 else
4664 *pixel = *pixel & ~(1 << x % 8);
4666 else
4667 image_error ("XPutPixel: palette image not supported", Qnil, Qnil);
4670 #endif /* HAVE_NTGUI */
4672 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4673 RGB members are set. F is the frame on which this all happens.
4674 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4676 static void
4677 x_from_xcolors (f, img, colors)
4678 struct frame *f;
4679 struct image *img;
4680 XColor *colors;
4682 int x, y;
4683 XImagePtr oimg = NULL;
4684 Pixmap pixmap;
4685 XColor *p;
4687 init_color_table ();
4689 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
4690 &oimg, &pixmap);
4691 p = colors;
4692 for (y = 0; y < img->height; ++y)
4693 for (x = 0; x < img->width; ++x, ++p)
4695 unsigned long pixel;
4696 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
4697 XPutPixel (oimg, x, y, pixel);
4700 xfree (colors);
4701 x_clear_image_1 (f, img, 1, 0, 1);
4703 x_put_x_image (f, oimg, pixmap, img->width, img->height);
4704 x_destroy_x_image (oimg);
4705 img->pixmap = pixmap;
4706 #ifdef COLOR_TABLE_SUPPORT
4707 img->colors = colors_in_color_table (&img->ncolors);
4708 free_color_table ();
4709 #endif /* COLOR_TABLE_SUPPORT */
4713 /* On frame F, perform edge-detection on image IMG.
4715 MATRIX is a nine-element array specifying the transformation
4716 matrix. See emboss_matrix for an example.
4718 COLOR_ADJUST is a color adjustment added to each pixel of the
4719 outgoing image. */
4721 static void
4722 x_detect_edges (f, img, matrix, color_adjust)
4723 struct frame *f;
4724 struct image *img;
4725 int matrix[9], color_adjust;
4727 XColor *colors = x_to_xcolors (f, img, 1);
4728 XColor *new, *p;
4729 int x, y, i, sum;
4731 for (i = sum = 0; i < 9; ++i)
4732 sum += eabs (matrix[i]);
4734 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4736 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
4738 for (y = 0; y < img->height; ++y)
4740 p = COLOR (new, 0, y);
4741 p->red = p->green = p->blue = 0xffff/2;
4742 p = COLOR (new, img->width - 1, y);
4743 p->red = p->green = p->blue = 0xffff/2;
4746 for (x = 1; x < img->width - 1; ++x)
4748 p = COLOR (new, x, 0);
4749 p->red = p->green = p->blue = 0xffff/2;
4750 p = COLOR (new, x, img->height - 1);
4751 p->red = p->green = p->blue = 0xffff/2;
4754 for (y = 1; y < img->height - 1; ++y)
4756 p = COLOR (new, 1, y);
4758 for (x = 1; x < img->width - 1; ++x, ++p)
4760 int r, g, b, y1, x1;
4762 r = g = b = i = 0;
4763 for (y1 = y - 1; y1 < y + 2; ++y1)
4764 for (x1 = x - 1; x1 < x + 2; ++x1, ++i)
4765 if (matrix[i])
4767 XColor *t = COLOR (colors, x1, y1);
4768 r += matrix[i] * t->red;
4769 g += matrix[i] * t->green;
4770 b += matrix[i] * t->blue;
4773 r = (r / sum + color_adjust) & 0xffff;
4774 g = (g / sum + color_adjust) & 0xffff;
4775 b = (b / sum + color_adjust) & 0xffff;
4776 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
4780 xfree (colors);
4781 x_from_xcolors (f, img, new);
4783 #undef COLOR
4787 /* Perform the pre-defined `emboss' edge-detection on image IMG
4788 on frame F. */
4790 static void
4791 x_emboss (f, img)
4792 struct frame *f;
4793 struct image *img;
4795 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
4799 /* Transform image IMG which is used on frame F with a Laplace
4800 edge-detection algorithm. The result is an image that can be used
4801 to draw disabled buttons, for example. */
4803 static void
4804 x_laplace (f, img)
4805 struct frame *f;
4806 struct image *img;
4808 x_detect_edges (f, img, laplace_matrix, 45000);
4812 /* Perform edge-detection on image IMG on frame F, with specified
4813 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4815 MATRIX must be either
4817 - a list of at least 9 numbers in row-major form
4818 - a vector of at least 9 numbers
4820 COLOR_ADJUST nil means use a default; otherwise it must be a
4821 number. */
4823 static void
4824 x_edge_detection (f, img, matrix, color_adjust)
4825 struct frame *f;
4826 struct image *img;
4827 Lisp_Object matrix, color_adjust;
4829 int i = 0;
4830 int trans[9];
4832 if (CONSP (matrix))
4834 for (i = 0;
4835 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
4836 ++i, matrix = XCDR (matrix))
4837 trans[i] = XFLOATINT (XCAR (matrix));
4839 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
4841 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
4842 trans[i] = XFLOATINT (AREF (matrix, i));
4845 if (NILP (color_adjust))
4846 color_adjust = make_number (0xffff / 2);
4848 if (i == 9 && NUMBERP (color_adjust))
4849 x_detect_edges (f, img, trans, (int) XFLOATINT (color_adjust));
4853 /* Transform image IMG on frame F so that it looks disabled. */
4855 static void
4856 x_disable_image (f, img)
4857 struct frame *f;
4858 struct image *img;
4860 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4861 #ifdef HAVE_NTGUI
4862 int n_planes = dpyinfo->n_planes * dpyinfo->n_cbits;
4863 #else
4864 int n_planes = dpyinfo->n_planes;
4865 #endif /* HAVE_NTGUI */
4867 if (n_planes >= 2)
4869 /* Color (or grayscale). Convert to gray, and equalize. Just
4870 drawing such images with a stipple can look very odd, so
4871 we're using this method instead. */
4872 XColor *colors = x_to_xcolors (f, img, 1);
4873 XColor *p, *end;
4874 const int h = 15000;
4875 const int l = 30000;
4877 for (p = colors, end = colors + img->width * img->height;
4878 p < end;
4879 ++p)
4881 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
4882 int i2 = (0xffff - h - l) * i / 0xffff + l;
4883 p->red = p->green = p->blue = i2;
4886 x_from_xcolors (f, img, colors);
4889 /* Draw a cross over the disabled image, if we must or if we
4890 should. */
4891 if (n_planes < 2 || cross_disabled_images)
4893 #ifndef HAVE_NTGUI
4894 Display *dpy = FRAME_X_DISPLAY (f);
4895 GC gc;
4897 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4899 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4901 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
4902 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
4903 XDrawLine (dpy, img->pixmap, gc, 0, 0,
4904 img->width - 1, img->height - 1);
4905 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
4906 img->width - 1, 0);
4907 XFreeGC (dpy, gc);
4909 if (img->mask)
4911 gc = XCreateGC (dpy, img->mask, 0, NULL);
4912 XSetForeground (dpy, gc, MaskForeground (f));
4913 XDrawLine (dpy, img->mask, gc, 0, 0,
4914 img->width - 1, img->height - 1);
4915 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
4916 img->width - 1, 0);
4917 XFreeGC (dpy, gc);
4919 #endif /* !HAVE_NS */
4920 #else
4921 HDC hdc, bmpdc;
4922 HGDIOBJ prev;
4924 hdc = get_frame_dc (f);
4925 bmpdc = CreateCompatibleDC (hdc);
4926 release_frame_dc (f, hdc);
4928 prev = SelectObject (bmpdc, img->pixmap);
4930 SetTextColor (bmpdc, BLACK_PIX_DEFAULT (f));
4931 MoveToEx (bmpdc, 0, 0, NULL);
4932 LineTo (bmpdc, img->width - 1, img->height - 1);
4933 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4934 LineTo (bmpdc, img->width - 1, 0);
4936 if (img->mask)
4938 SelectObject (bmpdc, img->mask);
4939 SetTextColor (bmpdc, WHITE_PIX_DEFAULT (f));
4940 MoveToEx (bmpdc, 0, 0, NULL);
4941 LineTo (bmpdc, img->width - 1, img->height - 1);
4942 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4943 LineTo (bmpdc, img->width - 1, 0);
4945 SelectObject (bmpdc, prev);
4946 DeleteDC (bmpdc);
4947 #endif /* HAVE_NTGUI */
4952 /* Build a mask for image IMG which is used on frame F. FILE is the
4953 name of an image file, for error messages. HOW determines how to
4954 determine the background color of IMG. If it is a list '(R G B)',
4955 with R, G, and B being integers >= 0, take that as the color of the
4956 background. Otherwise, determine the background color of IMG
4957 heuristically. Value is non-zero if successful. */
4959 static int
4960 x_build_heuristic_mask (f, img, how)
4961 struct frame *f;
4962 struct image *img;
4963 Lisp_Object how;
4965 XImagePtr_or_DC ximg;
4966 #ifndef HAVE_NTGUI
4967 XImagePtr mask_img;
4968 #else
4969 HDC frame_dc;
4970 HGDIOBJ prev;
4971 char *mask_img;
4972 int row_width;
4973 #endif /* HAVE_NTGUI */
4974 int x, y, rc, use_img_background;
4975 unsigned long bg = 0;
4977 if (img->mask)
4979 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4980 img->mask = NO_PIXMAP;
4981 img->background_transparent_valid = 0;
4984 #ifndef HAVE_NTGUI
4985 #ifndef HAVE_NS
4986 /* Create an image and pixmap serving as mask. */
4987 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
4988 &mask_img, &img->mask);
4989 if (!rc)
4990 return 0;
4991 #endif /* !HAVE_NS */
4993 /* Get the X image of IMG->pixmap. */
4994 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap, 0, 0,
4995 img->width, img->height,
4996 ~0, ZPixmap);
4997 #else
4998 /* Create the bit array serving as mask. */
4999 row_width = (img->width + 7) / 8;
5000 mask_img = xmalloc (row_width * img->height);
5001 bzero (mask_img, row_width * img->height);
5003 /* Create a memory device context for IMG->pixmap. */
5004 frame_dc = get_frame_dc (f);
5005 ximg = CreateCompatibleDC (frame_dc);
5006 release_frame_dc (f, frame_dc);
5007 prev = SelectObject (ximg, img->pixmap);
5008 #endif /* HAVE_NTGUI */
5010 /* Determine the background color of ximg. If HOW is `(R G B)'
5011 take that as color. Otherwise, use the image's background color. */
5012 use_img_background = 1;
5014 if (CONSP (how))
5016 int rgb[3], i;
5018 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
5020 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
5021 how = XCDR (how);
5024 if (i == 3 && NILP (how))
5026 char color_name[30];
5027 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
5028 bg = (
5029 #ifdef HAVE_NTGUI
5030 0x00ffffff & /* Filter out palette info. */
5031 #endif /* HAVE_NTGUI */
5032 x_alloc_image_color (f, img, build_string (color_name), 0));
5033 use_img_background = 0;
5037 if (use_img_background)
5038 bg = four_corners_best (ximg, img->corners, img->width, img->height);
5040 /* Set all bits in mask_img to 1 whose color in ximg is different
5041 from the background color bg. */
5042 #ifndef HAVE_NTGUI
5043 for (y = 0; y < img->height; ++y)
5044 for (x = 0; x < img->width; ++x)
5045 #ifndef HAVE_NS
5046 XPutPixel (mask_img, x, y, (XGetPixel (ximg, x, y) != bg
5047 ? PIX_MASK_DRAW : PIX_MASK_RETAIN));
5048 #else
5049 if (XGetPixel (ximg, x, y) == bg)
5050 ns_set_alpha(ximg, x, y, 0);
5051 #endif /* HAVE_NS */
5052 #ifndef HAVE_NS
5053 /* Fill in the background_transparent field while we have the mask handy. */
5054 image_background_transparent (img, f, mask_img);
5056 /* Put mask_img into img->mask. */
5057 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
5058 x_destroy_x_image (mask_img);
5059 #endif /* !HAVE_NS */
5060 #else
5061 for (y = 0; y < img->height; ++y)
5062 for (x = 0; x < img->width; ++x)
5064 COLORREF p = GetPixel (ximg, x, y);
5065 if (p != bg)
5066 mask_img[y * row_width + x / 8] |= 1 << (x % 8);
5069 /* Create the mask image. */
5070 img->mask = w32_create_pixmap_from_bitmap_data (img->width, img->height,
5071 mask_img);
5072 /* Fill in the background_transparent field while we have the mask handy. */
5073 SelectObject (ximg, img->mask);
5074 image_background_transparent (img, f, ximg);
5076 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
5077 xfree (mask_img);
5078 #endif /* HAVE_NTGUI */
5080 Destroy_Image (ximg, prev);
5082 return 1;
5086 /***********************************************************************
5087 PBM (mono, gray, color)
5088 ***********************************************************************/
5090 static int pbm_image_p P_ ((Lisp_Object object));
5091 static int pbm_load P_ ((struct frame *f, struct image *img));
5092 static int pbm_scan_number P_ ((unsigned char **, unsigned char *));
5094 /* The symbol `pbm' identifying images of this type. */
5096 Lisp_Object Qpbm;
5098 /* Indices of image specification fields in gs_format, below. */
5100 enum pbm_keyword_index
5102 PBM_TYPE,
5103 PBM_FILE,
5104 PBM_DATA,
5105 PBM_ASCENT,
5106 PBM_MARGIN,
5107 PBM_RELIEF,
5108 PBM_ALGORITHM,
5109 PBM_HEURISTIC_MASK,
5110 PBM_MASK,
5111 PBM_FOREGROUND,
5112 PBM_BACKGROUND,
5113 PBM_LAST
5116 /* Vector of image_keyword structures describing the format
5117 of valid user-defined image specifications. */
5119 static const struct image_keyword pbm_format[PBM_LAST] =
5121 {":type", IMAGE_SYMBOL_VALUE, 1},
5122 {":file", IMAGE_STRING_VALUE, 0},
5123 {":data", IMAGE_STRING_VALUE, 0},
5124 {":ascent", IMAGE_ASCENT_VALUE, 0},
5125 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
5126 {":relief", IMAGE_INTEGER_VALUE, 0},
5127 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5128 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5129 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5130 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
5131 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5134 /* Structure describing the image type `pbm'. */
5136 static struct image_type pbm_type =
5138 &Qpbm,
5139 pbm_image_p,
5140 pbm_load,
5141 x_clear_image,
5142 NULL
5146 /* Return non-zero if OBJECT is a valid PBM image specification. */
5148 static int
5149 pbm_image_p (object)
5150 Lisp_Object object;
5152 struct image_keyword fmt[PBM_LAST];
5154 bcopy (pbm_format, fmt, sizeof fmt);
5156 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
5157 return 0;
5159 /* Must specify either :data or :file. */
5160 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
5164 /* Scan a decimal number from *S and return it. Advance *S while
5165 reading the number. END is the end of the string. Value is -1 at
5166 end of input. */
5168 static int
5169 pbm_scan_number (s, end)
5170 unsigned char **s, *end;
5172 int c = 0, val = -1;
5174 while (*s < end)
5176 /* Skip white-space. */
5177 while (*s < end && (c = *(*s)++, isspace (c)))
5180 if (c == '#')
5182 /* Skip comment to end of line. */
5183 while (*s < end && (c = *(*s)++, c != '\n'))
5186 else if (isdigit (c))
5188 /* Read decimal number. */
5189 val = c - '0';
5190 while (*s < end && (c = *(*s)++, isdigit (c)))
5191 val = 10 * val + c - '0';
5192 break;
5194 else
5195 break;
5198 return val;
5202 #ifdef HAVE_NTGUI
5203 #if 0 /* Unused. ++kfs */
5205 /* Read FILE into memory. Value is a pointer to a buffer allocated
5206 with xmalloc holding FILE's contents. Value is null if an error
5207 occurred. *SIZE is set to the size of the file. */
5209 static char *
5210 pbm_read_file (file, size)
5211 Lisp_Object file;
5212 int *size;
5214 FILE *fp = NULL;
5215 char *buf = NULL;
5216 struct stat st;
5218 if (stat (SDATA (file), &st) == 0
5219 && (fp = fopen (SDATA (file), "rb")) != NULL
5220 && (buf = (char *) xmalloc (st.st_size),
5221 fread (buf, 1, st.st_size, fp) == st.st_size))
5223 *size = st.st_size;
5224 fclose (fp);
5226 else
5228 if (fp)
5229 fclose (fp);
5230 if (buf)
5232 xfree (buf);
5233 buf = NULL;
5237 return buf;
5239 #endif
5240 #endif /* HAVE_NTGUI */
5242 /* Load PBM image IMG for use on frame F. */
5244 static int
5245 pbm_load (f, img)
5246 struct frame *f;
5247 struct image *img;
5249 int raw_p, x, y;
5250 int width, height, max_color_idx = 0;
5251 XImagePtr ximg;
5252 Lisp_Object file, specified_file;
5253 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
5254 struct gcpro gcpro1;
5255 unsigned char *contents = NULL;
5256 unsigned char *end, *p;
5257 int size;
5259 specified_file = image_spec_value (img->spec, QCfile, NULL);
5260 file = Qnil;
5261 GCPRO1 (file);
5263 if (STRINGP (specified_file))
5265 file = x_find_image_file (specified_file);
5266 if (!STRINGP (file))
5268 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5269 UNGCPRO;
5270 return 0;
5273 contents = slurp_file (SDATA (file), &size);
5274 if (contents == NULL)
5276 image_error ("Error reading `%s'", file, Qnil);
5277 UNGCPRO;
5278 return 0;
5281 p = contents;
5282 end = contents + size;
5284 else
5286 Lisp_Object data;
5287 data = image_spec_value (img->spec, QCdata, NULL);
5288 p = SDATA (data);
5289 end = p + SBYTES (data);
5292 /* Check magic number. */
5293 if (end - p < 2 || *p++ != 'P')
5295 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5296 error:
5297 xfree (contents);
5298 UNGCPRO;
5299 return 0;
5302 switch (*p++)
5304 case '1':
5305 raw_p = 0, type = PBM_MONO;
5306 break;
5308 case '2':
5309 raw_p = 0, type = PBM_GRAY;
5310 break;
5312 case '3':
5313 raw_p = 0, type = PBM_COLOR;
5314 break;
5316 case '4':
5317 raw_p = 1, type = PBM_MONO;
5318 break;
5320 case '5':
5321 raw_p = 1, type = PBM_GRAY;
5322 break;
5324 case '6':
5325 raw_p = 1, type = PBM_COLOR;
5326 break;
5328 default:
5329 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5330 goto error;
5333 /* Read width, height, maximum color-component. Characters
5334 starting with `#' up to the end of a line are ignored. */
5335 width = pbm_scan_number (&p, end);
5336 height = pbm_scan_number (&p, end);
5338 if (type != PBM_MONO)
5340 max_color_idx = pbm_scan_number (&p, end);
5341 if (max_color_idx > 65535 || max_color_idx < 0)
5343 image_error ("Unsupported maximum PBM color value", Qnil, Qnil);
5344 goto error;
5348 if (!check_image_size (f, width, height))
5350 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5351 goto error;
5354 if (!x_create_x_image_and_pixmap (f, width, height, 0,
5355 &ximg, &img->pixmap))
5356 goto error;
5358 /* Initialize the color hash table. */
5359 init_color_table ();
5361 if (type == PBM_MONO)
5363 int c = 0, g;
5364 struct image_keyword fmt[PBM_LAST];
5365 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
5366 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
5368 /* Parse the image specification. */
5369 bcopy (pbm_format, fmt, sizeof fmt);
5370 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
5372 /* Get foreground and background colors, maybe allocate colors. */
5373 if (fmt[PBM_FOREGROUND].count
5374 && STRINGP (fmt[PBM_FOREGROUND].value))
5375 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
5376 if (fmt[PBM_BACKGROUND].count
5377 && STRINGP (fmt[PBM_BACKGROUND].value))
5379 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
5380 img->background = bg;
5381 img->background_valid = 1;
5384 for (y = 0; y < height; ++y)
5385 for (x = 0; x < width; ++x)
5387 if (raw_p)
5389 if ((x & 7) == 0)
5391 if (p >= end)
5393 x_destroy_x_image (ximg);
5394 x_clear_image (f, img);
5395 image_error ("Invalid image size in image `%s'",
5396 img->spec, Qnil);
5397 goto error;
5399 c = *p++;
5401 g = c & 0x80;
5402 c <<= 1;
5404 else
5405 g = pbm_scan_number (&p, end);
5407 XPutPixel (ximg, x, y, g ? fg : bg);
5410 else
5412 int expected_size = height * width;
5413 if (max_color_idx > 255)
5414 expected_size *= 2;
5415 if (type == PBM_COLOR)
5416 expected_size *= 3;
5418 if (raw_p && p + expected_size > end)
5420 x_destroy_x_image (ximg);
5421 x_clear_image (f, img);
5422 image_error ("Invalid image size in image `%s'",
5423 img->spec, Qnil);
5424 goto error;
5427 for (y = 0; y < height; ++y)
5428 for (x = 0; x < width; ++x)
5430 int r, g, b;
5432 if (type == PBM_GRAY && raw_p)
5434 r = g = b = *p++;
5435 if (max_color_idx > 255)
5436 r = g = b = r * 256 + *p++;
5438 else if (type == PBM_GRAY)
5439 r = g = b = pbm_scan_number (&p, end);
5440 else if (raw_p)
5442 r = *p++;
5443 if (max_color_idx > 255)
5444 r = r * 256 + *p++;
5445 g = *p++;
5446 if (max_color_idx > 255)
5447 g = g * 256 + *p++;
5448 b = *p++;
5449 if (max_color_idx > 255)
5450 b = b * 256 + *p++;
5452 else
5454 r = pbm_scan_number (&p, end);
5455 g = pbm_scan_number (&p, end);
5456 b = pbm_scan_number (&p, end);
5459 if (r < 0 || g < 0 || b < 0)
5461 x_destroy_x_image (ximg);
5462 image_error ("Invalid pixel value in image `%s'",
5463 img->spec, Qnil);
5464 goto error;
5467 /* RGB values are now in the range 0..max_color_idx.
5468 Scale this to the range 0..0xffff supported by X. */
5469 r = (double) r * 65535 / max_color_idx;
5470 g = (double) g * 65535 / max_color_idx;
5471 b = (double) b * 65535 / max_color_idx;
5472 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5476 #ifdef COLOR_TABLE_SUPPORT
5477 /* Store in IMG->colors the colors allocated for the image, and
5478 free the color table. */
5479 img->colors = colors_in_color_table (&img->ncolors);
5480 free_color_table ();
5481 #endif /* COLOR_TABLE_SUPPORT */
5483 img->width = width;
5484 img->height = height;
5486 /* Maybe fill in the background field while we have ximg handy. */
5488 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5489 /* Casting avoids a GCC warning. */
5490 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5492 /* Put the image into a pixmap. */
5493 x_put_x_image (f, ximg, img->pixmap, width, height);
5494 x_destroy_x_image (ximg);
5496 /* X and W32 versions did it here, MAC version above. ++kfs
5497 img->width = width;
5498 img->height = height; */
5500 UNGCPRO;
5501 xfree (contents);
5502 return 1;
5506 /***********************************************************************
5508 ***********************************************************************/
5510 #if defined (HAVE_PNG) || defined (HAVE_NS)
5512 /* Function prototypes. */
5514 static int png_image_p P_ ((Lisp_Object object));
5515 static int png_load P_ ((struct frame *f, struct image *img));
5517 /* The symbol `png' identifying images of this type. */
5519 Lisp_Object Qpng;
5521 /* Indices of image specification fields in png_format, below. */
5523 enum png_keyword_index
5525 PNG_TYPE,
5526 PNG_DATA,
5527 PNG_FILE,
5528 PNG_ASCENT,
5529 PNG_MARGIN,
5530 PNG_RELIEF,
5531 PNG_ALGORITHM,
5532 PNG_HEURISTIC_MASK,
5533 PNG_MASK,
5534 PNG_BACKGROUND,
5535 PNG_LAST
5538 /* Vector of image_keyword structures describing the format
5539 of valid user-defined image specifications. */
5541 static const struct image_keyword png_format[PNG_LAST] =
5543 {":type", IMAGE_SYMBOL_VALUE, 1},
5544 {":data", IMAGE_STRING_VALUE, 0},
5545 {":file", IMAGE_STRING_VALUE, 0},
5546 {":ascent", IMAGE_ASCENT_VALUE, 0},
5547 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
5548 {":relief", IMAGE_INTEGER_VALUE, 0},
5549 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5550 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5551 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5552 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5555 /* Structure describing the image type `png'. */
5557 static struct image_type png_type =
5559 &Qpng,
5560 png_image_p,
5561 png_load,
5562 x_clear_image,
5563 NULL
5566 /* Return non-zero if OBJECT is a valid PNG image specification. */
5568 static int
5569 png_image_p (object)
5570 Lisp_Object object;
5572 struct image_keyword fmt[PNG_LAST];
5573 bcopy (png_format, fmt, sizeof fmt);
5575 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
5576 return 0;
5578 /* Must specify either the :data or :file keyword. */
5579 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
5582 #endif /* HAVE_PNG || HAVE_NS */
5585 #ifdef HAVE_PNG
5587 #ifdef HAVE_NTGUI
5588 /* PNG library details. */
5590 DEF_IMGLIB_FN (png_get_io_ptr);
5591 DEF_IMGLIB_FN (png_sig_cmp);
5592 DEF_IMGLIB_FN (png_create_read_struct);
5593 DEF_IMGLIB_FN (png_create_info_struct);
5594 DEF_IMGLIB_FN (png_destroy_read_struct);
5595 DEF_IMGLIB_FN (png_set_read_fn);
5596 DEF_IMGLIB_FN (png_set_sig_bytes);
5597 DEF_IMGLIB_FN (png_read_info);
5598 DEF_IMGLIB_FN (png_get_IHDR);
5599 DEF_IMGLIB_FN (png_get_valid);
5600 DEF_IMGLIB_FN (png_set_strip_16);
5601 DEF_IMGLIB_FN (png_set_expand);
5602 DEF_IMGLIB_FN (png_set_gray_to_rgb);
5603 DEF_IMGLIB_FN (png_set_background);
5604 DEF_IMGLIB_FN (png_get_bKGD);
5605 DEF_IMGLIB_FN (png_read_update_info);
5606 DEF_IMGLIB_FN (png_get_channels);
5607 DEF_IMGLIB_FN (png_get_rowbytes);
5608 DEF_IMGLIB_FN (png_read_image);
5609 DEF_IMGLIB_FN (png_read_end);
5610 DEF_IMGLIB_FN (png_error);
5612 static int
5613 init_png_functions (Lisp_Object libraries)
5615 HMODULE library;
5617 /* Try loading libpng under probable names. */
5618 if (!(library = w32_delayed_load (libraries, Qpng)))
5619 return 0;
5621 LOAD_IMGLIB_FN (library, png_get_io_ptr);
5622 LOAD_IMGLIB_FN (library, png_sig_cmp);
5623 LOAD_IMGLIB_FN (library, png_create_read_struct);
5624 LOAD_IMGLIB_FN (library, png_create_info_struct);
5625 LOAD_IMGLIB_FN (library, png_destroy_read_struct);
5626 LOAD_IMGLIB_FN (library, png_set_read_fn);
5627 LOAD_IMGLIB_FN (library, png_set_sig_bytes);
5628 LOAD_IMGLIB_FN (library, png_read_info);
5629 LOAD_IMGLIB_FN (library, png_get_IHDR);
5630 LOAD_IMGLIB_FN (library, png_get_valid);
5631 LOAD_IMGLIB_FN (library, png_set_strip_16);
5632 LOAD_IMGLIB_FN (library, png_set_expand);
5633 LOAD_IMGLIB_FN (library, png_set_gray_to_rgb);
5634 LOAD_IMGLIB_FN (library, png_set_background);
5635 LOAD_IMGLIB_FN (library, png_get_bKGD);
5636 LOAD_IMGLIB_FN (library, png_read_update_info);
5637 LOAD_IMGLIB_FN (library, png_get_channels);
5638 LOAD_IMGLIB_FN (library, png_get_rowbytes);
5639 LOAD_IMGLIB_FN (library, png_read_image);
5640 LOAD_IMGLIB_FN (library, png_read_end);
5641 LOAD_IMGLIB_FN (library, png_error);
5642 return 1;
5644 #else
5646 #define fn_png_get_io_ptr png_get_io_ptr
5647 #define fn_png_sig_cmp png_sig_cmp
5648 #define fn_png_create_read_struct png_create_read_struct
5649 #define fn_png_create_info_struct png_create_info_struct
5650 #define fn_png_destroy_read_struct png_destroy_read_struct
5651 #define fn_png_set_read_fn png_set_read_fn
5652 #define fn_png_set_sig_bytes png_set_sig_bytes
5653 #define fn_png_read_info png_read_info
5654 #define fn_png_get_IHDR png_get_IHDR
5655 #define fn_png_get_valid png_get_valid
5656 #define fn_png_set_strip_16 png_set_strip_16
5657 #define fn_png_set_expand png_set_expand
5658 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5659 #define fn_png_set_background png_set_background
5660 #define fn_png_get_bKGD png_get_bKGD
5661 #define fn_png_read_update_info png_read_update_info
5662 #define fn_png_get_channels png_get_channels
5663 #define fn_png_get_rowbytes png_get_rowbytes
5664 #define fn_png_read_image png_read_image
5665 #define fn_png_read_end png_read_end
5666 #define fn_png_error png_error
5668 #endif /* HAVE_NTGUI */
5670 /* Error and warning handlers installed when the PNG library
5671 is initialized. */
5673 static void
5674 my_png_error (png_ptr, msg)
5675 png_struct *png_ptr;
5676 char *msg;
5678 xassert (png_ptr != NULL);
5679 image_error ("PNG error: %s", build_string (msg), Qnil);
5680 longjmp (png_ptr->jmpbuf, 1);
5684 static void
5685 my_png_warning (png_ptr, msg)
5686 png_struct *png_ptr;
5687 char *msg;
5689 xassert (png_ptr != NULL);
5690 image_error ("PNG warning: %s", build_string (msg), Qnil);
5693 /* Memory source for PNG decoding. */
5695 struct png_memory_storage
5697 unsigned char *bytes; /* The data */
5698 size_t len; /* How big is it? */
5699 int index; /* Where are we? */
5703 /* Function set as reader function when reading PNG image from memory.
5704 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5705 bytes from the input to DATA. */
5707 static void
5708 png_read_from_memory (png_ptr, data, length)
5709 png_structp png_ptr;
5710 png_bytep data;
5711 png_size_t length;
5713 struct png_memory_storage *tbr
5714 = (struct png_memory_storage *) fn_png_get_io_ptr (png_ptr);
5716 if (length > tbr->len - tbr->index)
5717 fn_png_error (png_ptr, "Read error");
5719 bcopy (tbr->bytes + tbr->index, data, length);
5720 tbr->index = tbr->index + length;
5724 /* Function set as reader function when reading PNG image from a file.
5725 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5726 bytes from the input to DATA. */
5728 static void
5729 png_read_from_file (png_ptr, data, length)
5730 png_structp png_ptr;
5731 png_bytep data;
5732 png_size_t length;
5734 FILE *fp = (FILE *) fn_png_get_io_ptr (png_ptr);
5736 if (fread (data, 1, length, fp) < length)
5737 fn_png_error (png_ptr, "Read error");
5741 /* Load PNG image IMG for use on frame F. Value is non-zero if
5742 successful. */
5744 static int
5745 png_load (f, img)
5746 struct frame *f;
5747 struct image *img;
5749 Lisp_Object file, specified_file;
5750 Lisp_Object specified_data;
5751 int x, y, i;
5752 XImagePtr ximg, mask_img = NULL;
5753 struct gcpro gcpro1;
5754 png_struct *png_ptr = NULL;
5755 png_info *info_ptr = NULL, *end_info = NULL;
5756 FILE *volatile fp = NULL;
5757 png_byte sig[8];
5758 png_byte * volatile pixels = NULL;
5759 png_byte ** volatile rows = NULL;
5760 png_uint_32 width, height;
5761 int bit_depth, color_type, interlace_type;
5762 png_byte channels;
5763 png_uint_32 row_bytes;
5764 int transparent_p;
5765 struct png_memory_storage tbr; /* Data to be read */
5767 /* Find out what file to load. */
5768 specified_file = image_spec_value (img->spec, QCfile, NULL);
5769 specified_data = image_spec_value (img->spec, QCdata, NULL);
5770 file = Qnil;
5771 GCPRO1 (file);
5773 if (NILP (specified_data))
5775 file = x_find_image_file (specified_file);
5776 if (!STRINGP (file))
5778 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5779 UNGCPRO;
5780 return 0;
5783 /* Open the image file. */
5784 fp = fopen (SDATA (file), "rb");
5785 if (!fp)
5787 image_error ("Cannot open image file `%s'", file, Qnil);
5788 UNGCPRO;
5789 return 0;
5792 /* Check PNG signature. */
5793 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
5794 || fn_png_sig_cmp (sig, 0, sizeof sig))
5796 image_error ("Not a PNG file: `%s'", file, Qnil);
5797 UNGCPRO;
5798 fclose (fp);
5799 return 0;
5802 else
5804 /* Read from memory. */
5805 tbr.bytes = SDATA (specified_data);
5806 tbr.len = SBYTES (specified_data);
5807 tbr.index = 0;
5809 /* Check PNG signature. */
5810 if (tbr.len < sizeof sig
5811 || fn_png_sig_cmp (tbr.bytes, 0, sizeof sig))
5813 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
5814 UNGCPRO;
5815 return 0;
5818 /* Need to skip past the signature. */
5819 tbr.bytes += sizeof (sig);
5822 /* Initialize read and info structs for PNG lib. Casting return
5823 value avoids a GCC warning on W32. */
5824 png_ptr = (png_structp)fn_png_create_read_struct (PNG_LIBPNG_VER_STRING,
5825 NULL, my_png_error,
5826 my_png_warning);
5827 if (!png_ptr)
5829 if (fp) fclose (fp);
5830 UNGCPRO;
5831 return 0;
5834 /* Casting return value avoids a GCC warning on W32. */
5835 info_ptr = (png_infop)fn_png_create_info_struct (png_ptr);
5836 if (!info_ptr)
5838 fn_png_destroy_read_struct (&png_ptr, NULL, NULL);
5839 if (fp) fclose (fp);
5840 UNGCPRO;
5841 return 0;
5844 /* Casting return value avoids a GCC warning on W32. */
5845 end_info = (png_infop)fn_png_create_info_struct (png_ptr);
5846 if (!end_info)
5848 fn_png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
5849 if (fp) fclose (fp);
5850 UNGCPRO;
5851 return 0;
5854 /* Set error jump-back. We come back here when the PNG library
5855 detects an error. */
5856 if (setjmp (png_ptr->jmpbuf))
5858 error:
5859 if (png_ptr)
5860 fn_png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
5861 xfree (pixels);
5862 xfree (rows);
5863 if (fp) fclose (fp);
5864 UNGCPRO;
5865 return 0;
5868 /* Read image info. */
5869 if (!NILP (specified_data))
5870 fn_png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
5871 else
5872 fn_png_set_read_fn (png_ptr, (void *) fp, png_read_from_file);
5874 fn_png_set_sig_bytes (png_ptr, sizeof sig);
5875 fn_png_read_info (png_ptr, info_ptr);
5876 fn_png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
5877 &interlace_type, NULL, NULL);
5879 if (!check_image_size (f, width, height))
5881 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5882 goto error;
5884 /* If image contains simply transparency data, we prefer to
5885 construct a clipping mask. */
5886 if (fn_png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
5887 transparent_p = 1;
5888 else
5889 transparent_p = 0;
5891 /* This function is easier to write if we only have to handle
5892 one data format: RGB or RGBA with 8 bits per channel. Let's
5893 transform other formats into that format. */
5895 /* Strip more than 8 bits per channel. */
5896 if (bit_depth == 16)
5897 fn_png_set_strip_16 (png_ptr);
5899 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5900 if available. */
5901 fn_png_set_expand (png_ptr);
5903 /* Convert grayscale images to RGB. */
5904 if (color_type == PNG_COLOR_TYPE_GRAY
5905 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
5906 fn_png_set_gray_to_rgb (png_ptr);
5908 /* Handle alpha channel by combining the image with a background
5909 color. Do this only if a real alpha channel is supplied. For
5910 simple transparency, we prefer a clipping mask. */
5911 if (!transparent_p)
5913 /* png_color_16 *image_bg; */
5914 Lisp_Object specified_bg
5915 = image_spec_value (img->spec, QCbackground, NULL);
5916 int shift = (bit_depth == 16) ? 0 : 8;
5918 if (STRINGP (specified_bg))
5919 /* The user specified `:background', use that. */
5921 XColor color;
5922 if (x_defined_color (f, SDATA (specified_bg), &color, 0))
5924 png_color_16 user_bg;
5926 bzero (&user_bg, sizeof user_bg);
5927 user_bg.red = color.red >> shift;
5928 user_bg.green = color.green >> shift;
5929 user_bg.blue = color.blue >> shift;
5931 fn_png_set_background (png_ptr, &user_bg,
5932 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5935 else
5937 /* We use the current frame background, ignoring any default
5938 background color set by the image. */
5939 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5940 XColor color;
5941 png_color_16 frame_background;
5943 color.pixel = FRAME_BACKGROUND_PIXEL (f);
5944 x_query_color (f, &color);
5946 bzero (&frame_background, sizeof frame_background);
5947 frame_background.red = color.red >> shift;
5948 frame_background.green = color.green >> shift;
5949 frame_background.blue = color.blue >> shift;
5950 #endif /* HAVE_X_WINDOWS */
5952 fn_png_set_background (png_ptr, &frame_background,
5953 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5957 /* Update info structure. */
5958 fn_png_read_update_info (png_ptr, info_ptr);
5960 /* Get number of channels. Valid values are 1 for grayscale images
5961 and images with a palette, 2 for grayscale images with transparency
5962 information (alpha channel), 3 for RGB images, and 4 for RGB
5963 images with alpha channel, i.e. RGBA. If conversions above were
5964 sufficient we should only have 3 or 4 channels here. */
5965 channels = fn_png_get_channels (png_ptr, info_ptr);
5966 xassert (channels == 3 || channels == 4);
5968 /* Number of bytes needed for one row of the image. */
5969 row_bytes = fn_png_get_rowbytes (png_ptr, info_ptr);
5971 /* Allocate memory for the image. */
5972 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
5973 rows = (png_byte **) xmalloc (height * sizeof *rows);
5974 for (i = 0; i < height; ++i)
5975 rows[i] = pixels + i * row_bytes;
5977 /* Read the entire image. */
5978 fn_png_read_image (png_ptr, rows);
5979 fn_png_read_end (png_ptr, info_ptr);
5980 if (fp)
5982 fclose (fp);
5983 fp = NULL;
5986 /* Create the X image and pixmap. */
5987 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
5988 &img->pixmap))
5989 goto error;
5991 /* Create an image and pixmap serving as mask if the PNG image
5992 contains an alpha channel. */
5993 if (channels == 4
5994 && !transparent_p
5995 && !x_create_x_image_and_pixmap (f, width, height, 1,
5996 &mask_img, &img->mask))
5998 x_destroy_x_image (ximg);
5999 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
6000 img->pixmap = NO_PIXMAP;
6001 goto error;
6004 /* Fill the X image and mask from PNG data. */
6005 init_color_table ();
6007 for (y = 0; y < height; ++y)
6009 png_byte *p = rows[y];
6011 for (x = 0; x < width; ++x)
6013 unsigned r, g, b;
6015 r = *p++ << 8;
6016 g = *p++ << 8;
6017 b = *p++ << 8;
6018 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
6019 /* An alpha channel, aka mask channel, associates variable
6020 transparency with an image. Where other image formats
6021 support binary transparency---fully transparent or fully
6022 opaque---PNG allows up to 254 levels of partial transparency.
6023 The PNG library implements partial transparency by combining
6024 the image with a specified background color.
6026 I'm not sure how to handle this here nicely: because the
6027 background on which the image is displayed may change, for
6028 real alpha channel support, it would be necessary to create
6029 a new image for each possible background.
6031 What I'm doing now is that a mask is created if we have
6032 boolean transparency information. Otherwise I'm using
6033 the frame's background color to combine the image with. */
6035 if (channels == 4)
6037 if (mask_img)
6038 XPutPixel (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN);
6039 ++p;
6044 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6045 /* Set IMG's background color from the PNG image, unless the user
6046 overrode it. */
6048 png_color_16 *bg;
6049 if (fn_png_get_bKGD (png_ptr, info_ptr, &bg))
6051 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
6052 img->background_valid = 1;
6056 #ifdef COLOR_TABLE_SUPPORT
6057 /* Remember colors allocated for this image. */
6058 img->colors = colors_in_color_table (&img->ncolors);
6059 free_color_table ();
6060 #endif /* COLOR_TABLE_SUPPORT */
6062 /* Clean up. */
6063 fn_png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
6064 xfree (rows);
6065 xfree (pixels);
6067 img->width = width;
6068 img->height = height;
6070 /* Maybe fill in the background field while we have ximg handy.
6071 Casting avoids a GCC warning. */
6072 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6074 /* Put the image into the pixmap, then free the X image and its buffer. */
6075 x_put_x_image (f, ximg, img->pixmap, width, height);
6076 x_destroy_x_image (ximg);
6078 /* Same for the mask. */
6079 if (mask_img)
6081 /* Fill in the background_transparent field while we have the
6082 mask handy. Casting avoids a GCC warning. */
6083 image_background_transparent (img, f, (XImagePtr_or_DC)mask_img);
6085 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
6086 x_destroy_x_image (mask_img);
6089 UNGCPRO;
6090 return 1;
6093 #else /* HAVE_PNG */
6095 #ifdef HAVE_NS
6096 static int
6097 png_load (struct frame *f, struct image *img)
6099 return ns_load_image(f, img,
6100 image_spec_value (img->spec, QCfile, NULL),
6101 image_spec_value (img->spec, QCdata, NULL));
6103 #endif /* HAVE_NS */
6106 #endif /* !HAVE_PNG */
6110 /***********************************************************************
6111 JPEG
6112 ***********************************************************************/
6114 #if defined (HAVE_JPEG) || defined (HAVE_NS)
6116 static int jpeg_image_p P_ ((Lisp_Object object));
6117 static int jpeg_load P_ ((struct frame *f, struct image *img));
6119 /* The symbol `jpeg' identifying images of this type. */
6121 Lisp_Object Qjpeg;
6123 /* Indices of image specification fields in gs_format, below. */
6125 enum jpeg_keyword_index
6127 JPEG_TYPE,
6128 JPEG_DATA,
6129 JPEG_FILE,
6130 JPEG_ASCENT,
6131 JPEG_MARGIN,
6132 JPEG_RELIEF,
6133 JPEG_ALGORITHM,
6134 JPEG_HEURISTIC_MASK,
6135 JPEG_MASK,
6136 JPEG_BACKGROUND,
6137 JPEG_LAST
6140 /* Vector of image_keyword structures describing the format
6141 of valid user-defined image specifications. */
6143 static const struct image_keyword jpeg_format[JPEG_LAST] =
6145 {":type", IMAGE_SYMBOL_VALUE, 1},
6146 {":data", IMAGE_STRING_VALUE, 0},
6147 {":file", IMAGE_STRING_VALUE, 0},
6148 {":ascent", IMAGE_ASCENT_VALUE, 0},
6149 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6150 {":relief", IMAGE_INTEGER_VALUE, 0},
6151 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6152 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6153 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6154 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
6157 /* Structure describing the image type `jpeg'. */
6159 static struct image_type jpeg_type =
6161 &Qjpeg,
6162 jpeg_image_p,
6163 jpeg_load,
6164 x_clear_image,
6165 NULL
6168 /* Return non-zero if OBJECT is a valid JPEG image specification. */
6170 static int
6171 jpeg_image_p (object)
6172 Lisp_Object object;
6174 struct image_keyword fmt[JPEG_LAST];
6176 bcopy (jpeg_format, fmt, sizeof fmt);
6178 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
6179 return 0;
6181 /* Must specify either the :data or :file keyword. */
6182 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
6185 #endif /* HAVE_JPEG || HAVE_NS */
6187 #ifdef HAVE_JPEG
6189 /* Work around a warning about HAVE_STDLIB_H being redefined in
6190 jconfig.h. */
6191 #ifdef HAVE_STDLIB_H
6192 #define HAVE_STDLIB_H_1
6193 #undef HAVE_STDLIB_H
6194 #endif /* HAVE_STLIB_H */
6196 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6197 /* In older releases of the jpeg library, jpeglib.h will define boolean
6198 differently depending on __WIN32__, so make sure it is defined. */
6199 #define __WIN32__ 1
6200 #endif
6202 #include <jpeglib.h>
6203 #include <jerror.h>
6205 #ifdef HAVE_STLIB_H_1
6206 #define HAVE_STDLIB_H 1
6207 #endif
6209 #ifdef HAVE_NTGUI
6211 /* JPEG library details. */
6212 DEF_IMGLIB_FN (jpeg_CreateDecompress);
6213 DEF_IMGLIB_FN (jpeg_start_decompress);
6214 DEF_IMGLIB_FN (jpeg_finish_decompress);
6215 DEF_IMGLIB_FN (jpeg_destroy_decompress);
6216 DEF_IMGLIB_FN (jpeg_read_header);
6217 DEF_IMGLIB_FN (jpeg_read_scanlines);
6218 DEF_IMGLIB_FN (jpeg_std_error);
6219 DEF_IMGLIB_FN (jpeg_resync_to_restart);
6221 static int
6222 init_jpeg_functions (Lisp_Object libraries)
6224 HMODULE library;
6226 if (!(library = w32_delayed_load (libraries, Qjpeg)))
6227 return 0;
6229 LOAD_IMGLIB_FN (library, jpeg_finish_decompress);
6230 LOAD_IMGLIB_FN (library, jpeg_read_scanlines);
6231 LOAD_IMGLIB_FN (library, jpeg_start_decompress);
6232 LOAD_IMGLIB_FN (library, jpeg_read_header);
6233 LOAD_IMGLIB_FN (library, jpeg_CreateDecompress);
6234 LOAD_IMGLIB_FN (library, jpeg_destroy_decompress);
6235 LOAD_IMGLIB_FN (library, jpeg_std_error);
6236 LOAD_IMGLIB_FN (library, jpeg_resync_to_restart);
6237 return 1;
6240 /* Wrapper since we can't directly assign the function pointer
6241 to another function pointer that was declared more completely easily. */
6242 static boolean
6243 jpeg_resync_to_restart_wrapper (cinfo, desired)
6244 j_decompress_ptr cinfo;
6245 int desired;
6247 return fn_jpeg_resync_to_restart (cinfo, desired);
6250 #else
6252 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress(a)
6253 #define fn_jpeg_start_decompress jpeg_start_decompress
6254 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6255 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6256 #define fn_jpeg_read_header jpeg_read_header
6257 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6258 #define fn_jpeg_std_error jpeg_std_error
6259 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6261 #endif /* HAVE_NTGUI */
6263 struct my_jpeg_error_mgr
6265 struct jpeg_error_mgr pub;
6266 jmp_buf setjmp_buffer;
6270 static void
6271 my_error_exit (cinfo)
6272 j_common_ptr cinfo;
6274 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
6275 longjmp (mgr->setjmp_buffer, 1);
6279 /* Init source method for JPEG data source manager. Called by
6280 jpeg_read_header() before any data is actually read. See
6281 libjpeg.doc from the JPEG lib distribution. */
6283 static void
6284 our_common_init_source (cinfo)
6285 j_decompress_ptr cinfo;
6290 /* Method to terminate data source. Called by
6291 jpeg_finish_decompress() after all data has been processed. */
6293 static void
6294 our_common_term_source (cinfo)
6295 j_decompress_ptr cinfo;
6300 /* Fill input buffer method for JPEG data source manager. Called
6301 whenever more data is needed. We read the whole image in one step,
6302 so this only adds a fake end of input marker at the end. */
6304 static JOCTET our_memory_buffer[2];
6306 static boolean
6307 our_memory_fill_input_buffer (cinfo)
6308 j_decompress_ptr cinfo;
6310 /* Insert a fake EOI marker. */
6311 struct jpeg_source_mgr *src = cinfo->src;
6313 our_memory_buffer[0] = (JOCTET) 0xFF;
6314 our_memory_buffer[1] = (JOCTET) JPEG_EOI;
6316 src->next_input_byte = our_memory_buffer;
6317 src->bytes_in_buffer = 2;
6318 return 1;
6322 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6323 is the JPEG data source manager. */
6325 static void
6326 our_memory_skip_input_data (cinfo, num_bytes)
6327 j_decompress_ptr cinfo;
6328 long num_bytes;
6330 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
6332 if (src)
6334 if (num_bytes > src->bytes_in_buffer)
6335 ERREXIT (cinfo, JERR_INPUT_EOF);
6337 src->bytes_in_buffer -= num_bytes;
6338 src->next_input_byte += num_bytes;
6343 /* Set up the JPEG lib for reading an image from DATA which contains
6344 LEN bytes. CINFO is the decompression info structure created for
6345 reading the image. */
6347 static void
6348 jpeg_memory_src (cinfo, data, len)
6349 j_decompress_ptr cinfo;
6350 JOCTET *data;
6351 unsigned int len;
6353 struct jpeg_source_mgr *src;
6355 if (cinfo->src == NULL)
6357 /* First time for this JPEG object? */
6358 cinfo->src = (struct jpeg_source_mgr *)
6359 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6360 sizeof (struct jpeg_source_mgr));
6361 src = (struct jpeg_source_mgr *) cinfo->src;
6362 src->next_input_byte = data;
6365 src = (struct jpeg_source_mgr *) cinfo->src;
6366 src->init_source = our_common_init_source;
6367 src->fill_input_buffer = our_memory_fill_input_buffer;
6368 src->skip_input_data = our_memory_skip_input_data;
6369 src->resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6370 src->term_source = our_common_term_source;
6371 src->bytes_in_buffer = len;
6372 src->next_input_byte = data;
6376 struct jpeg_stdio_mgr
6378 struct jpeg_source_mgr mgr;
6379 boolean finished;
6380 FILE *file;
6381 JOCTET *buffer;
6385 /* Size of buffer to read JPEG from file.
6386 Not too big, as we want to use alloc_small. */
6387 #define JPEG_STDIO_BUFFER_SIZE 8192
6390 /* Fill input buffer method for JPEG data source manager. Called
6391 whenever more data is needed. The data is read from a FILE *. */
6393 static boolean
6394 our_stdio_fill_input_buffer (cinfo)
6395 j_decompress_ptr cinfo;
6397 struct jpeg_stdio_mgr *src;
6399 src = (struct jpeg_stdio_mgr *) cinfo->src;
6400 if (!src->finished)
6402 size_t bytes;
6404 bytes = fread (src->buffer, 1, JPEG_STDIO_BUFFER_SIZE, src->file);
6405 if (bytes > 0)
6406 src->mgr.bytes_in_buffer = bytes;
6407 else
6409 WARNMS (cinfo, JWRN_JPEG_EOF);
6410 src->finished = 1;
6411 src->buffer[0] = (JOCTET) 0xFF;
6412 src->buffer[1] = (JOCTET) JPEG_EOI;
6413 src->mgr.bytes_in_buffer = 2;
6415 src->mgr.next_input_byte = src->buffer;
6418 return 1;
6422 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6423 is the JPEG data source manager. */
6425 static void
6426 our_stdio_skip_input_data (cinfo, num_bytes)
6427 j_decompress_ptr cinfo;
6428 long num_bytes;
6430 struct jpeg_stdio_mgr *src;
6431 src = (struct jpeg_stdio_mgr *) cinfo->src;
6433 while (num_bytes > 0 && !src->finished)
6435 if (num_bytes <= src->mgr.bytes_in_buffer)
6437 src->mgr.bytes_in_buffer -= num_bytes;
6438 src->mgr.next_input_byte += num_bytes;
6439 break;
6441 else
6443 num_bytes -= src->mgr.bytes_in_buffer;
6444 src->mgr.bytes_in_buffer = 0;
6445 src->mgr.next_input_byte = NULL;
6447 our_stdio_fill_input_buffer (cinfo);
6453 /* Set up the JPEG lib for reading an image from a FILE *.
6454 CINFO is the decompression info structure created for
6455 reading the image. */
6457 static void
6458 jpeg_file_src (cinfo, fp)
6459 j_decompress_ptr cinfo;
6460 FILE *fp;
6462 struct jpeg_stdio_mgr *src;
6464 if (cinfo->src != NULL)
6465 src = (struct jpeg_stdio_mgr *) cinfo->src;
6466 else
6468 /* First time for this JPEG object? */
6469 cinfo->src = (struct jpeg_source_mgr *)
6470 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6471 sizeof (struct jpeg_stdio_mgr));
6472 src = (struct jpeg_stdio_mgr *) cinfo->src;
6473 src->buffer = (JOCTET *)
6474 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6475 JPEG_STDIO_BUFFER_SIZE);
6478 src->file = fp;
6479 src->finished = 0;
6480 src->mgr.init_source = our_common_init_source;
6481 src->mgr.fill_input_buffer = our_stdio_fill_input_buffer;
6482 src->mgr.skip_input_data = our_stdio_skip_input_data;
6483 src->mgr.resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6484 src->mgr.term_source = our_common_term_source;
6485 src->mgr.bytes_in_buffer = 0;
6486 src->mgr.next_input_byte = NULL;
6490 /* Load image IMG for use on frame F. Patterned after example.c
6491 from the JPEG lib. */
6493 static int
6494 jpeg_load (f, img)
6495 struct frame *f;
6496 struct image *img;
6498 struct jpeg_decompress_struct cinfo;
6499 struct my_jpeg_error_mgr mgr;
6500 Lisp_Object file, specified_file;
6501 Lisp_Object specified_data;
6502 FILE * volatile fp = NULL;
6503 JSAMPARRAY buffer;
6504 int row_stride, x, y;
6505 XImagePtr ximg = NULL;
6506 int rc;
6507 unsigned long *colors;
6508 int width, height;
6509 struct gcpro gcpro1;
6511 /* Open the JPEG file. */
6512 specified_file = image_spec_value (img->spec, QCfile, NULL);
6513 specified_data = image_spec_value (img->spec, QCdata, NULL);
6514 file = Qnil;
6515 GCPRO1 (file);
6517 if (NILP (specified_data))
6519 file = x_find_image_file (specified_file);
6520 if (!STRINGP (file))
6522 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6523 UNGCPRO;
6524 return 0;
6527 fp = fopen (SDATA (file), "rb");
6528 if (fp == NULL)
6530 image_error ("Cannot open `%s'", file, Qnil);
6531 UNGCPRO;
6532 return 0;
6536 /* Customize libjpeg's error handling to call my_error_exit when an
6537 error is detected. This function will perform a longjmp.
6538 Casting return value avoids a GCC warning on W32. */
6539 cinfo.err = (struct jpeg_error_mgr *)fn_jpeg_std_error (&mgr.pub);
6540 mgr.pub.error_exit = my_error_exit;
6542 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
6544 if (rc == 1)
6546 /* Called from my_error_exit. Display a JPEG error. */
6547 char buffer[JMSG_LENGTH_MAX];
6548 cinfo.err->format_message ((j_common_ptr) &cinfo, buffer);
6549 image_error ("Error reading JPEG image `%s': %s", img->spec,
6550 build_string (buffer));
6553 /* Close the input file and destroy the JPEG object. */
6554 if (fp)
6555 fclose ((FILE *) fp);
6556 fn_jpeg_destroy_decompress (&cinfo);
6558 /* If we already have an XImage, free that. */
6559 x_destroy_x_image (ximg);
6561 /* Free pixmap and colors. */
6562 x_clear_image (f, img);
6564 UNGCPRO;
6565 return 0;
6568 /* Create the JPEG decompression object. Let it read from fp.
6569 Read the JPEG image header. */
6570 fn_jpeg_CreateDecompress (&cinfo, JPEG_LIB_VERSION, sizeof (cinfo));
6572 if (NILP (specified_data))
6573 jpeg_file_src (&cinfo, (FILE *) fp);
6574 else
6575 jpeg_memory_src (&cinfo, SDATA (specified_data),
6576 SBYTES (specified_data));
6578 fn_jpeg_read_header (&cinfo, 1);
6580 /* Customize decompression so that color quantization will be used.
6581 Start decompression. */
6582 cinfo.quantize_colors = 1;
6583 fn_jpeg_start_decompress (&cinfo);
6584 width = img->width = cinfo.output_width;
6585 height = img->height = cinfo.output_height;
6587 if (!check_image_size (f, width, height))
6589 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
6590 longjmp (mgr.setjmp_buffer, 2);
6593 /* Create X image and pixmap. */
6594 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
6595 longjmp (mgr.setjmp_buffer, 2);
6597 /* Allocate colors. When color quantization is used,
6598 cinfo.actual_number_of_colors has been set with the number of
6599 colors generated, and cinfo.colormap is a two-dimensional array
6600 of color indices in the range 0..cinfo.actual_number_of_colors.
6601 No more than 255 colors will be generated. */
6603 int i, ir, ig, ib;
6605 if (cinfo.out_color_components > 2)
6606 ir = 0, ig = 1, ib = 2;
6607 else if (cinfo.out_color_components > 1)
6608 ir = 0, ig = 1, ib = 0;
6609 else
6610 ir = 0, ig = 0, ib = 0;
6612 /* Use the color table mechanism because it handles colors that
6613 cannot be allocated nicely. Such colors will be replaced with
6614 a default color, and we don't have to care about which colors
6615 can be freed safely, and which can't. */
6616 init_color_table ();
6617 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
6618 * sizeof *colors);
6620 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
6622 /* Multiply RGB values with 255 because X expects RGB values
6623 in the range 0..0xffff. */
6624 int r = cinfo.colormap[ir][i] << 8;
6625 int g = cinfo.colormap[ig][i] << 8;
6626 int b = cinfo.colormap[ib][i] << 8;
6627 colors[i] = lookup_rgb_color (f, r, g, b);
6630 #ifdef COLOR_TABLE_SUPPORT
6631 /* Remember those colors actually allocated. */
6632 img->colors = colors_in_color_table (&img->ncolors);
6633 free_color_table ();
6634 #endif /* COLOR_TABLE_SUPPORT */
6637 /* Read pixels. */
6638 row_stride = width * cinfo.output_components;
6639 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
6640 row_stride, 1);
6641 for (y = 0; y < height; ++y)
6643 fn_jpeg_read_scanlines (&cinfo, buffer, 1);
6644 for (x = 0; x < cinfo.output_width; ++x)
6645 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
6648 /* Clean up. */
6649 fn_jpeg_finish_decompress (&cinfo);
6650 fn_jpeg_destroy_decompress (&cinfo);
6651 if (fp)
6652 fclose ((FILE *) fp);
6654 /* Maybe fill in the background field while we have ximg handy. */
6655 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6656 /* Casting avoids a GCC warning. */
6657 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6659 /* Put the image into the pixmap. */
6660 x_put_x_image (f, ximg, img->pixmap, width, height);
6661 x_destroy_x_image (ximg);
6662 UNGCPRO;
6663 return 1;
6666 #else /* HAVE_JPEG */
6668 #ifdef HAVE_NS
6669 static int
6670 jpeg_load (struct frame *f, struct image *img)
6672 return ns_load_image(f, img,
6673 image_spec_value (img->spec, QCfile, NULL),
6674 image_spec_value (img->spec, QCdata, NULL));
6676 #endif /* HAVE_NS */
6678 #endif /* !HAVE_JPEG */
6682 /***********************************************************************
6683 TIFF
6684 ***********************************************************************/
6686 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6688 static int tiff_image_p P_ ((Lisp_Object object));
6689 static int tiff_load P_ ((struct frame *f, struct image *img));
6691 /* The symbol `tiff' identifying images of this type. */
6693 Lisp_Object Qtiff;
6695 /* Indices of image specification fields in tiff_format, below. */
6697 enum tiff_keyword_index
6699 TIFF_TYPE,
6700 TIFF_DATA,
6701 TIFF_FILE,
6702 TIFF_ASCENT,
6703 TIFF_MARGIN,
6704 TIFF_RELIEF,
6705 TIFF_ALGORITHM,
6706 TIFF_HEURISTIC_MASK,
6707 TIFF_MASK,
6708 TIFF_BACKGROUND,
6709 TIFF_INDEX,
6710 TIFF_LAST
6713 /* Vector of image_keyword structures describing the format
6714 of valid user-defined image specifications. */
6716 static const struct image_keyword tiff_format[TIFF_LAST] =
6718 {":type", IMAGE_SYMBOL_VALUE, 1},
6719 {":data", IMAGE_STRING_VALUE, 0},
6720 {":file", IMAGE_STRING_VALUE, 0},
6721 {":ascent", IMAGE_ASCENT_VALUE, 0},
6722 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6723 {":relief", IMAGE_INTEGER_VALUE, 0},
6724 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6725 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6726 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6727 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
6728 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
6731 /* Structure describing the image type `tiff'. */
6733 static struct image_type tiff_type =
6735 &Qtiff,
6736 tiff_image_p,
6737 tiff_load,
6738 x_clear_image,
6739 NULL
6742 /* Return non-zero if OBJECT is a valid TIFF image specification. */
6744 static int
6745 tiff_image_p (object)
6746 Lisp_Object object;
6748 struct image_keyword fmt[TIFF_LAST];
6749 bcopy (tiff_format, fmt, sizeof fmt);
6751 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
6752 return 0;
6754 /* Must specify either the :data or :file keyword. */
6755 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
6758 #endif /* HAVE_TIFF || HAVE_NS */
6760 #ifdef HAVE_TIFF
6762 #include <tiffio.h>
6764 #ifdef HAVE_NTGUI
6766 /* TIFF library details. */
6767 DEF_IMGLIB_FN (TIFFSetErrorHandler);
6768 DEF_IMGLIB_FN (TIFFSetWarningHandler);
6769 DEF_IMGLIB_FN (TIFFOpen);
6770 DEF_IMGLIB_FN (TIFFClientOpen);
6771 DEF_IMGLIB_FN (TIFFGetField);
6772 DEF_IMGLIB_FN (TIFFReadRGBAImage);
6773 DEF_IMGLIB_FN (TIFFClose);
6774 DEF_IMGLIB_FN (TIFFSetDirectory);
6776 static int
6777 init_tiff_functions (Lisp_Object libraries)
6779 HMODULE library;
6781 if (!(library = w32_delayed_load (libraries, Qtiff)))
6782 return 0;
6784 LOAD_IMGLIB_FN (library, TIFFSetErrorHandler);
6785 LOAD_IMGLIB_FN (library, TIFFSetWarningHandler);
6786 LOAD_IMGLIB_FN (library, TIFFOpen);
6787 LOAD_IMGLIB_FN (library, TIFFClientOpen);
6788 LOAD_IMGLIB_FN (library, TIFFGetField);
6789 LOAD_IMGLIB_FN (library, TIFFReadRGBAImage);
6790 LOAD_IMGLIB_FN (library, TIFFClose);
6791 LOAD_IMGLIB_FN (library, TIFFSetDirectory);
6792 return 1;
6795 #else
6797 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6798 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6799 #define fn_TIFFOpen TIFFOpen
6800 #define fn_TIFFClientOpen TIFFClientOpen
6801 #define fn_TIFFGetField TIFFGetField
6802 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6803 #define fn_TIFFClose TIFFClose
6804 #define fn_TIFFSetDirectory TIFFSetDirectory
6805 #endif /* HAVE_NTGUI */
6808 /* Reading from a memory buffer for TIFF images Based on the PNG
6809 memory source, but we have to provide a lot of extra functions.
6810 Blah.
6812 We really only need to implement read and seek, but I am not
6813 convinced that the TIFF library is smart enough not to destroy
6814 itself if we only hand it the function pointers we need to
6815 override. */
6817 typedef struct
6819 unsigned char *bytes;
6820 size_t len;
6821 int index;
6823 tiff_memory_source;
6825 static size_t
6826 tiff_read_from_memory (data, buf, size)
6827 thandle_t data;
6828 tdata_t buf;
6829 tsize_t size;
6831 tiff_memory_source *src = (tiff_memory_source *) data;
6833 if (size > src->len - src->index)
6834 return (size_t) -1;
6835 bcopy (src->bytes + src->index, buf, size);
6836 src->index += size;
6837 return size;
6840 static size_t
6841 tiff_write_from_memory (data, buf, size)
6842 thandle_t data;
6843 tdata_t buf;
6844 tsize_t size;
6846 return (size_t) -1;
6849 static toff_t
6850 tiff_seek_in_memory (data, off, whence)
6851 thandle_t data;
6852 toff_t off;
6853 int whence;
6855 tiff_memory_source *src = (tiff_memory_source *) data;
6856 int idx;
6858 switch (whence)
6860 case SEEK_SET: /* Go from beginning of source. */
6861 idx = off;
6862 break;
6864 case SEEK_END: /* Go from end of source. */
6865 idx = src->len + off;
6866 break;
6868 case SEEK_CUR: /* Go from current position. */
6869 idx = src->index + off;
6870 break;
6872 default: /* Invalid `whence'. */
6873 return -1;
6876 if (idx > src->len || idx < 0)
6877 return -1;
6879 src->index = idx;
6880 return src->index;
6883 static int
6884 tiff_close_memory (data)
6885 thandle_t data;
6887 /* NOOP */
6888 return 0;
6891 static int
6892 tiff_mmap_memory (data, pbase, psize)
6893 thandle_t data;
6894 tdata_t *pbase;
6895 toff_t *psize;
6897 /* It is already _IN_ memory. */
6898 return 0;
6901 static void
6902 tiff_unmap_memory (data, base, size)
6903 thandle_t data;
6904 tdata_t base;
6905 toff_t size;
6907 /* We don't need to do this. */
6910 static toff_t
6911 tiff_size_of_memory (data)
6912 thandle_t data;
6914 return ((tiff_memory_source *) data)->len;
6918 static void
6919 tiff_error_handler (title, format, ap)
6920 const char *title, *format;
6921 va_list ap;
6923 char buf[512];
6924 int len;
6926 len = sprintf (buf, "TIFF error: %s ", title);
6927 vsprintf (buf + len, format, ap);
6928 add_to_log (buf, Qnil, Qnil);
6932 static void
6933 tiff_warning_handler (title, format, ap)
6934 const char *title, *format;
6935 va_list ap;
6937 char buf[512];
6938 int len;
6940 len = sprintf (buf, "TIFF warning: %s ", title);
6941 vsprintf (buf + len, format, ap);
6942 add_to_log (buf, Qnil, Qnil);
6946 /* Load TIFF image IMG for use on frame F. Value is non-zero if
6947 successful. */
6949 static int
6950 tiff_load (f, img)
6951 struct frame *f;
6952 struct image *img;
6954 Lisp_Object file, specified_file;
6955 Lisp_Object specified_data;
6956 TIFF *tiff;
6957 int width, height, x, y, count;
6958 uint32 *buf;
6959 int rc, rc2;
6960 XImagePtr ximg;
6961 struct gcpro gcpro1;
6962 tiff_memory_source memsrc;
6963 Lisp_Object image;
6965 specified_file = image_spec_value (img->spec, QCfile, NULL);
6966 specified_data = image_spec_value (img->spec, QCdata, NULL);
6967 file = Qnil;
6968 GCPRO1 (file);
6970 fn_TIFFSetErrorHandler (tiff_error_handler);
6971 fn_TIFFSetWarningHandler (tiff_warning_handler);
6973 if (NILP (specified_data))
6975 /* Read from a file */
6976 file = x_find_image_file (specified_file);
6977 if (!STRINGP (file))
6979 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6980 UNGCPRO;
6981 return 0;
6984 /* Try to open the image file. Casting return value avoids a
6985 GCC warning on W32. */
6986 tiff = (TIFF *)fn_TIFFOpen (SDATA (file), "r");
6987 if (tiff == NULL)
6989 image_error ("Cannot open `%s'", file, Qnil);
6990 UNGCPRO;
6991 return 0;
6994 else
6996 /* Memory source! */
6997 memsrc.bytes = SDATA (specified_data);
6998 memsrc.len = SBYTES (specified_data);
6999 memsrc.index = 0;
7001 /* Casting return value avoids a GCC warning on W32. */
7002 tiff = (TIFF *)fn_TIFFClientOpen ("memory_source", "r", &memsrc,
7003 (TIFFReadWriteProc) tiff_read_from_memory,
7004 (TIFFReadWriteProc) tiff_write_from_memory,
7005 tiff_seek_in_memory,
7006 tiff_close_memory,
7007 tiff_size_of_memory,
7008 tiff_mmap_memory,
7009 tiff_unmap_memory);
7011 if (!tiff)
7013 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
7014 UNGCPRO;
7015 return 0;
7019 image = image_spec_value (img->spec, QCindex, NULL);
7020 if (INTEGERP (image))
7022 int ino = XFASTINT (image);
7023 if (!fn_TIFFSetDirectory (tiff, ino))
7025 image_error ("Invalid image number `%s' in image `%s'",
7026 image, img->spec);
7027 fn_TIFFClose (tiff);
7028 UNGCPRO;
7029 return 0;
7033 /* Get width and height of the image, and allocate a raster buffer
7034 of width x height 32-bit values. */
7035 fn_TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
7036 fn_TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
7038 if (!check_image_size (f, width, height))
7040 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7041 fn_TIFFClose (tiff);
7042 UNGCPRO;
7043 return 0;
7046 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
7048 rc = fn_TIFFReadRGBAImage (tiff, width, height, buf, 0);
7050 /* Count the number of images in the file. */
7051 for (count = 1, rc2 = 1; rc2; count++)
7052 rc2 = fn_TIFFSetDirectory (tiff, count);
7054 if (count > 1)
7055 img->data.lisp_val = Fcons (Qcount,
7056 Fcons (make_number (count),
7057 img->data.lisp_val));
7059 fn_TIFFClose (tiff);
7060 if (!rc)
7062 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
7063 xfree (buf);
7064 UNGCPRO;
7065 return 0;
7068 /* Create the X image and pixmap. */
7069 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7071 xfree (buf);
7072 UNGCPRO;
7073 return 0;
7076 /* Initialize the color table. */
7077 init_color_table ();
7079 /* Process the pixel raster. Origin is in the lower-left corner. */
7080 for (y = 0; y < height; ++y)
7082 uint32 *row = buf + y * width;
7084 for (x = 0; x < width; ++x)
7086 uint32 abgr = row[x];
7087 int r = TIFFGetR (abgr) << 8;
7088 int g = TIFFGetG (abgr) << 8;
7089 int b = TIFFGetB (abgr) << 8;
7090 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
7094 #ifdef COLOR_TABLE_SUPPORT
7095 /* Remember the colors allocated for the image. Free the color table. */
7096 img->colors = colors_in_color_table (&img->ncolors);
7097 free_color_table ();
7098 #endif /* COLOR_TABLE_SUPPORT */
7100 img->width = width;
7101 img->height = height;
7103 /* Maybe fill in the background field while we have ximg handy. */
7104 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7105 /* Casting avoids a GCC warning on W32. */
7106 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
7108 /* Put the image into the pixmap, then free the X image and its buffer. */
7109 x_put_x_image (f, ximg, img->pixmap, width, height);
7110 x_destroy_x_image (ximg);
7111 xfree (buf);
7113 UNGCPRO;
7114 return 1;
7117 #else /* HAVE_TIFF */
7119 #ifdef HAVE_NS
7120 static int
7121 tiff_load (struct frame *f, struct image *img)
7123 return ns_load_image(f, img,
7124 image_spec_value (img->spec, QCfile, NULL),
7125 image_spec_value (img->spec, QCdata, NULL));
7127 #endif /* HAVE_NS */
7129 #endif /* !HAVE_TIFF */
7133 /***********************************************************************
7135 ***********************************************************************/
7137 #if defined (HAVE_GIF) || defined (HAVE_NS)
7139 static int gif_image_p P_ ((Lisp_Object object));
7140 static int gif_load P_ ((struct frame *f, struct image *img));
7141 static void gif_clear_image P_ ((struct frame *f, struct image *img));
7143 /* The symbol `gif' identifying images of this type. */
7145 Lisp_Object Qgif;
7147 /* Indices of image specification fields in gif_format, below. */
7149 enum gif_keyword_index
7151 GIF_TYPE,
7152 GIF_DATA,
7153 GIF_FILE,
7154 GIF_ASCENT,
7155 GIF_MARGIN,
7156 GIF_RELIEF,
7157 GIF_ALGORITHM,
7158 GIF_HEURISTIC_MASK,
7159 GIF_MASK,
7160 GIF_IMAGE,
7161 GIF_BACKGROUND,
7162 GIF_LAST
7165 /* Vector of image_keyword structures describing the format
7166 of valid user-defined image specifications. */
7168 static const struct image_keyword gif_format[GIF_LAST] =
7170 {":type", IMAGE_SYMBOL_VALUE, 1},
7171 {":data", IMAGE_STRING_VALUE, 0},
7172 {":file", IMAGE_STRING_VALUE, 0},
7173 {":ascent", IMAGE_ASCENT_VALUE, 0},
7174 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7175 {":relief", IMAGE_INTEGER_VALUE, 0},
7176 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7177 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7178 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7179 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
7180 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7183 /* Structure describing the image type `gif'. */
7185 static struct image_type gif_type =
7187 &Qgif,
7188 gif_image_p,
7189 gif_load,
7190 gif_clear_image,
7191 NULL
7194 /* Free X resources of GIF image IMG which is used on frame F. */
7196 static void
7197 gif_clear_image (f, img)
7198 struct frame *f;
7199 struct image *img;
7201 /* IMG->data.ptr_val may contain metadata with extension data. */
7202 img->data.lisp_val = Qnil;
7203 x_clear_image (f, img);
7206 /* Return non-zero if OBJECT is a valid GIF image specification. */
7208 static int
7209 gif_image_p (object)
7210 Lisp_Object object;
7212 struct image_keyword fmt[GIF_LAST];
7213 bcopy (gif_format, fmt, sizeof fmt);
7215 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
7216 return 0;
7218 /* Must specify either the :data or :file keyword. */
7219 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
7222 #endif /* HAVE_GIF */
7224 #ifdef HAVE_GIF
7226 #if defined (HAVE_NTGUI)
7227 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
7228 Undefine before redefining to avoid a preprocessor warning. */
7229 #ifdef DrawText
7230 #undef DrawText
7231 #endif
7232 /* avoid conflict with QuickdrawText.h */
7233 #define DrawText gif_DrawText
7234 #include <gif_lib.h>
7235 #undef DrawText
7237 #else /* HAVE_NTGUI */
7239 #include <gif_lib.h>
7241 #endif /* HAVE_NTGUI */
7244 #ifdef HAVE_NTGUI
7246 /* GIF library details. */
7247 DEF_IMGLIB_FN (DGifCloseFile);
7248 DEF_IMGLIB_FN (DGifSlurp);
7249 DEF_IMGLIB_FN (DGifOpen);
7250 DEF_IMGLIB_FN (DGifOpenFileName);
7252 static int
7253 init_gif_functions (Lisp_Object libraries)
7255 HMODULE library;
7257 if (!(library = w32_delayed_load (libraries, Qgif)))
7258 return 0;
7260 LOAD_IMGLIB_FN (library, DGifCloseFile);
7261 LOAD_IMGLIB_FN (library, DGifSlurp);
7262 LOAD_IMGLIB_FN (library, DGifOpen);
7263 LOAD_IMGLIB_FN (library, DGifOpenFileName);
7264 return 1;
7267 #else
7269 #define fn_DGifCloseFile DGifCloseFile
7270 #define fn_DGifSlurp DGifSlurp
7271 #define fn_DGifOpen DGifOpen
7272 #define fn_DGifOpenFileName DGifOpenFileName
7274 #endif /* HAVE_NTGUI */
7276 /* Reading a GIF image from memory
7277 Based on the PNG memory stuff to a certain extent. */
7279 typedef struct
7281 unsigned char *bytes;
7282 size_t len;
7283 int index;
7285 gif_memory_source;
7287 /* Make the current memory source available to gif_read_from_memory.
7288 It's done this way because not all versions of libungif support
7289 a UserData field in the GifFileType structure. */
7290 static gif_memory_source *current_gif_memory_src;
7292 static int
7293 gif_read_from_memory (file, buf, len)
7294 GifFileType *file;
7295 GifByteType *buf;
7296 int len;
7298 gif_memory_source *src = current_gif_memory_src;
7300 if (len > src->len - src->index)
7301 return -1;
7303 bcopy (src->bytes + src->index, buf, len);
7304 src->index += len;
7305 return len;
7309 /* Load GIF image IMG for use on frame F. Value is non-zero if
7310 successful. */
7312 static const int interlace_start[] = {0, 4, 2, 1};
7313 static const int interlace_increment[] = {8, 8, 4, 2};
7315 static int
7316 gif_load (f, img)
7317 struct frame *f;
7318 struct image *img;
7320 Lisp_Object file, specified_file;
7321 Lisp_Object specified_data;
7322 int rc, width, height, x, y, i;
7323 XImagePtr ximg;
7324 ColorMapObject *gif_color_map;
7325 unsigned long pixel_colors[256];
7326 GifFileType *gif;
7327 struct gcpro gcpro1;
7328 Lisp_Object image;
7329 int ino, image_height, image_width;
7330 gif_memory_source memsrc;
7331 unsigned char *raster;
7333 specified_file = image_spec_value (img->spec, QCfile, NULL);
7334 specified_data = image_spec_value (img->spec, QCdata, NULL);
7335 file = Qnil;
7336 GCPRO1 (file);
7338 if (NILP (specified_data))
7340 file = x_find_image_file (specified_file);
7341 if (!STRINGP (file))
7343 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7344 UNGCPRO;
7345 return 0;
7348 /* Open the GIF file. Casting return value avoids a GCC warning
7349 on W32. */
7350 gif = (GifFileType *)fn_DGifOpenFileName (SDATA (file));
7351 if (gif == NULL)
7353 image_error ("Cannot open `%s'", file, Qnil);
7354 UNGCPRO;
7355 return 0;
7358 else
7360 /* Read from memory! */
7361 current_gif_memory_src = &memsrc;
7362 memsrc.bytes = SDATA (specified_data);
7363 memsrc.len = SBYTES (specified_data);
7364 memsrc.index = 0;
7366 /* Casting return value avoids a GCC warning on W32. */
7367 gif = (GifFileType *) fn_DGifOpen (&memsrc, gif_read_from_memory);
7368 if (!gif)
7370 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
7371 UNGCPRO;
7372 return 0;
7376 /* Before reading entire contents, check the declared image size. */
7377 if (!check_image_size (f, gif->SWidth, gif->SHeight))
7379 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7380 fn_DGifCloseFile (gif);
7381 UNGCPRO;
7382 return 0;
7385 /* Read entire contents. */
7386 rc = fn_DGifSlurp (gif);
7387 if (rc == GIF_ERROR)
7389 image_error ("Error reading `%s'", img->spec, Qnil);
7390 fn_DGifCloseFile (gif);
7391 UNGCPRO;
7392 return 0;
7395 image = image_spec_value (img->spec, QCindex, NULL);
7396 ino = INTEGERP (image) ? XFASTINT (image) : 0;
7397 if (ino >= gif->ImageCount)
7399 image_error ("Invalid image number `%s' in image `%s'",
7400 image, img->spec);
7401 fn_DGifCloseFile (gif);
7402 UNGCPRO;
7403 return 0;
7406 img->corners[TOP_CORNER] = gif->SavedImages[ino].ImageDesc.Top;
7407 img->corners[LEFT_CORNER] = gif->SavedImages[ino].ImageDesc.Left;
7408 image_height = gif->SavedImages[ino].ImageDesc.Height;
7409 img->corners[BOT_CORNER] = img->corners[TOP_CORNER] + image_height;
7410 image_width = gif->SavedImages[ino].ImageDesc.Width;
7411 img->corners[RIGHT_CORNER] = img->corners[LEFT_CORNER] + image_width;
7413 width = img->width = max (gif->SWidth,
7414 max (gif->Image.Left + gif->Image.Width,
7415 img->corners[RIGHT_CORNER]));
7416 height = img->height = max (gif->SHeight,
7417 max (gif->Image.Top + gif->Image.Height,
7418 img->corners[BOT_CORNER]));
7420 if (!check_image_size (f, width, height))
7422 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7423 fn_DGifCloseFile (gif);
7424 UNGCPRO;
7425 return 0;
7428 /* Create the X image and pixmap. */
7429 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7431 fn_DGifCloseFile (gif);
7432 UNGCPRO;
7433 return 0;
7436 /* Allocate colors. */
7437 gif_color_map = gif->SavedImages[ino].ImageDesc.ColorMap;
7438 if (!gif_color_map)
7439 gif_color_map = gif->SColorMap;
7440 init_color_table ();
7441 bzero (pixel_colors, sizeof pixel_colors);
7443 if (gif_color_map)
7444 for (i = 0; i < gif_color_map->ColorCount; ++i)
7446 int r = gif_color_map->Colors[i].Red << 8;
7447 int g = gif_color_map->Colors[i].Green << 8;
7448 int b = gif_color_map->Colors[i].Blue << 8;
7449 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
7452 #ifdef COLOR_TABLE_SUPPORT
7453 img->colors = colors_in_color_table (&img->ncolors);
7454 free_color_table ();
7455 #endif /* COLOR_TABLE_SUPPORT */
7457 /* Clear the part of the screen image that are not covered by
7458 the image from the GIF file. Full animated GIF support
7459 requires more than can be done here (see the gif89 spec,
7460 disposal methods). Let's simply assume that the part
7461 not covered by a sub-image is in the frame's background color. */
7462 for (y = 0; y < img->corners[TOP_CORNER]; ++y)
7463 for (x = 0; x < width; ++x)
7464 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7466 for (y = img->corners[BOT_CORNER]; y < height; ++y)
7467 for (x = 0; x < width; ++x)
7468 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7470 for (y = img->corners[TOP_CORNER]; y < img->corners[BOT_CORNER]; ++y)
7472 for (x = 0; x < img->corners[LEFT_CORNER]; ++x)
7473 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7474 for (x = img->corners[RIGHT_CORNER]; x < width; ++x)
7475 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7478 /* Read the GIF image into the X image. We use a local variable
7479 `raster' here because RasterBits below is a char *, and invites
7480 problems with bytes >= 0x80. */
7481 raster = (unsigned char *) gif->SavedImages[ino].RasterBits;
7483 if (gif->SavedImages[ino].ImageDesc.Interlace)
7485 int pass;
7486 int row = interlace_start[0];
7488 pass = 0;
7490 for (y = 0; y < image_height; y++)
7492 if (row >= image_height)
7494 row = interlace_start[++pass];
7495 while (row >= image_height)
7496 row = interlace_start[++pass];
7499 for (x = 0; x < image_width; x++)
7501 int i = raster[(y * image_width) + x];
7502 XPutPixel (ximg, x + img->corners[LEFT_CORNER],
7503 row + img->corners[TOP_CORNER], pixel_colors[i]);
7506 row += interlace_increment[pass];
7509 else
7511 for (y = 0; y < image_height; ++y)
7512 for (x = 0; x < image_width; ++x)
7514 int i = raster[y * image_width + x];
7515 XPutPixel (ximg, x + img->corners[LEFT_CORNER],
7516 y + img->corners[TOP_CORNER], pixel_colors[i]);
7520 /* Save GIF image extension data for `image-metadata'.
7521 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7522 img->data.lisp_val = Qnil;
7523 if (gif->SavedImages[ino].ExtensionBlockCount > 0)
7525 ExtensionBlock *ext = gif->SavedImages[ino].ExtensionBlocks;
7526 for (i = 0; i < gif->SavedImages[ino].ExtensionBlockCount; i++, ext++)
7527 /* Append (... FUNCTION "BYTES") */
7528 img->data.lisp_val = Fcons (make_unibyte_string (ext->Bytes, ext->ByteCount),
7529 Fcons (make_number (ext->Function),
7530 img->data.lisp_val));
7531 img->data.lisp_val = Fcons (Qextension_data,
7532 Fcons (Fnreverse (img->data.lisp_val),
7533 Qnil));
7535 if (gif->ImageCount > 1)
7536 img->data.lisp_val = Fcons (Qcount,
7537 Fcons (make_number (gif->ImageCount),
7538 img->data.lisp_val));
7540 fn_DGifCloseFile (gif);
7542 /* Maybe fill in the background field while we have ximg handy. */
7543 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7544 /* Casting avoids a GCC warning. */
7545 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
7547 /* Put the image into the pixmap, then free the X image and its buffer. */
7548 x_put_x_image (f, ximg, img->pixmap, width, height);
7549 x_destroy_x_image (ximg);
7551 UNGCPRO;
7552 return 1;
7555 #else /* !HAVE_GIF */
7557 #ifdef HAVE_NS
7558 static int
7559 gif_load (struct frame *f, struct image *img)
7561 return ns_load_image(f, img,
7562 image_spec_value (img->spec, QCfile, NULL),
7563 image_spec_value (img->spec, QCdata, NULL));
7565 #endif /* HAVE_NS */
7567 #endif /* HAVE_GIF */
7570 /***********************************************************************
7571 imagemagick
7572 ***********************************************************************/
7573 #if defined (HAVE_IMAGEMAGICK)
7574 Lisp_Object Vimagemagick_render_type;
7576 /* The symbol `imagemagick' identifying images of this type. */
7578 Lisp_Object Qimagemagick;
7579 Lisp_Object Vimagemagick_render_type;
7581 /* Indices of image specification fields in imagemagick_format, below. */
7583 enum imagemagick_keyword_index
7585 IMAGEMAGICK_TYPE,
7586 IMAGEMAGICK_DATA,
7587 IMAGEMAGICK_FILE,
7588 IMAGEMAGICK_ASCENT,
7589 IMAGEMAGICK_MARGIN,
7590 IMAGEMAGICK_RELIEF,
7591 IMAGEMAGICK_ALGORITHM,
7592 IMAGEMAGICK_HEURISTIC_MASK,
7593 IMAGEMAGICK_MASK,
7594 IMAGEMAGICK_BACKGROUND,
7595 IMAGEMAGICK_LAST
7598 /* Vector of image_keyword structures describing the format
7599 of valid user-defined image specifications. */
7601 static struct image_keyword imagemagick_format[IMAGEMAGICK_LAST] =
7603 {":type", IMAGE_SYMBOL_VALUE, 1},
7604 {":data", IMAGE_STRING_VALUE, 0},
7605 {":file", IMAGE_STRING_VALUE, 0},
7606 {":ascent", IMAGE_ASCENT_VALUE, 0},
7607 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7608 {":relief", IMAGE_INTEGER_VALUE, 0},
7609 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7610 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7611 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7612 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7614 /* Free X resources of imagemagick image IMG which is used on frame F. */
7616 static void
7617 imagemagick_clear_image (struct frame *f,
7618 struct image *img)
7620 printf("clearing imagemagick image\n");
7621 x_clear_image (f, img);
7626 /* Return non-zero if OBJECT is a valid IMAGEMAGICK image specification. Do
7627 this by calling parse_image_spec and supplying the keywords that
7628 identify the IMAGEMAGICK format. */
7630 static int
7631 imagemagick_image_p (Lisp_Object object)
7633 struct image_keyword fmt[IMAGEMAGICK_LAST];
7634 bcopy (imagemagick_format, fmt, sizeof fmt);
7636 if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
7637 return 0;
7639 /* Must specify either the :data or :file keyword. */
7640 return fmt[IMAGEMAGICK_FILE].count + fmt[IMAGEMAGICK_DATA].count == 1;
7643 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7644 Therefore rename the function so it doesnt collide with ImageMagick. */
7645 #define DrawRectangle DrawRectangleGif
7646 #include <wand/MagickWand.h>
7648 /* imagemagick_load_image is a helper function for imagemagick_load, which does the
7649 actual loading given contents and size, apart from frame and image
7650 structures, passed from imagemagick_load.
7652 Uses librimagemagick to do most of the image processing.
7654 Returns non-zero when successful.
7657 static int
7658 imagemagick_load_image (struct frame *f, /* Pointer to emacs frame structure. */
7659 struct image *img, /* Pointer to emacs image structure. */
7660 unsigned char *contents,/* String containing the IMAGEMAGICK data to be parsed. */
7661 unsigned int size, /* Size of data in bytes. */
7662 unsigned char *filename)/* Filename, either pass filename or contents/size. */
7664 long unsigned int width;
7665 long unsigned int height;
7667 MagickBooleanType
7668 status;
7670 XImagePtr ximg;
7671 Lisp_Object specified_bg;
7672 XColor background;
7673 int x;
7674 int y;
7676 MagickWand *image_wand;
7677 PixelIterator *iterator;
7678 PixelWand **pixels;
7679 MagickPixelPacket pixel;
7680 Lisp_Object image;
7681 Lisp_Object value;
7682 Lisp_Object crop, geometry;
7683 long ino;
7684 int desired_width, desired_height;
7685 double rotation;
7686 int imagemagick_rendermethod;
7687 int pixelwidth;
7690 /* image_wand will contain the image. */
7691 image_wand = NewMagickWand();
7693 /* Parse the contents argument and initialize image_wand. */
7694 if(filename != NULL)
7695 status = MagickReadImage(image_wand, filename);
7696 else
7697 status = MagickReadImageBlob(image_wand, contents, size);
7698 image_error ("im read failed", Qnil, Qnil);
7699 if (status == MagickFalse) goto imagemagick_error;
7701 /* Handle image index for image types who can contain more than one image.
7702 Interface :index is same as for GIF. */
7704 image = image_spec_value (img->spec, QCindex, NULL);
7705 ino = INTEGERP (image) ? XFASTINT (image) : 0;
7709 if (ino >= MagickGetNumberImages(image_wand))
7711 image_error ("Invalid image number `%s' in image `%s'",
7712 image, img->spec);
7713 UNGCPRO;
7714 return 0;
7718 if (MagickGetNumberImages(image_wand) > 1)
7719 img->data.lisp_val = Fcons (Qcount,
7720 Fcons (make_number (MagickGetNumberImages(image_wand)),
7721 img->data.lisp_val));
7722 if(ino == 0)
7723 MagickSetFirstIterator(image_wand);
7724 else
7725 MagickSetIteratorIndex(image_wand, ino);
7728 If width and/or height is set in the display spec
7729 assume we want to scale to those. */
7731 value = image_spec_value (img->spec, QCwidth, NULL);
7732 desired_width = (INTEGERP (value) ? XFASTINT (value) : -1);
7733 value = image_spec_value (img->spec, QCheight, NULL);
7734 desired_height = (INTEGERP (value) ? XFASTINT (value) : -1);
7735 if(desired_width != -1 && desired_height != -1)
7737 printf("MagickScaleImage %d %d\n", desired_width, desired_height);
7738 status = MagickScaleImage(image_wand, desired_width, desired_height);
7739 if (status == MagickFalse) {
7740 image_error ("Imagemagick scale failed", Qnil, Qnil);
7741 goto imagemagick_error;
7745 /* Also support :geometry and :crop which are imagemagick specific descriptors. */
7747 crop = image_spec_value (img->spec, QCcrop, NULL);
7748 geometry = image_spec_value (img->spec, QCgeometry, NULL);
7749 if (STRINGP (crop) && STRINGP (geometry))
7751 printf("MagickTransformImage %s %s\n", SDATA(crop), SDATA(geometry));
7752 image_wand = MagickTransformImage (image_wand, SDATA (crop), SDATA (geometry));
7753 /* TODO differ between image_wand and transform_wand. */
7756 /* Furthermore :rotation. we need background color and angle for rotation. */
7758 TODO background handling for rotation
7759 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
7760 if (!STRINGP (specified_bg)
7762 value = image_spec_value (img->spec, QCrotation, NULL);
7763 if (FLOATP (value))
7765 PixelWand* background = NewPixelWand();
7766 PixelSetColor (background, "#ffffff");/*TODO remove hardcode*/
7768 rotation = extract_float (value);
7769 printf ("MagickRotateImage %f\n", rotation);
7771 status = MagickRotateImage (image_wand, background, rotation);
7772 DestroyPixelWand (background);
7773 if (status == MagickFalse)
7775 image_error ("Imagemagick image rotate failed", Qnil, Qnil);
7776 goto imagemagick_error;
7780 /* Finaly we are done manipulating the image,
7781 figure out resulting width, height, and then transfer ownerwship to Emacs.
7783 height = MagickGetImageHeight (image_wand);
7784 width = MagickGetImageWidth (image_wand);
7785 if (status == MagickFalse)
7787 image_error ("Imagemagick image get size failed", Qnil, Qnil);
7788 goto imagemagick_error;
7791 if (! check_image_size (f, width, height))
7793 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7794 goto imagemagick_error;
7797 /* We can now get a valid pixel buffer from the imagemagick file, if all
7798 went ok. */
7801 init_color_table ();
7802 imagemagick_rendermethod = (INTEGERP (Vimagemagick_render_type) ? XFASTINT (Vimagemagick_render_type) : 0);
7803 if (imagemagick_rendermethod == 0)
7805 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7806 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7808 image_error("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7809 goto imagemagick_error;
7812 /* Copy imagegmagick image to x with primitive yet robust pixel
7813 pusher loop. This has been tested a lot with many different
7814 images, it doesnt work too well with image archive formats though!
7816 Also seems slow.
7819 /* Copy pixels from the imagemagick image structure to the x image map. */
7820 iterator = NewPixelIterator (image_wand);
7821 if ((iterator == (PixelIterator *) NULL))
7823 image_error ("Imagemagick pixel iterator creation failed", Qnil, Qnil);
7824 goto imagemagick_error;
7827 for (y = 0; y < (long) MagickGetImageHeight(image_wand); y++)
7829 pixels = PixelGetNextIteratorRow (iterator, &width);
7830 if ((pixels == (PixelWand **) NULL))
7831 break;
7832 for (x = 0; x < (long) width; x++)
7834 PixelGetMagickColor (pixels[x], &pixel);
7835 XPutPixel (ximg, x, y, lookup_rgb_color (f, pixel.red, pixel.green, pixel.blue));
7838 DestroyPixelIterator (iterator);
7841 if (imagemagick_rendermethod == 1)
7843 /* Try if magicexportimage is any faster than pixelpushing. */
7844 /* printf("ximg: bitmap_unit:%d format:%d byte_order:%d depth:%d bits_per_pixel:%d\n", */
7845 /* ximg->bitmap_unit,ximg->format,ximg->byte_order,ximg->depth,ximg->bits_per_pixel); */
7846 int imagedepth = 24;/*MagickGetImageDepth(image_wand);*/
7847 char* exportdepth = imagedepth <= 8 ? "I" : "BGRP";/*"RGBP";*/
7848 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7849 printf("imagedepth:%d exportdepth:%s\n", imagedepth, exportdepth);
7850 if (!x_create_x_image_and_pixmap (f, width, height, imagedepth, &ximg, &img->pixmap)){
7851 image_error("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7852 goto imagemagick_error;
7856 /* Oddly, the below code doesnt seem to work:*/
7857 /* switch(ximg->bitmap_unit){ */
7858 /* case 8: */
7859 /* pixelwidth=CharPixel; */
7860 /* break; */
7861 /* case 16: */
7862 /* pixelwidth=ShortPixel; */
7863 /* break; */
7864 /* case 32: */
7865 /* pixelwidth=LongPixel; */
7866 /* break; */
7867 /* } */
7869 Here im just guessing the format of the bitmap.
7870 happens to work fine for:
7871 - bw djvu images
7872 on rgb display.
7873 seems about 3 times as fast as pixel pushing(not carefully measured)
7874 with color djvu, the bitplanes are mapped to wrong color(seems fixed).
7877 pixelwidth = CharPixel;/*??? TODO figure out*/
7878 #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS
7879 MagickExportImagePixels(image_wand,
7880 0, 0,
7881 width, height,
7882 exportdepth,
7883 pixelwidth,
7884 /*&(img->pixmap));*/
7885 ximg->data);
7886 #else
7887 image_error("You dont have MagickExportImagePixels, upgrade ImageMagick if you want to try it!",
7888 Qnil, Qnil);
7889 #endif
7893 #ifdef COLOR_TABLE_SUPPORT
7894 /* Remember colors allocated for this image. */
7895 img->colors = colors_in_color_table (&img->ncolors);
7896 free_color_table ();
7897 #endif /* COLOR_TABLE_SUPPORT */
7900 img->width = width;
7901 img->height = height;
7903 /* Maybe fill in the background field while we have ximg handy.
7904 Casting avoids a GCC warning. */
7905 /* IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);*/
7907 /* Put the image into the pixmap, then free the X image and its
7908 buffer. */
7909 x_put_x_image (f, ximg, img->pixmap, width, height);
7911 x_destroy_x_image (ximg);
7914 /* JAVE TODO more cleanup. */
7915 DestroyMagickWand (image_wand);
7917 return 1;
7919 imagemagick_error:
7920 /* TODO more cleanup. */
7921 image_error ("Error parsing IMAGEMAGICK image `%s'", img->spec, Qnil);
7922 printf("Imagemagick error, see *Messages*\n");
7923 return 0;
7927 /* Load IMAGEMAGICK image IMG for use on frame F. Value is non-zero if
7928 successful. this function will go into the imagemagick_type structure, and
7929 the prototype thus needs to be compatible with that structure. */
7931 static int
7932 imagemagick_load (struct frame *f,
7933 struct image *img)
7935 int success_p = 0;
7936 Lisp_Object file_name;
7938 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7939 file_name = image_spec_value (img->spec, QCfile, NULL);
7940 if (STRINGP (file_name))
7942 Lisp_Object file;
7943 unsigned char *contents;
7944 int size;
7945 struct gcpro gcpro1;
7947 file = x_find_image_file (file_name);
7948 GCPRO1 (file);
7949 if (!STRINGP (file))
7951 image_error ("Cannot find image file `%s'", file_name, Qnil);
7952 UNGCPRO;
7953 return 0;
7956 /* Read the entire file into memory. */
7957 /* contents = slurp_file (SDATA (file), &size); */
7958 /* if (contents == NULL) */
7959 /* { */
7960 /* image_error ("Error loading IMAGEMAGICK image `%s'", img->spec, Qnil); */
7961 /* UNGCPRO; */
7962 /* return 0; */
7963 /* } */
7964 /* If the file was slurped into memory properly, parse it. */
7965 success_p = imagemagick_load_image (f, img, 0, 0, SDATA(file_name));
7966 UNGCPRO;
7968 /* Else its not a file, its a lisp object. Load the image from a
7969 lisp object rather than a file. */
7970 else
7972 Lisp_Object data;
7974 data = image_spec_value (img->spec, QCdata, NULL);
7975 success_p = imagemagick_load_image (f, img, SDATA (data), SBYTES (data), NULL);
7978 return success_p;
7981 /* Structure describing the image type `imagemagick'. Its the same type of
7982 structure defined for all image formats, handled by Emacs image
7983 functions. See struct image_type in dispextern.h. */
7985 static struct image_type imagemagick_type =
7987 /* An identifier showing that this is an image structure for the IMAGEMAGICK format. */
7988 &Qimagemagick,
7989 /* Handle to a function that can be used to identify a IMAGEMAGICK file. */
7990 imagemagick_image_p,
7991 /* Handle to function used to load a IMAGEMAGICK file. */
7992 imagemagick_load,
7993 /* Handle to function to free resources for IMAGEMAGICK. */
7994 imagemagick_clear_image,
7995 /* An internal field to link to the next image type in a list of
7996 image types, will be filled in when registering the format. */
7997 NULL
8003 DEFUN ("imagemagick-types", Fimagemagick_types, Simagemagick_types, 0, 0, 0,
8004 doc: /* Return image file types supported by ImageMagick.
8005 Since ImageMagick recognizes a lot of file-types that clash with Emacs,
8006 such as .c, we want to be able to alter the list at the lisp level. */)
8009 Lisp_Object typelist = Qnil;
8010 unsigned long numf;
8011 ExceptionInfo ex;
8012 char** imtypes = GetMagickList ("*", &numf, &ex);
8013 int i;
8014 Lisp_Object Qimagemagicktype;
8015 for (i = 0; i < numf; i++)
8017 Qimagemagicktype = intern (imtypes[i]);
8018 typelist = Fcons (Qimagemagicktype, typelist);
8020 return typelist;
8023 #endif /* defined (HAVE_IMAGEMAGICK) */
8027 /***********************************************************************
8029 ***********************************************************************/
8031 #if defined (HAVE_RSVG)
8033 /* Function prototypes. */
8035 static int svg_image_p P_ ((Lisp_Object object));
8036 static int svg_load P_ ((struct frame *f, struct image *img));
8038 static int svg_load_image P_ ((struct frame *, struct image *,
8039 unsigned char *, unsigned int));
8041 /* The symbol `svg' identifying images of this type. */
8043 Lisp_Object Qsvg;
8045 /* Indices of image specification fields in svg_format, below. */
8047 enum svg_keyword_index
8049 SVG_TYPE,
8050 SVG_DATA,
8051 SVG_FILE,
8052 SVG_ASCENT,
8053 SVG_MARGIN,
8054 SVG_RELIEF,
8055 SVG_ALGORITHM,
8056 SVG_HEURISTIC_MASK,
8057 SVG_MASK,
8058 SVG_BACKGROUND,
8059 SVG_LAST
8062 /* Vector of image_keyword structures describing the format
8063 of valid user-defined image specifications. */
8065 static const struct image_keyword svg_format[SVG_LAST] =
8067 {":type", IMAGE_SYMBOL_VALUE, 1},
8068 {":data", IMAGE_STRING_VALUE, 0},
8069 {":file", IMAGE_STRING_VALUE, 0},
8070 {":ascent", IMAGE_ASCENT_VALUE, 0},
8071 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8072 {":relief", IMAGE_INTEGER_VALUE, 0},
8073 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8074 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8075 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8076 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8079 /* Structure describing the image type `svg'. Its the same type of
8080 structure defined for all image formats, handled by emacs image
8081 functions. See struct image_type in dispextern.h. */
8083 static struct image_type svg_type =
8085 /* An identifier showing that this is an image structure for the SVG format. */
8086 &Qsvg,
8087 /* Handle to a function that can be used to identify a SVG file. */
8088 svg_image_p,
8089 /* Handle to function used to load a SVG file. */
8090 svg_load,
8091 /* Handle to function to free sresources for SVG. */
8092 x_clear_image,
8093 /* An internal field to link to the next image type in a list of
8094 image types, will be filled in when registering the format. */
8095 NULL
8099 /* Return non-zero if OBJECT is a valid SVG image specification. Do
8100 this by calling parse_image_spec and supplying the keywords that
8101 identify the SVG format. */
8103 static int
8104 svg_image_p (object)
8105 Lisp_Object object;
8107 struct image_keyword fmt[SVG_LAST];
8108 bcopy (svg_format, fmt, sizeof fmt);
8110 if (!parse_image_spec (object, fmt, SVG_LAST, Qsvg))
8111 return 0;
8113 /* Must specify either the :data or :file keyword. */
8114 return fmt[SVG_FILE].count + fmt[SVG_DATA].count == 1;
8117 #include <librsvg/rsvg.h>
8119 #ifdef HAVE_NTGUI
8121 /* SVG library functions. */
8122 DEF_IMGLIB_FN (rsvg_handle_new);
8123 DEF_IMGLIB_FN (rsvg_handle_get_dimensions);
8124 DEF_IMGLIB_FN (rsvg_handle_write);
8125 DEF_IMGLIB_FN (rsvg_handle_close);
8126 DEF_IMGLIB_FN (rsvg_handle_get_pixbuf);
8127 DEF_IMGLIB_FN (rsvg_handle_free);
8129 DEF_IMGLIB_FN (gdk_pixbuf_get_width);
8130 DEF_IMGLIB_FN (gdk_pixbuf_get_height);
8131 DEF_IMGLIB_FN (gdk_pixbuf_get_pixels);
8132 DEF_IMGLIB_FN (gdk_pixbuf_get_rowstride);
8133 DEF_IMGLIB_FN (gdk_pixbuf_get_colorspace);
8134 DEF_IMGLIB_FN (gdk_pixbuf_get_n_channels);
8135 DEF_IMGLIB_FN (gdk_pixbuf_get_has_alpha);
8136 DEF_IMGLIB_FN (gdk_pixbuf_get_bits_per_sample);
8138 DEF_IMGLIB_FN (g_type_init);
8139 DEF_IMGLIB_FN (g_object_unref);
8140 DEF_IMGLIB_FN (g_error_free);
8142 Lisp_Object Qgdk_pixbuf, Qglib, Qgobject;
8144 static int
8145 init_svg_functions (Lisp_Object libraries)
8147 HMODULE library, gdklib, glib, gobject;
8149 if (!(glib = w32_delayed_load (libraries, Qglib))
8150 || !(gobject = w32_delayed_load (libraries, Qgobject))
8151 || !(gdklib = w32_delayed_load (libraries, Qgdk_pixbuf))
8152 || !(library = w32_delayed_load (libraries, Qsvg)))
8153 return 0;
8155 LOAD_IMGLIB_FN (library, rsvg_handle_new);
8156 LOAD_IMGLIB_FN (library, rsvg_handle_get_dimensions);
8157 LOAD_IMGLIB_FN (library, rsvg_handle_write);
8158 LOAD_IMGLIB_FN (library, rsvg_handle_close);
8159 LOAD_IMGLIB_FN (library, rsvg_handle_get_pixbuf);
8160 LOAD_IMGLIB_FN (library, rsvg_handle_free);
8162 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_width);
8163 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_height);
8164 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_pixels);
8165 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_rowstride);
8166 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_colorspace);
8167 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_n_channels);
8168 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_has_alpha);
8169 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_bits_per_sample);
8171 LOAD_IMGLIB_FN (gobject, g_type_init);
8172 LOAD_IMGLIB_FN (gobject, g_object_unref);
8173 LOAD_IMGLIB_FN (glib, g_error_free);
8175 return 1;
8178 #else
8179 /* The following aliases for library functions allow dynamic loading
8180 to be used on some platforms. */
8181 #define fn_rsvg_handle_new rsvg_handle_new
8182 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
8183 #define fn_rsvg_handle_write rsvg_handle_write
8184 #define fn_rsvg_handle_close rsvg_handle_close
8185 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
8186 #define fn_rsvg_handle_free rsvg_handle_free
8188 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
8189 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
8190 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
8191 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
8192 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
8193 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
8194 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
8195 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
8197 #define fn_g_type_init g_type_init
8198 #define fn_g_object_unref g_object_unref
8199 #define fn_g_error_free g_error_free
8200 #endif /* !HAVE_NTGUI */
8202 /* Load SVG image IMG for use on frame F. Value is non-zero if
8203 successful. this function will go into the svg_type structure, and
8204 the prototype thus needs to be compatible with that structure. */
8206 static int
8207 svg_load (f, img)
8208 struct frame *f;
8209 struct image *img;
8211 int success_p = 0;
8212 Lisp_Object file_name;
8214 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8215 file_name = image_spec_value (img->spec, QCfile, NULL);
8216 if (STRINGP (file_name))
8218 Lisp_Object file;
8219 unsigned char *contents;
8220 int size;
8221 struct gcpro gcpro1;
8223 file = x_find_image_file (file_name);
8224 GCPRO1 (file);
8225 if (!STRINGP (file))
8227 image_error ("Cannot find image file `%s'", file_name, Qnil);
8228 UNGCPRO;
8229 return 0;
8232 /* Read the entire file into memory. */
8233 contents = slurp_file (SDATA (file), &size);
8234 if (contents == NULL)
8236 image_error ("Error loading SVG image `%s'", img->spec, Qnil);
8237 UNGCPRO;
8238 return 0;
8240 /* If the file was slurped into memory properly, parse it. */
8241 success_p = svg_load_image (f, img, contents, size);
8242 xfree (contents);
8243 UNGCPRO;
8245 /* Else its not a file, its a lisp object. Load the image from a
8246 lisp object rather than a file. */
8247 else
8249 Lisp_Object data;
8251 data = image_spec_value (img->spec, QCdata, NULL);
8252 success_p = svg_load_image (f, img, SDATA (data), SBYTES (data));
8255 return success_p;
8258 /* svg_load_image is a helper function for svg_load, which does the
8259 actual loading given contents and size, apart from frame and image
8260 structures, passed from svg_load.
8262 Uses librsvg to do most of the image processing.
8264 Returns non-zero when successful. */
8265 static int
8266 svg_load_image (f, img, contents, size)
8267 /* Pointer to emacs frame structure. */
8268 struct frame *f;
8269 /* Pointer to emacs image structure. */
8270 struct image *img;
8271 /* String containing the SVG XML data to be parsed. */
8272 unsigned char *contents;
8273 /* Size of data in bytes. */
8274 unsigned int size;
8276 RsvgHandle *rsvg_handle;
8277 RsvgDimensionData dimension_data;
8278 GError *error = NULL;
8279 GdkPixbuf *pixbuf;
8280 int width;
8281 int height;
8282 const guint8 *pixels;
8283 int rowstride;
8284 XImagePtr ximg;
8285 Lisp_Object specified_bg;
8286 XColor background;
8287 int x;
8288 int y;
8290 /* g_type_init is a glib function that must be called prior to using
8291 gnome type library functions. */
8292 fn_g_type_init ();
8293 /* Make a handle to a new rsvg object. */
8294 rsvg_handle = (RsvgHandle *) fn_rsvg_handle_new ();
8296 /* Parse the contents argument and fill in the rsvg_handle. */
8297 fn_rsvg_handle_write (rsvg_handle, contents, size, &error);
8298 if (error) goto rsvg_error;
8300 /* The parsing is complete, rsvg_handle is ready to used, close it
8301 for further writes. */
8302 fn_rsvg_handle_close (rsvg_handle, &error);
8303 if (error) goto rsvg_error;
8305 fn_rsvg_handle_get_dimensions (rsvg_handle, &dimension_data);
8306 if (! check_image_size (f, dimension_data.width, dimension_data.height))
8308 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8309 goto rsvg_error;
8312 /* We can now get a valid pixel buffer from the svg file, if all
8313 went ok. */
8314 pixbuf = (GdkPixbuf *) fn_rsvg_handle_get_pixbuf (rsvg_handle);
8315 if (!pixbuf) goto rsvg_error;
8316 fn_g_object_unref (rsvg_handle);
8318 /* Extract some meta data from the svg handle. */
8319 width = fn_gdk_pixbuf_get_width (pixbuf);
8320 height = fn_gdk_pixbuf_get_height (pixbuf);
8321 pixels = (const guint8 *) fn_gdk_pixbuf_get_pixels (pixbuf);
8322 rowstride = fn_gdk_pixbuf_get_rowstride (pixbuf);
8324 /* Validate the svg meta data. */
8325 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf) == GDK_COLORSPACE_RGB);
8326 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf) == 4);
8327 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf));
8328 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf) == 8);
8330 /* Try to create a x pixmap to hold the svg pixmap. */
8331 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
8333 fn_g_object_unref (pixbuf);
8334 return 0;
8337 init_color_table ();
8339 /* Handle alpha channel by combining the image with a background
8340 color. */
8341 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
8342 if (!STRINGP (specified_bg)
8343 || !x_defined_color (f, SDATA (specified_bg), &background, 0))
8345 #ifndef HAVE_NS
8346 background.pixel = FRAME_BACKGROUND_PIXEL (f);
8347 x_query_color (f, &background);
8348 #else
8349 ns_query_color(FRAME_BACKGROUND_COLOR (f), &background, 1);
8350 #endif
8353 /* SVG pixmaps specify transparency in the last byte, so right
8354 shift 8 bits to get rid of it, since emacs doesn't support
8355 transparency. */
8356 background.red >>= 8;
8357 background.green >>= 8;
8358 background.blue >>= 8;
8360 /* This loop handles opacity values, since Emacs assumes
8361 non-transparent images. Each pixel must be "flattened" by
8362 calculating the resulting color, given the transparency of the
8363 pixel, and the image background color. */
8364 for (y = 0; y < height; ++y)
8366 for (x = 0; x < width; ++x)
8368 unsigned red;
8369 unsigned green;
8370 unsigned blue;
8371 unsigned opacity;
8373 red = *pixels++;
8374 green = *pixels++;
8375 blue = *pixels++;
8376 opacity = *pixels++;
8378 red = ((red * opacity)
8379 + (background.red * ((1 << 8) - opacity)));
8380 green = ((green * opacity)
8381 + (background.green * ((1 << 8) - opacity)));
8382 blue = ((blue * opacity)
8383 + (background.blue * ((1 << 8) - opacity)));
8385 XPutPixel (ximg, x, y, lookup_rgb_color (f, red, green, blue));
8388 pixels += rowstride - 4 * width;
8391 #ifdef COLOR_TABLE_SUPPORT
8392 /* Remember colors allocated for this image. */
8393 img->colors = colors_in_color_table (&img->ncolors);
8394 free_color_table ();
8395 #endif /* COLOR_TABLE_SUPPORT */
8397 fn_g_object_unref (pixbuf);
8399 img->width = width;
8400 img->height = height;
8402 /* Maybe fill in the background field while we have ximg handy.
8403 Casting avoids a GCC warning. */
8404 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
8406 /* Put the image into the pixmap, then free the X image and its
8407 buffer. */
8408 x_put_x_image (f, ximg, img->pixmap, width, height);
8409 x_destroy_x_image (ximg);
8411 return 1;
8413 rsvg_error:
8414 fn_g_object_unref (rsvg_handle);
8415 /* FIXME: Use error->message so the user knows what is the actual
8416 problem with the image. */
8417 image_error ("Error parsing SVG image `%s'", img->spec, Qnil);
8418 fn_g_error_free (error);
8419 return 0;
8422 #endif /* defined (HAVE_RSVG) */
8427 /***********************************************************************
8428 Ghostscript
8429 ***********************************************************************/
8431 #ifdef HAVE_X_WINDOWS
8432 #define HAVE_GHOSTSCRIPT 1
8433 #endif /* HAVE_X_WINDOWS */
8435 /* The symbol `postscript' identifying images of this type. */
8437 Lisp_Object Qpostscript;
8439 #ifdef HAVE_GHOSTSCRIPT
8441 static int gs_image_p P_ ((Lisp_Object object));
8442 static int gs_load P_ ((struct frame *f, struct image *img));
8443 static void gs_clear_image P_ ((struct frame *f, struct image *img));
8445 /* Keyword symbols. */
8447 Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
8449 /* Indices of image specification fields in gs_format, below. */
8451 enum gs_keyword_index
8453 GS_TYPE,
8454 GS_PT_WIDTH,
8455 GS_PT_HEIGHT,
8456 GS_FILE,
8457 GS_LOADER,
8458 GS_BOUNDING_BOX,
8459 GS_ASCENT,
8460 GS_MARGIN,
8461 GS_RELIEF,
8462 GS_ALGORITHM,
8463 GS_HEURISTIC_MASK,
8464 GS_MASK,
8465 GS_BACKGROUND,
8466 GS_LAST
8469 /* Vector of image_keyword structures describing the format
8470 of valid user-defined image specifications. */
8472 static const struct image_keyword gs_format[GS_LAST] =
8474 {":type", IMAGE_SYMBOL_VALUE, 1},
8475 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8476 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8477 {":file", IMAGE_STRING_VALUE, 1},
8478 {":loader", IMAGE_FUNCTION_VALUE, 0},
8479 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
8480 {":ascent", IMAGE_ASCENT_VALUE, 0},
8481 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8482 {":relief", IMAGE_INTEGER_VALUE, 0},
8483 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8484 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8485 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8486 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8489 /* Structure describing the image type `ghostscript'. */
8491 static struct image_type gs_type =
8493 &Qpostscript,
8494 gs_image_p,
8495 gs_load,
8496 gs_clear_image,
8497 NULL
8501 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8503 static void
8504 gs_clear_image (f, img)
8505 struct frame *f;
8506 struct image *img;
8508 /* IMG->data.ptr_val may contain a recorded colormap. */
8509 xfree (img->data.ptr_val);
8510 x_clear_image (f, img);
8514 /* Return non-zero if OBJECT is a valid Ghostscript image
8515 specification. */
8517 static int
8518 gs_image_p (object)
8519 Lisp_Object object;
8521 struct image_keyword fmt[GS_LAST];
8522 Lisp_Object tem;
8523 int i;
8525 bcopy (gs_format, fmt, sizeof fmt);
8527 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
8528 return 0;
8530 /* Bounding box must be a list or vector containing 4 integers. */
8531 tem = fmt[GS_BOUNDING_BOX].value;
8532 if (CONSP (tem))
8534 for (i = 0; i < 4; ++i, tem = XCDR (tem))
8535 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
8536 return 0;
8537 if (!NILP (tem))
8538 return 0;
8540 else if (VECTORP (tem))
8542 if (XVECTOR (tem)->size != 4)
8543 return 0;
8544 for (i = 0; i < 4; ++i)
8545 if (!INTEGERP (XVECTOR (tem)->contents[i]))
8546 return 0;
8548 else
8549 return 0;
8551 return 1;
8555 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
8556 if successful. */
8558 static int
8559 gs_load (f, img)
8560 struct frame *f;
8561 struct image *img;
8563 char buffer[100];
8564 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
8565 struct gcpro gcpro1, gcpro2;
8566 Lisp_Object frame;
8567 double in_width, in_height;
8568 Lisp_Object pixel_colors = Qnil;
8570 /* Compute pixel size of pixmap needed from the given size in the
8571 image specification. Sizes in the specification are in pt. 1 pt
8572 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8573 info. */
8574 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
8575 in_width = XFASTINT (pt_width) / 72.0;
8576 img->width = in_width * FRAME_X_DISPLAY_INFO (f)->resx;
8577 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
8578 in_height = XFASTINT (pt_height) / 72.0;
8579 img->height = in_height * FRAME_X_DISPLAY_INFO (f)->resy;
8581 if (!check_image_size (f, img->width, img->height))
8583 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8584 return 0;
8587 /* Create the pixmap. */
8588 xassert (img->pixmap == NO_PIXMAP);
8590 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8591 BLOCK_INPUT;
8592 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8593 img->width, img->height,
8594 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
8595 UNBLOCK_INPUT;
8597 if (!img->pixmap)
8599 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
8600 return 0;
8603 /* Call the loader to fill the pixmap. It returns a process object
8604 if successful. We do not record_unwind_protect here because
8605 other places in redisplay like calling window scroll functions
8606 don't either. Let the Lisp loader use `unwind-protect' instead. */
8607 GCPRO2 (window_and_pixmap_id, pixel_colors);
8609 sprintf (buffer, "%lu %lu",
8610 (unsigned long) FRAME_X_WINDOW (f),
8611 (unsigned long) img->pixmap);
8612 window_and_pixmap_id = build_string (buffer);
8614 sprintf (buffer, "%lu %lu",
8615 FRAME_FOREGROUND_PIXEL (f),
8616 FRAME_BACKGROUND_PIXEL (f));
8617 pixel_colors = build_string (buffer);
8619 XSETFRAME (frame, f);
8620 loader = image_spec_value (img->spec, QCloader, NULL);
8621 if (NILP (loader))
8622 loader = intern ("gs-load-image");
8624 img->data.lisp_val = call6 (loader, frame, img->spec,
8625 make_number (img->width),
8626 make_number (img->height),
8627 window_and_pixmap_id,
8628 pixel_colors);
8629 UNGCPRO;
8630 return PROCESSP (img->data.lisp_val);
8634 /* Kill the Ghostscript process that was started to fill PIXMAP on
8635 frame F. Called from XTread_socket when receiving an event
8636 telling Emacs that Ghostscript has finished drawing. */
8638 void
8639 x_kill_gs_process (pixmap, f)
8640 Pixmap pixmap;
8641 struct frame *f;
8643 struct image_cache *c = FRAME_IMAGE_CACHE (f);
8644 int class, i;
8645 struct image *img;
8647 /* Find the image containing PIXMAP. */
8648 for (i = 0; i < c->used; ++i)
8649 if (c->images[i]->pixmap == pixmap)
8650 break;
8652 /* Should someone in between have cleared the image cache, for
8653 instance, give up. */
8654 if (i == c->used)
8655 return;
8657 /* Kill the GS process. We should have found PIXMAP in the image
8658 cache and its image should contain a process object. */
8659 img = c->images[i];
8660 xassert (PROCESSP (img->data.lisp_val));
8661 Fkill_process (img->data.lisp_val, Qnil);
8662 img->data.lisp_val = Qnil;
8664 #if defined (HAVE_X_WINDOWS)
8666 /* On displays with a mutable colormap, figure out the colors
8667 allocated for the image by looking at the pixels of an XImage for
8668 img->pixmap. */
8669 class = FRAME_X_VISUAL (f)->class;
8670 if (class != StaticColor && class != StaticGray && class != TrueColor)
8672 XImagePtr ximg;
8674 BLOCK_INPUT;
8676 /* Try to get an XImage for img->pixmep. */
8677 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
8678 0, 0, img->width, img->height, ~0, ZPixmap);
8679 if (ximg)
8681 int x, y;
8683 /* Initialize the color table. */
8684 init_color_table ();
8686 /* For each pixel of the image, look its color up in the
8687 color table. After having done so, the color table will
8688 contain an entry for each color used by the image. */
8689 for (y = 0; y < img->height; ++y)
8690 for (x = 0; x < img->width; ++x)
8692 unsigned long pixel = XGetPixel (ximg, x, y);
8693 lookup_pixel_color (f, pixel);
8696 /* Record colors in the image. Free color table and XImage. */
8697 #ifdef COLOR_TABLE_SUPPORT
8698 img->colors = colors_in_color_table (&img->ncolors);
8699 free_color_table ();
8700 #endif
8701 XDestroyImage (ximg);
8703 #if 0 /* This doesn't seem to be the case. If we free the colors
8704 here, we get a BadAccess later in x_clear_image when
8705 freeing the colors. */
8706 /* We have allocated colors once, but Ghostscript has also
8707 allocated colors on behalf of us. So, to get the
8708 reference counts right, free them once. */
8709 if (img->ncolors)
8710 x_free_colors (f, img->colors, img->ncolors);
8711 #endif
8713 else
8714 image_error ("Cannot get X image of `%s'; colors will not be freed",
8715 img->spec, Qnil);
8717 UNBLOCK_INPUT;
8719 #endif /* HAVE_X_WINDOWS */
8721 /* Now that we have the pixmap, compute mask and transform the
8722 image if requested. */
8723 BLOCK_INPUT;
8724 postprocess_image (f, img);
8725 UNBLOCK_INPUT;
8728 #endif /* HAVE_GHOSTSCRIPT */
8731 /***********************************************************************
8732 Tests
8733 ***********************************************************************/
8735 #if GLYPH_DEBUG
8737 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
8738 doc: /* Value is non-nil if SPEC is a valid image specification. */)
8739 (spec)
8740 Lisp_Object spec;
8742 return valid_image_p (spec) ? Qt : Qnil;
8746 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
8747 (spec)
8748 Lisp_Object spec;
8750 int id = -1;
8752 if (valid_image_p (spec))
8753 id = lookup_image (SELECTED_FRAME (), spec);
8755 debug_print (spec);
8756 return make_number (id);
8759 #endif /* GLYPH_DEBUG != 0 */
8762 /***********************************************************************
8763 Initialization
8764 ***********************************************************************/
8766 #ifdef HAVE_NTGUI
8767 /* Image types that rely on external libraries are loaded dynamically
8768 if the library is available. */
8769 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8770 define_image_type (image_type, init_lib_fn (libraries))
8771 #else
8772 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8773 define_image_type (image_type, 1)
8774 #endif /* HAVE_NTGUI */
8776 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 2, 2, 0,
8777 doc: /* Initialize image library implementing image type TYPE.
8778 Return non-nil if TYPE is a supported image type.
8780 Image types pbm and xbm are prebuilt; other types are loaded here.
8781 Libraries to load are specified in alist LIBRARIES (usually, the value
8782 of `image-library-alist', which see). */)
8783 (type, libraries)
8784 Lisp_Object type, libraries;
8786 Lisp_Object tested;
8788 /* Don't try to reload the library. */
8789 tested = Fassq (type, Vimage_type_cache);
8790 if (CONSP (tested))
8791 return XCDR (tested);
8793 #if defined (HAVE_XPM) || defined (HAVE_NS)
8794 if (EQ (type, Qxpm))
8795 return CHECK_LIB_AVAILABLE (&xpm_type, init_xpm_functions, libraries);
8796 #endif
8798 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8799 if (EQ (type, Qjpeg))
8800 return CHECK_LIB_AVAILABLE (&jpeg_type, init_jpeg_functions, libraries);
8801 #endif
8803 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8804 if (EQ (type, Qtiff))
8805 return CHECK_LIB_AVAILABLE (&tiff_type, init_tiff_functions, libraries);
8806 #endif
8808 #if defined (HAVE_GIF) || defined (HAVE_NS)
8809 if (EQ (type, Qgif))
8810 return CHECK_LIB_AVAILABLE (&gif_type, init_gif_functions, libraries);
8811 #endif
8813 #if defined (HAVE_PNG) || defined (HAVE_NS)
8814 if (EQ (type, Qpng))
8815 return CHECK_LIB_AVAILABLE (&png_type, init_png_functions, libraries);
8816 #endif
8818 #if defined (HAVE_RSVG)
8819 if (EQ (type, Qsvg))
8820 return CHECK_LIB_AVAILABLE (&svg_type, init_svg_functions, libraries);
8821 #endif
8823 #if defined (HAVE_IMAGEMAGICK)
8824 if (EQ (type, Qimagemagick)){
8825 /* MagickWandGenesis() initalizes the imagemagick library. */
8826 MagickWandGenesis();
8827 return CHECK_LIB_AVAILABLE (&imagemagick_type, init_imagemagick_functions, libraries);
8829 #endif
8831 #ifdef HAVE_GHOSTSCRIPT
8832 if (EQ (type, Qpostscript))
8833 return CHECK_LIB_AVAILABLE (&gs_type, init_gs_functions, libraries);
8834 #endif
8836 /* If the type is not recognized, avoid testing it ever again. */
8837 CACHE_IMAGE_TYPE (type, Qnil);
8838 return Qnil;
8842 void
8843 syms_of_image ()
8845 extern Lisp_Object Qrisky_local_variable; /* Syms_of_xdisp has already run. */
8847 /* Initialize this only once, since that's what we do with Vimage_types
8848 and they are supposed to be in sync. Initializing here gives correct
8849 operation on GNU/Linux of calling dump-emacs after loading some images. */
8850 image_types = NULL;
8852 /* Must be defined now becase we're going to update it below, while
8853 defining the supported image types. */
8854 DEFVAR_LISP ("image-types", &Vimage_types,
8855 doc: /* List of potentially supported image types.
8856 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8857 To check whether it is really supported, use `image-type-available-p'. */);
8858 Vimage_types = Qnil;
8860 DEFVAR_LISP ("image-library-alist", &Vimage_library_alist,
8861 doc: /* Alist of image types vs external libraries needed to display them.
8863 Each element is a list (IMAGE-TYPE LIBRARY...), where the car is a symbol
8864 representing a supported image type, and the rest are strings giving
8865 alternate filenames for the corresponding external libraries.
8867 Emacs tries to load the libraries in the order they appear on the
8868 list; if none is loaded, the running session of Emacs won't
8869 support the image type. Types 'pbm and 'xbm don't need to be
8870 listed; they are always supported. */);
8871 Vimage_library_alist = Qnil;
8872 Fput (intern_c_string ("image-library-alist"), Qrisky_local_variable, Qt);
8874 DEFVAR_LISP ("max-image-size", &Vmax_image_size,
8875 doc: /* Maximum size of images.
8876 Emacs will not load an image into memory if its pixel width or
8877 pixel height exceeds this limit.
8879 If the value is an integer, it directly specifies the maximum
8880 image height and width, measured in pixels. If it is a floating
8881 point number, it specifies the maximum image height and width
8882 as a ratio to the frame height and width. If the value is
8883 non-numeric, there is no explicit limit on the size of images. */);
8884 Vmax_image_size = make_float (MAX_IMAGE_SIZE);
8886 Vimage_type_cache = Qnil;
8887 staticpro (&Vimage_type_cache);
8889 Qpbm = intern_c_string ("pbm");
8890 staticpro (&Qpbm);
8891 ADD_IMAGE_TYPE (Qpbm);
8893 Qxbm = intern_c_string ("xbm");
8894 staticpro (&Qxbm);
8895 ADD_IMAGE_TYPE (Qxbm);
8897 define_image_type (&xbm_type, 1);
8898 define_image_type (&pbm_type, 1);
8900 Qcount = intern_c_string ("count");
8901 staticpro (&Qcount);
8902 Qextension_data = intern_c_string ("extension-data");
8903 staticpro (&Qextension_data);
8905 QCascent = intern_c_string (":ascent");
8906 staticpro (&QCascent);
8907 QCmargin = intern_c_string (":margin");
8908 staticpro (&QCmargin);
8909 QCrelief = intern_c_string (":relief");
8910 staticpro (&QCrelief);
8911 QCconversion = intern_c_string (":conversion");
8912 staticpro (&QCconversion);
8913 QCcolor_symbols = intern_c_string (":color-symbols");
8914 staticpro (&QCcolor_symbols);
8915 QCheuristic_mask = intern_c_string (":heuristic-mask");
8916 staticpro (&QCheuristic_mask);
8917 QCindex = intern_c_string (":index");
8918 staticpro (&QCindex);
8919 QCgeometry = intern (":geometry");
8920 staticpro (&QCgeometry);
8921 QCcrop = intern (":crop");
8922 staticpro (&QCcrop);
8923 QCrotation = intern (":rotation");
8924 staticpro (&QCrotation);
8925 QCmatrix = intern_c_string (":matrix");
8927 staticpro (&QCmatrix);
8928 QCcolor_adjustment = intern_c_string (":color-adjustment");
8929 staticpro (&QCcolor_adjustment);
8930 QCmask = intern_c_string (":mask");
8931 staticpro (&QCmask);
8933 Qlaplace = intern_c_string ("laplace");
8934 staticpro (&Qlaplace);
8935 Qemboss = intern_c_string ("emboss");
8936 staticpro (&Qemboss);
8937 Qedge_detection = intern_c_string ("edge-detection");
8938 staticpro (&Qedge_detection);
8939 Qheuristic = intern_c_string ("heuristic");
8940 staticpro (&Qheuristic);
8942 Qpostscript = intern_c_string ("postscript");
8943 staticpro (&Qpostscript);
8944 #ifdef HAVE_GHOSTSCRIPT
8945 ADD_IMAGE_TYPE (Qpostscript);
8946 QCloader = intern_c_string (":loader");
8947 staticpro (&QCloader);
8948 QCbounding_box = intern_c_string (":bounding-box");
8949 staticpro (&QCbounding_box);
8950 QCpt_width = intern_c_string (":pt-width");
8951 staticpro (&QCpt_width);
8952 QCpt_height = intern_c_string (":pt-height");
8953 staticpro (&QCpt_height);
8954 #endif /* HAVE_GHOSTSCRIPT */
8956 #if defined (HAVE_XPM) || defined (HAVE_NS)
8957 Qxpm = intern_c_string ("xpm");
8958 staticpro (&Qxpm);
8959 ADD_IMAGE_TYPE (Qxpm);
8960 #endif
8962 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8963 Qjpeg = intern_c_string ("jpeg");
8964 staticpro (&Qjpeg);
8965 ADD_IMAGE_TYPE (Qjpeg);
8966 #endif
8968 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8969 Qtiff = intern_c_string ("tiff");
8970 staticpro (&Qtiff);
8971 ADD_IMAGE_TYPE (Qtiff);
8972 #endif
8974 #if defined (HAVE_GIF) || defined (HAVE_NS)
8975 Qgif = intern_c_string ("gif");
8976 staticpro (&Qgif);
8977 ADD_IMAGE_TYPE (Qgif);
8978 #endif
8980 #if defined (HAVE_PNG) || defined (HAVE_NS)
8981 Qpng = intern_c_string ("png");
8982 staticpro (&Qpng);
8983 ADD_IMAGE_TYPE (Qpng);
8984 #endif
8986 #if defined (HAVE_IMAGEMAGICK)
8987 Qimagemagick = intern ("imagemagick");
8988 staticpro (&Qimagemagick);
8989 ADD_IMAGE_TYPE (Qimagemagick);
8990 #endif
8992 #if defined (HAVE_RSVG)
8993 Qsvg = intern_c_string ("svg");
8994 staticpro (&Qsvg);
8995 ADD_IMAGE_TYPE (Qsvg);
8996 #ifdef HAVE_NTGUI
8997 /* Other libraries used directly by svg code. */
8998 Qgdk_pixbuf = intern_c_string ("gdk-pixbuf");
8999 staticpro (&Qgdk_pixbuf);
9000 Qglib = intern_c_string ("glib");
9001 staticpro (&Qglib);
9002 Qgobject = intern_c_string ("gobject");
9003 staticpro (&Qgobject);
9004 #endif /* HAVE_NTGUI */
9005 #endif /* HAVE_RSVG */
9007 defsubr (&Sinit_image_library);
9008 #ifdef HAVE_IMAGEMAGICK
9009 defsubr (&Simagemagick_types);
9010 #endif
9011 defsubr (&Sclear_image_cache);
9012 defsubr (&Simage_flush);
9013 defsubr (&Simage_size);
9014 defsubr (&Simage_mask_p);
9015 defsubr (&Simage_metadata);
9017 #if GLYPH_DEBUG
9018 defsubr (&Simagep);
9019 defsubr (&Slookup_image);
9020 #endif
9022 DEFVAR_BOOL ("cross-disabled-images", &cross_disabled_images,
9023 doc: /* Non-nil means always draw a cross over disabled images.
9024 Disabled images are those having a `:conversion disabled' property.
9025 A cross is always drawn on black & white displays. */);
9026 cross_disabled_images = 0;
9028 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
9029 doc: /* List of directories to search for window system bitmap files. */);
9030 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
9032 DEFVAR_LISP ("image-cache-eviction-delay", &Vimage_cache_eviction_delay,
9033 doc: /* Maximum time after which images are removed from the cache.
9034 When an image has not been displayed this many seconds, Emacs
9035 automatically removes it from the image cache. If the cache contains
9036 a large number of images, the actual eviction time may be shorter.
9037 The value can also be nil, meaning the cache is never cleared.
9038 The function `clear-image-cache' disregards this variable. */);
9039 Vimage_cache_eviction_delay = make_number (300);
9040 #ifdef HAVE_IMAGEMAGICK
9041 DEFVAR_LISP ("imagemagick-render-type", &Vimagemagick_render_type,
9042 doc: /* Choose between ImageMagick render methods. */);
9043 #endif
9048 void
9049 init_image ()
9056 /* arch-tag: 123c2a5e-14a8-4c53-ab95-af47d7db49b9
9057 (do not change this comment) */