Speed up keyboard auto-repeat cursor motion under bidi redisplay.
[bpt/emacs.git] / src / image.c
1 /* Functions for image support on window system.
2 Copyright (C) 1989, 1992-2011 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include <config.h>
20 #include <stdio.h>
21 #include <math.h>
22 #include <ctype.h>
23 #include <unistd.h>
24
25 #ifdef HAVE_PNG
26 #if defined HAVE_LIBPNG_PNG_H
27 # include <libpng/png.h>
28 #else
29 # include <png.h>
30 #endif
31 #endif
32
33 #include <setjmp.h>
34
35 /* This makes the fields of a Display accessible, in Xlib header files. */
36
37 #define XLIB_ILLEGAL_ACCESS
38
39 #include "lisp.h"
40 #include "frame.h"
41 #include "window.h"
42 #include "dispextern.h"
43 #include "blockinput.h"
44 #include "systime.h"
45 #include <epaths.h>
46 #include "character.h"
47 #include "coding.h"
48 #include "termhooks.h"
49 #include "font.h"
50
51 #ifdef HAVE_X_WINDOWS
52 #include "xterm.h"
53 #include <sys/types.h>
54 #include <sys/stat.h>
55
56 #define COLOR_TABLE_SUPPORT 1
57
58 typedef struct x_bitmap_record Bitmap_Record;
59 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
60 #define NO_PIXMAP None
61
62 #define RGB_PIXEL_COLOR unsigned long
63
64 #define PIX_MASK_RETAIN 0
65 #define PIX_MASK_DRAW 1
66 #endif /* HAVE_X_WINDOWS */
67
68
69 #ifdef HAVE_NTGUI
70 #include "w32.h"
71 #include "w32term.h"
72
73 /* W32_TODO : Color tables on W32. */
74 #undef COLOR_TABLE_SUPPORT
75
76 typedef struct w32_bitmap_record Bitmap_Record;
77 #define GET_PIXEL(ximg, x, y) GetPixel(ximg, x, y)
78 #define NO_PIXMAP 0
79
80 #define RGB_PIXEL_COLOR COLORREF
81
82 #define PIX_MASK_RETAIN 0
83 #define PIX_MASK_DRAW 1
84
85 #define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
86 #define x_defined_color w32_defined_color
87 #define DefaultDepthOfScreen(screen) (one_w32_display_info.n_cbits)
88
89 /* Functions from w32term.c that depend on XColor (so can't go in w32term.h
90 without modifying lots of files). */
91 extern void x_query_colors (struct frame *f, XColor *colors, int ncolors);
92 extern void x_query_color (struct frame *f, XColor *color);
93
94 /* Version of libpng that we were compiled with, or -1 if no PNG
95 support was compiled in. This is tested by w32-win.el to correctly
96 set up the alist used to search for PNG libraries. */
97 Lisp_Object Qlibpng_version;
98 #endif /* HAVE_NTGUI */
99
100 #ifdef HAVE_NS
101 #include "nsterm.h"
102 #include <sys/types.h>
103 #include <sys/stat.h>
104
105 #undef COLOR_TABLE_SUPPORT
106
107 typedef struct ns_bitmap_record Bitmap_Record;
108
109 #define GET_PIXEL(ximg, x, y) XGetPixel(ximg, x, y)
110 #define NO_PIXMAP 0
111
112 #define RGB_PIXEL_COLOR unsigned long
113 #define ZPixmap 0
114
115 #define PIX_MASK_RETAIN 0
116 #define PIX_MASK_DRAW 1
117
118 #define FRAME_X_VISUAL FRAME_NS_DISPLAY_INFO(f)->visual
119 #define x_defined_color(f, name, color_def, alloc) \
120 ns_defined_color (f, name, color_def, alloc, 0)
121 #define FRAME_X_SCREEN(f) 0
122 #define DefaultDepthOfScreen(screen) x_display_list->n_planes
123 #endif /* HAVE_NS */
124
125
126 /* The symbol `postscript' identifying images of this type. */
127
128 static Lisp_Object Qpostscript;
129
130 static void x_disable_image (struct frame *, struct image *);
131 static void x_edge_detection (struct frame *, struct image *, Lisp_Object,
132 Lisp_Object);
133
134 static void init_color_table (void);
135 static unsigned long lookup_rgb_color (struct frame *f, int r, int g, int b);
136 #ifdef COLOR_TABLE_SUPPORT
137 static void free_color_table (void);
138 static unsigned long *colors_in_color_table (int *n);
139 static unsigned long lookup_pixel_color (struct frame *f, unsigned long p);
140 #endif
141 static Lisp_Object Finit_image_library (Lisp_Object, Lisp_Object);
142
143 /* Code to deal with bitmaps. Bitmaps are referenced by their bitmap
144 id, which is just an int that this section returns. Bitmaps are
145 reference counted so they can be shared among frames.
146
147 Bitmap indices are guaranteed to be > 0, so a negative number can
148 be used to indicate no bitmap.
149
150 If you use x_create_bitmap_from_data, then you must keep track of
151 the bitmaps yourself. That is, creating a bitmap from the same
152 data more than once will not be caught. */
153
154 #ifdef HAVE_NS
155 XImagePtr
156 XGetImage (Display *display, Pixmap pixmap, int x, int y,
157 unsigned int width, unsigned int height,
158 unsigned long plane_mask, int format)
159 {
160 /* TODO: not sure what this function is supposed to do.. */
161 ns_retain_object (pixmap);
162 return pixmap;
163 }
164
165 /* use with imgs created by ns_image_for_XPM */
166 unsigned long
167 XGetPixel (XImagePtr ximage, int x, int y)
168 {
169 return ns_get_pixel (ximage, x, y);
170 }
171
172 /* use with imgs created by ns_image_for_XPM; alpha set to 1;
173 pixel is assumed to be in form RGB */
174 void
175 XPutPixel (XImagePtr ximage, int x, int y, unsigned long pixel)
176 {
177 ns_put_pixel (ximage, x, y, pixel);
178 }
179 #endif /* HAVE_NS */
180
181
182 /* Functions to access the contents of a bitmap, given an id. */
183
184 int
185 x_bitmap_height (FRAME_PTR f, ptrdiff_t id)
186 {
187 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].height;
188 }
189
190 int
191 x_bitmap_width (FRAME_PTR f, ptrdiff_t id)
192 {
193 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].width;
194 }
195
196 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
197 int
198 x_bitmap_pixmap (FRAME_PTR f, ptrdiff_t id)
199 {
200 return (int) FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].pixmap;
201 }
202 #endif
203
204 #ifdef HAVE_X_WINDOWS
205 int
206 x_bitmap_mask (FRAME_PTR f, ptrdiff_t id)
207 {
208 return FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].mask;
209 }
210 #endif
211
212 /* Allocate a new bitmap record. Returns index of new record. */
213
214 static ptrdiff_t
215 x_allocate_bitmap_record (FRAME_PTR f)
216 {
217 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
218 ptrdiff_t i;
219
220 if (dpyinfo->bitmaps == NULL)
221 {
222 dpyinfo->bitmaps_size = 10;
223 dpyinfo->bitmaps
224 = (Bitmap_Record *) xmalloc (dpyinfo->bitmaps_size * sizeof (Bitmap_Record));
225 dpyinfo->bitmaps_last = 1;
226 return 1;
227 }
228
229 if (dpyinfo->bitmaps_last < dpyinfo->bitmaps_size)
230 return ++dpyinfo->bitmaps_last;
231
232 for (i = 0; i < dpyinfo->bitmaps_size; ++i)
233 if (dpyinfo->bitmaps[i].refcount == 0)
234 return i + 1;
235
236 if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof (Bitmap_Record) / 2
237 < dpyinfo->bitmaps_size)
238 memory_full (SIZE_MAX);
239 dpyinfo->bitmaps_size *= 2;
240 dpyinfo->bitmaps
241 = (Bitmap_Record *) xrealloc (dpyinfo->bitmaps,
242 dpyinfo->bitmaps_size * sizeof (Bitmap_Record));
243 return ++dpyinfo->bitmaps_last;
244 }
245
246 /* Add one reference to the reference count of the bitmap with id ID. */
247
248 void
249 x_reference_bitmap (FRAME_PTR f, int id)
250 {
251 ++FRAME_X_DISPLAY_INFO (f)->bitmaps[id - 1].refcount;
252 }
253
254 /* Create a bitmap for frame F from a HEIGHT x WIDTH array of bits at BITS. */
255
256 ptrdiff_t
257 x_create_bitmap_from_data (struct frame *f, char *bits, unsigned int width, unsigned int height)
258 {
259 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
260 ptrdiff_t id;
261
262 #ifdef HAVE_X_WINDOWS
263 Pixmap bitmap;
264 bitmap = XCreateBitmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
265 bits, width, height);
266 if (! bitmap)
267 return -1;
268 #endif /* HAVE_X_WINDOWS */
269
270 #ifdef HAVE_NTGUI
271 Pixmap bitmap;
272 bitmap = CreateBitmap (width, height,
273 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_planes,
274 FRAME_X_DISPLAY_INFO (XFRAME (frame))->n_cbits,
275 bits);
276 if (! bitmap)
277 return -1;
278 #endif /* HAVE_NTGUI */
279
280 #ifdef HAVE_NS
281 void *bitmap = ns_image_from_XBM (bits, width, height);
282 if (!bitmap)
283 return -1;
284 #endif
285
286 id = x_allocate_bitmap_record (f);
287
288 #ifdef HAVE_NS
289 dpyinfo->bitmaps[id - 1].img = bitmap;
290 dpyinfo->bitmaps[id - 1].depth = 1;
291 #endif
292
293 dpyinfo->bitmaps[id - 1].file = NULL;
294 dpyinfo->bitmaps[id - 1].height = height;
295 dpyinfo->bitmaps[id - 1].width = width;
296 dpyinfo->bitmaps[id - 1].refcount = 1;
297
298 #ifdef HAVE_X_WINDOWS
299 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
300 dpyinfo->bitmaps[id - 1].have_mask = 0;
301 dpyinfo->bitmaps[id - 1].depth = 1;
302 #endif /* HAVE_X_WINDOWS */
303
304 #ifdef HAVE_NTGUI
305 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
306 dpyinfo->bitmaps[id - 1].hinst = NULL;
307 dpyinfo->bitmaps[id - 1].depth = 1;
308 #endif /* HAVE_NTGUI */
309
310 return id;
311 }
312
313 /* Create bitmap from file FILE for frame F. */
314
315 ptrdiff_t
316 x_create_bitmap_from_file (struct frame *f, Lisp_Object file)
317 {
318 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
319
320 #ifdef HAVE_NTGUI
321 return -1; /* W32_TODO : bitmap support */
322 #endif /* HAVE_NTGUI */
323
324 #ifdef HAVE_NS
325 ptrdiff_t id;
326 void *bitmap = ns_image_from_file (file);
327
328 if (!bitmap)
329 return -1;
330
331
332 id = x_allocate_bitmap_record (f);
333 dpyinfo->bitmaps[id - 1].img = bitmap;
334 dpyinfo->bitmaps[id - 1].refcount = 1;
335 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (SBYTES (file) + 1);
336 dpyinfo->bitmaps[id - 1].depth = 1;
337 dpyinfo->bitmaps[id - 1].height = ns_image_width (bitmap);
338 dpyinfo->bitmaps[id - 1].width = ns_image_height (bitmap);
339 strcpy (dpyinfo->bitmaps[id - 1].file, SDATA (file));
340 return id;
341 #endif
342
343 #ifdef HAVE_X_WINDOWS
344 unsigned int width, height;
345 Pixmap bitmap;
346 int xhot, yhot, result;
347 ptrdiff_t id;
348 Lisp_Object found;
349 int fd;
350 char *filename;
351
352 /* Look for an existing bitmap with the same name. */
353 for (id = 0; id < dpyinfo->bitmaps_last; ++id)
354 {
355 if (dpyinfo->bitmaps[id].refcount
356 && dpyinfo->bitmaps[id].file
357 && !strcmp (dpyinfo->bitmaps[id].file, SSDATA (file)))
358 {
359 ++dpyinfo->bitmaps[id].refcount;
360 return id + 1;
361 }
362 }
363
364 /* Search bitmap-file-path for the file, if appropriate. */
365 fd = openp (Vx_bitmap_file_path, file, Qnil, &found, Qnil);
366 if (fd < 0)
367 return -1;
368 emacs_close (fd);
369
370 filename = SSDATA (found);
371
372 result = XReadBitmapFile (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
373 filename, &width, &height, &bitmap, &xhot, &yhot);
374 if (result != BitmapSuccess)
375 return -1;
376
377 id = x_allocate_bitmap_record (f);
378 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
379 dpyinfo->bitmaps[id - 1].have_mask = 0;
380 dpyinfo->bitmaps[id - 1].refcount = 1;
381 dpyinfo->bitmaps[id - 1].file = (char *) xmalloc (SBYTES (file) + 1);
382 dpyinfo->bitmaps[id - 1].depth = 1;
383 dpyinfo->bitmaps[id - 1].height = height;
384 dpyinfo->bitmaps[id - 1].width = width;
385 strcpy (dpyinfo->bitmaps[id - 1].file, SSDATA (file));
386
387 return id;
388 #endif /* HAVE_X_WINDOWS */
389 }
390
391 /* Free bitmap B. */
392
393 static void
394 free_bitmap_record (Display_Info *dpyinfo, Bitmap_Record *bm)
395 {
396 #ifdef HAVE_X_WINDOWS
397 XFreePixmap (dpyinfo->display, bm->pixmap);
398 if (bm->have_mask)
399 XFreePixmap (dpyinfo->display, bm->mask);
400 #endif /* HAVE_X_WINDOWS */
401
402 #ifdef HAVE_NTGUI
403 DeleteObject (bm->pixmap);
404 #endif /* HAVE_NTGUI */
405
406 #ifdef HAVE_NS
407 ns_release_object (bm->img);
408 #endif
409
410 if (bm->file)
411 {
412 xfree (bm->file);
413 bm->file = NULL;
414 }
415 }
416
417 /* Remove reference to bitmap with id number ID. */
418
419 void
420 x_destroy_bitmap (FRAME_PTR f, ptrdiff_t id)
421 {
422 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
423
424 if (id > 0)
425 {
426 Bitmap_Record *bm = &dpyinfo->bitmaps[id - 1];
427
428 if (--bm->refcount == 0)
429 {
430 BLOCK_INPUT;
431 free_bitmap_record (dpyinfo, bm);
432 UNBLOCK_INPUT;
433 }
434 }
435 }
436
437 /* Free all the bitmaps for the display specified by DPYINFO. */
438
439 void
440 x_destroy_all_bitmaps (Display_Info *dpyinfo)
441 {
442 ptrdiff_t i;
443 Bitmap_Record *bm = dpyinfo->bitmaps;
444
445 for (i = 0; i < dpyinfo->bitmaps_last; i++, bm++)
446 if (bm->refcount > 0)
447 free_bitmap_record (dpyinfo, bm);
448
449 dpyinfo->bitmaps_last = 0;
450 }
451
452
453 #ifdef HAVE_X_WINDOWS
454
455 /* Useful functions defined in the section
456 `Image type independent image structures' below. */
457
458 static unsigned long four_corners_best (XImagePtr ximg,
459 int *corners,
460 unsigned long width,
461 unsigned long height);
462
463 static int x_create_x_image_and_pixmap (struct frame *f, int width, int height,
464 int depth, XImagePtr *ximg,
465 Pixmap *pixmap);
466
467 static void x_destroy_x_image (XImagePtr ximg);
468
469
470 /* Create a mask of a bitmap. Note is this not a perfect mask.
471 It's nicer with some borders in this context */
472
473 int
474 x_create_bitmap_mask (struct frame *f, ptrdiff_t id)
475 {
476 Pixmap pixmap, mask;
477 XImagePtr ximg, mask_img;
478 unsigned long width, height;
479 int result;
480 unsigned long bg;
481 unsigned long x, y, xp, xm, yp, ym;
482 GC gc;
483
484 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
485
486 if (!(id > 0))
487 return -1;
488
489 pixmap = x_bitmap_pixmap (f, id);
490 width = x_bitmap_width (f, id);
491 height = x_bitmap_height (f, id);
492
493 BLOCK_INPUT;
494 ximg = XGetImage (FRAME_X_DISPLAY (f), pixmap, 0, 0, width, height,
495 ~0, ZPixmap);
496
497 if (!ximg)
498 {
499 UNBLOCK_INPUT;
500 return -1;
501 }
502
503 result = x_create_x_image_and_pixmap (f, width, height, 1, &mask_img, &mask);
504
505 UNBLOCK_INPUT;
506 if (!result)
507 {
508 XDestroyImage (ximg);
509 return -1;
510 }
511
512 bg = four_corners_best (ximg, NULL, width, height);
513
514 for (y = 0; y < ximg->height; ++y)
515 {
516 for (x = 0; x < ximg->width; ++x)
517 {
518 xp = x != ximg->width - 1 ? x + 1 : 0;
519 xm = x != 0 ? x - 1 : ximg->width - 1;
520 yp = y != ximg->height - 1 ? y + 1 : 0;
521 ym = y != 0 ? y - 1 : ximg->height - 1;
522 if (XGetPixel (ximg, x, y) == bg
523 && XGetPixel (ximg, x, yp) == bg
524 && XGetPixel (ximg, x, ym) == bg
525 && XGetPixel (ximg, xp, y) == bg
526 && XGetPixel (ximg, xp, yp) == bg
527 && XGetPixel (ximg, xp, ym) == bg
528 && XGetPixel (ximg, xm, y) == bg
529 && XGetPixel (ximg, xm, yp) == bg
530 && XGetPixel (ximg, xm, ym) == bg)
531 XPutPixel (mask_img, x, y, 0);
532 else
533 XPutPixel (mask_img, x, y, 1);
534 }
535 }
536
537 xassert (interrupt_input_blocked);
538 gc = XCreateGC (FRAME_X_DISPLAY (f), mask, 0, NULL);
539 XPutImage (FRAME_X_DISPLAY (f), mask, gc, mask_img, 0, 0, 0, 0,
540 width, height);
541 XFreeGC (FRAME_X_DISPLAY (f), gc);
542
543 dpyinfo->bitmaps[id - 1].have_mask = 1;
544 dpyinfo->bitmaps[id - 1].mask = mask;
545
546 XDestroyImage (ximg);
547 x_destroy_x_image (mask_img);
548
549 return 0;
550 }
551
552 #endif /* HAVE_X_WINDOWS */
553
554
555 /***********************************************************************
556 Image types
557 ***********************************************************************/
558
559 /* List of supported image types. Use define_image_type to add new
560 types. Use lookup_image_type to find a type for a given symbol. */
561
562 static struct image_type *image_types;
563
564 /* The symbol `xbm' which is used as the type symbol for XBM images. */
565
566 static Lisp_Object Qxbm;
567
568 /* Keywords. */
569
570 Lisp_Object QCascent, QCmargin, QCrelief;
571 Lisp_Object QCconversion;
572 static Lisp_Object QCheuristic_mask;
573 static Lisp_Object QCcolor_symbols;
574 static Lisp_Object QCindex, QCmatrix, QCcolor_adjustment, QCmask, QCgeometry;
575 static Lisp_Object QCcrop, QCrotation;
576
577 /* Other symbols. */
578
579 static Lisp_Object Qcount, Qextension_data, Qdelay;
580 static Lisp_Object Qlaplace, Qemboss, Qedge_detection, Qheuristic;
581
582 /* Function prototypes. */
583
584 static Lisp_Object define_image_type (struct image_type *type, int loaded);
585 static struct image_type *lookup_image_type (Lisp_Object symbol);
586 static void image_error (const char *format, Lisp_Object, Lisp_Object);
587 static void x_laplace (struct frame *, struct image *);
588 static void x_emboss (struct frame *, struct image *);
589 static int x_build_heuristic_mask (struct frame *, struct image *,
590 Lisp_Object);
591 #ifdef HAVE_NTGUI
592 #define CACHE_IMAGE_TYPE(type, status) \
593 do { Vlibrary_cache = Fcons (Fcons (type, status), Vlibrary_cache); } while (0)
594 #else
595 #define CACHE_IMAGE_TYPE(type, status)
596 #endif
597
598 #define ADD_IMAGE_TYPE(type) \
599 do { Vimage_types = Fcons (type, Vimage_types); } while (0)
600
601 /* Define a new image type from TYPE. This adds a copy of TYPE to
602 image_types and caches the loading status of TYPE. */
603
604 static Lisp_Object
605 define_image_type (struct image_type *type, int loaded)
606 {
607 Lisp_Object success;
608
609 if (!loaded)
610 success = Qnil;
611 else
612 {
613 /* Make a copy of TYPE to avoid a bus error in a dumped Emacs.
614 The initialized data segment is read-only. */
615 struct image_type *p = (struct image_type *) xmalloc (sizeof *p);
616 memcpy (p, type, sizeof *p);
617 p->next = image_types;
618 image_types = p;
619 success = Qt;
620 }
621
622 CACHE_IMAGE_TYPE (*type->type, success);
623 return success;
624 }
625
626
627 /* Look up image type SYMBOL, and return a pointer to its image_type
628 structure. Value is null if SYMBOL is not a known image type. */
629
630 static inline struct image_type *
631 lookup_image_type (Lisp_Object symbol)
632 {
633 struct image_type *type;
634
635 /* We must initialize the image-type if it hasn't been already. */
636 if (NILP (Finit_image_library (symbol, Vdynamic_library_alist)))
637 return 0; /* unimplemented */
638
639 for (type = image_types; type; type = type->next)
640 if (EQ (symbol, *type->type))
641 break;
642
643 return type;
644 }
645
646
647 /* Value is non-zero if OBJECT is a valid Lisp image specification. A
648 valid image specification is a list whose car is the symbol
649 `image', and whose rest is a property list. The property list must
650 contain a value for key `:type'. That value must be the name of a
651 supported image type. The rest of the property list depends on the
652 image type. */
653
654 int
655 valid_image_p (Lisp_Object object)
656 {
657 int valid_p = 0;
658
659 if (IMAGEP (object))
660 {
661 Lisp_Object tem;
662
663 for (tem = XCDR (object); CONSP (tem); tem = XCDR (tem))
664 if (EQ (XCAR (tem), QCtype))
665 {
666 tem = XCDR (tem);
667 if (CONSP (tem) && SYMBOLP (XCAR (tem)))
668 {
669 struct image_type *type;
670 type = lookup_image_type (XCAR (tem));
671 if (type)
672 valid_p = type->valid_p (object);
673 }
674
675 break;
676 }
677 }
678
679 return valid_p;
680 }
681
682
683 /* Log error message with format string FORMAT and argument ARG.
684 Signaling an error, e.g. when an image cannot be loaded, is not a
685 good idea because this would interrupt redisplay, and the error
686 message display would lead to another redisplay. This function
687 therefore simply displays a message. */
688
689 static void
690 image_error (const char *format, Lisp_Object arg1, Lisp_Object arg2)
691 {
692 add_to_log (format, arg1, arg2);
693 }
694
695
696 \f
697 /***********************************************************************
698 Image specifications
699 ***********************************************************************/
700
701 enum image_value_type
702 {
703 IMAGE_DONT_CHECK_VALUE_TYPE,
704 IMAGE_STRING_VALUE,
705 IMAGE_STRING_OR_NIL_VALUE,
706 IMAGE_SYMBOL_VALUE,
707 IMAGE_POSITIVE_INTEGER_VALUE,
708 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
709 IMAGE_NON_NEGATIVE_INTEGER_VALUE,
710 IMAGE_ASCENT_VALUE,
711 IMAGE_INTEGER_VALUE,
712 IMAGE_FUNCTION_VALUE,
713 IMAGE_NUMBER_VALUE,
714 IMAGE_BOOL_VALUE
715 };
716
717 /* Structure used when parsing image specifications. */
718
719 struct image_keyword
720 {
721 /* Name of keyword. */
722 const char *name;
723
724 /* The type of value allowed. */
725 enum image_value_type type;
726
727 /* Non-zero means key must be present. */
728 int mandatory_p;
729
730 /* Used to recognize duplicate keywords in a property list. */
731 int count;
732
733 /* The value that was found. */
734 Lisp_Object value;
735 };
736
737
738 static int parse_image_spec (Lisp_Object, struct image_keyword *,
739 int, Lisp_Object);
740 static Lisp_Object image_spec_value (Lisp_Object, Lisp_Object, int *);
741
742
743 /* Parse image spec SPEC according to KEYWORDS. A valid image spec
744 has the format (image KEYWORD VALUE ...). One of the keyword/
745 value pairs must be `:type TYPE'. KEYWORDS is a vector of
746 image_keywords structures of size NKEYWORDS describing other
747 allowed keyword/value pairs. Value is non-zero if SPEC is valid. */
748
749 static int
750 parse_image_spec (Lisp_Object spec, struct image_keyword *keywords,
751 int nkeywords, Lisp_Object type)
752 {
753 int i;
754 Lisp_Object plist;
755
756 if (!IMAGEP (spec))
757 return 0;
758
759 plist = XCDR (spec);
760 while (CONSP (plist))
761 {
762 Lisp_Object key, value;
763
764 /* First element of a pair must be a symbol. */
765 key = XCAR (plist);
766 plist = XCDR (plist);
767 if (!SYMBOLP (key))
768 return 0;
769
770 /* There must follow a value. */
771 if (!CONSP (plist))
772 return 0;
773 value = XCAR (plist);
774 plist = XCDR (plist);
775
776 /* Find key in KEYWORDS. Error if not found. */
777 for (i = 0; i < nkeywords; ++i)
778 if (strcmp (keywords[i].name, SSDATA (SYMBOL_NAME (key))) == 0)
779 break;
780
781 if (i == nkeywords)
782 continue;
783
784 /* Record that we recognized the keyword. If a keywords
785 was found more than once, it's an error. */
786 keywords[i].value = value;
787 ++keywords[i].count;
788
789 if (keywords[i].count > 1)
790 return 0;
791
792 /* Check type of value against allowed type. */
793 switch (keywords[i].type)
794 {
795 case IMAGE_STRING_VALUE:
796 if (!STRINGP (value))
797 return 0;
798 break;
799
800 case IMAGE_STRING_OR_NIL_VALUE:
801 if (!STRINGP (value) && !NILP (value))
802 return 0;
803 break;
804
805 case IMAGE_SYMBOL_VALUE:
806 if (!SYMBOLP (value))
807 return 0;
808 break;
809
810 case IMAGE_POSITIVE_INTEGER_VALUE:
811 if (!INTEGERP (value) || XINT (value) <= 0)
812 return 0;
813 break;
814
815 case IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR:
816 if (INTEGERP (value) && XINT (value) >= 0)
817 break;
818 if (CONSP (value)
819 && INTEGERP (XCAR (value)) && INTEGERP (XCDR (value))
820 && XINT (XCAR (value)) >= 0 && XINT (XCDR (value)) >= 0)
821 break;
822 return 0;
823
824 case IMAGE_ASCENT_VALUE:
825 if (SYMBOLP (value) && EQ (value, Qcenter))
826 break;
827 else if (INTEGERP (value)
828 && XINT (value) >= 0
829 && XINT (value) <= 100)
830 break;
831 return 0;
832
833 case IMAGE_NON_NEGATIVE_INTEGER_VALUE:
834 if (!INTEGERP (value) || XINT (value) < 0)
835 return 0;
836 break;
837
838 case IMAGE_DONT_CHECK_VALUE_TYPE:
839 break;
840
841 case IMAGE_FUNCTION_VALUE:
842 value = indirect_function (value);
843 if (!NILP (Ffunctionp (value)))
844 break;
845 return 0;
846
847 case IMAGE_NUMBER_VALUE:
848 if (!INTEGERP (value) && !FLOATP (value))
849 return 0;
850 break;
851
852 case IMAGE_INTEGER_VALUE:
853 if (!INTEGERP (value))
854 return 0;
855 break;
856
857 case IMAGE_BOOL_VALUE:
858 if (!NILP (value) && !EQ (value, Qt))
859 return 0;
860 break;
861
862 default:
863 abort ();
864 break;
865 }
866
867 if (EQ (key, QCtype) && !EQ (type, value))
868 return 0;
869 }
870
871 /* Check that all mandatory fields are present. */
872 for (i = 0; i < nkeywords; ++i)
873 if (keywords[i].mandatory_p && keywords[i].count == 0)
874 return 0;
875
876 return NILP (plist);
877 }
878
879
880 /* Return the value of KEY in image specification SPEC. Value is nil
881 if KEY is not present in SPEC. if FOUND is not null, set *FOUND
882 to 1 if KEY was found in SPEC, set it to 0 otherwise. */
883
884 static Lisp_Object
885 image_spec_value (Lisp_Object spec, Lisp_Object key, int *found)
886 {
887 Lisp_Object tail;
888
889 xassert (valid_image_p (spec));
890
891 for (tail = XCDR (spec);
892 CONSP (tail) && CONSP (XCDR (tail));
893 tail = XCDR (XCDR (tail)))
894 {
895 if (EQ (XCAR (tail), key))
896 {
897 if (found)
898 *found = 1;
899 return XCAR (XCDR (tail));
900 }
901 }
902
903 if (found)
904 *found = 0;
905 return Qnil;
906 }
907
908
909 DEFUN ("image-size", Fimage_size, Simage_size, 1, 3, 0,
910 doc: /* Return the size of image SPEC as pair (WIDTH . HEIGHT).
911 PIXELS non-nil means return the size in pixels, otherwise return the
912 size in canonical character units.
913 FRAME is the frame on which the image will be displayed. FRAME nil
914 or omitted means use the selected frame. */)
915 (Lisp_Object spec, Lisp_Object pixels, Lisp_Object frame)
916 {
917 Lisp_Object size;
918
919 size = Qnil;
920 if (valid_image_p (spec))
921 {
922 struct frame *f = check_x_frame (frame);
923 int id = lookup_image (f, spec);
924 struct image *img = IMAGE_FROM_ID (f, id);
925 int width = img->width + 2 * img->hmargin;
926 int height = img->height + 2 * img->vmargin;
927
928 if (NILP (pixels))
929 size = Fcons (make_float ((double) width / FRAME_COLUMN_WIDTH (f)),
930 make_float ((double) height / FRAME_LINE_HEIGHT (f)));
931 else
932 size = Fcons (make_number (width), make_number (height));
933 }
934 else
935 error ("Invalid image specification");
936
937 return size;
938 }
939
940
941 DEFUN ("image-mask-p", Fimage_mask_p, Simage_mask_p, 1, 2, 0,
942 doc: /* Return t if image SPEC has a mask bitmap.
943 FRAME is the frame on which the image will be displayed. FRAME nil
944 or omitted means use the selected frame. */)
945 (Lisp_Object spec, Lisp_Object frame)
946 {
947 Lisp_Object mask;
948
949 mask = Qnil;
950 if (valid_image_p (spec))
951 {
952 struct frame *f = check_x_frame (frame);
953 int id = lookup_image (f, spec);
954 struct image *img = IMAGE_FROM_ID (f, id);
955 if (img->mask)
956 mask = Qt;
957 }
958 else
959 error ("Invalid image specification");
960
961 return mask;
962 }
963
964 DEFUN ("image-metadata", Fimage_metadata, Simage_metadata, 1, 2, 0,
965 doc: /* Return metadata for image SPEC.
966 FRAME is the frame on which the image will be displayed. FRAME nil
967 or omitted means use the selected frame. */)
968 (Lisp_Object spec, Lisp_Object frame)
969 {
970 Lisp_Object ext;
971
972 ext = Qnil;
973 if (valid_image_p (spec))
974 {
975 struct frame *f = check_x_frame (frame);
976 int id = lookup_image (f, spec);
977 struct image *img = IMAGE_FROM_ID (f, id);
978 ext = img->lisp_data;
979 }
980
981 return ext;
982 }
983
984 \f
985 /***********************************************************************
986 Image type independent image structures
987 ***********************************************************************/
988
989 static void free_image (struct frame *f, struct image *img);
990 static int check_image_size (struct frame *f, int width, int height);
991
992 #define MAX_IMAGE_SIZE 6.0
993 /* Allocate and return a new image structure for image specification
994 SPEC. SPEC has a hash value of HASH. */
995
996 static struct image *
997 make_image (Lisp_Object spec, EMACS_UINT hash)
998 {
999 struct image *img = (struct image *) xmalloc (sizeof *img);
1000 Lisp_Object file = image_spec_value (spec, QCfile, NULL);
1001
1002 xassert (valid_image_p (spec));
1003 memset (img, 0, sizeof *img);
1004 img->dependencies = NILP (file) ? Qnil : list1 (file);
1005 img->type = lookup_image_type (image_spec_value (spec, QCtype, NULL));
1006 xassert (img->type != NULL);
1007 img->spec = spec;
1008 img->lisp_data = Qnil;
1009 img->ascent = DEFAULT_IMAGE_ASCENT;
1010 img->hash = hash;
1011 img->corners[BOT_CORNER] = -1; /* Full image */
1012 return img;
1013 }
1014
1015
1016 /* Free image IMG which was used on frame F, including its resources. */
1017
1018 static void
1019 free_image (struct frame *f, struct image *img)
1020 {
1021 if (img)
1022 {
1023 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1024
1025 /* Remove IMG from the hash table of its cache. */
1026 if (img->prev)
1027 img->prev->next = img->next;
1028 else
1029 c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next;
1030
1031 if (img->next)
1032 img->next->prev = img->prev;
1033
1034 c->images[img->id] = NULL;
1035
1036 /* Free resources, then free IMG. */
1037 img->type->free (f, img);
1038 xfree (img);
1039 }
1040 }
1041
1042 /* Return 1 if the given widths and heights are valid for display;
1043 otherwise, return 0. */
1044
1045 int
1046 check_image_size (struct frame *f, int width, int height)
1047 {
1048 int w, h;
1049
1050 if (width <= 0 || height <= 0)
1051 return 0;
1052
1053 if (INTEGERP (Vmax_image_size))
1054 w = h = XINT (Vmax_image_size);
1055 else if (FLOATP (Vmax_image_size))
1056 {
1057 if (f != NULL)
1058 {
1059 w = FRAME_PIXEL_WIDTH (f);
1060 h = FRAME_PIXEL_HEIGHT (f);
1061 }
1062 else
1063 w = h = 1024; /* Arbitrary size for unknown frame. */
1064 w = (int) (XFLOAT_DATA (Vmax_image_size) * w);
1065 h = (int) (XFLOAT_DATA (Vmax_image_size) * h);
1066 }
1067 else
1068 return 1;
1069
1070 return (width <= w && height <= h);
1071 }
1072
1073 /* Prepare image IMG for display on frame F. Must be called before
1074 drawing an image. */
1075
1076 void
1077 prepare_image_for_display (struct frame *f, struct image *img)
1078 {
1079 EMACS_TIME t;
1080
1081 /* We're about to display IMG, so set its timestamp to `now'. */
1082 EMACS_GET_TIME (t);
1083 img->timestamp = EMACS_SECS (t);
1084
1085 /* If IMG doesn't have a pixmap yet, load it now, using the image
1086 type dependent loader function. */
1087 if (img->pixmap == NO_PIXMAP && !img->load_failed_p)
1088 img->load_failed_p = img->type->load (f, img) == 0;
1089
1090 }
1091
1092
1093 /* Value is the number of pixels for the ascent of image IMG when
1094 drawn in face FACE. */
1095
1096 int
1097 image_ascent (struct image *img, struct face *face, struct glyph_slice *slice)
1098 {
1099 int height;
1100 int ascent;
1101
1102 if (slice->height == img->height)
1103 height = img->height + img->vmargin;
1104 else if (slice->y == 0)
1105 height = slice->height + img->vmargin;
1106 else
1107 height = slice->height;
1108
1109 if (img->ascent == CENTERED_IMAGE_ASCENT)
1110 {
1111 if (face->font)
1112 {
1113 #ifdef HAVE_NTGUI
1114 /* W32 specific version. Why?. ++kfs */
1115 ascent = height / 2 - (FONT_DESCENT (face->font)
1116 - FONT_BASE (face->font)) / 2;
1117 #else
1118 /* This expression is arranged so that if the image can't be
1119 exactly centered, it will be moved slightly up. This is
1120 because a typical font is `top-heavy' (due to the presence
1121 uppercase letters), so the image placement should err towards
1122 being top-heavy too. It also just generally looks better. */
1123 ascent = (height + FONT_BASE(face->font)
1124 - FONT_DESCENT(face->font) + 1) / 2;
1125 #endif /* HAVE_NTGUI */
1126 }
1127 else
1128 ascent = height / 2;
1129 }
1130 else
1131 ascent = (int) (height * img->ascent / 100.0);
1132
1133 return ascent;
1134 }
1135
1136 \f
1137 /* Image background colors. */
1138
1139 /* Find the "best" corner color of a bitmap.
1140 On W32, XIMG is assumed to a device context with the bitmap selected. */
1141
1142 static RGB_PIXEL_COLOR
1143 four_corners_best (XImagePtr_or_DC ximg, int *corners,
1144 unsigned long width, unsigned long height)
1145 {
1146 RGB_PIXEL_COLOR corner_pixels[4], best IF_LINT (= 0);
1147 int i, best_count;
1148
1149 if (corners && corners[BOT_CORNER] >= 0)
1150 {
1151 /* Get the colors at the corner_pixels of ximg. */
1152 corner_pixels[0] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[TOP_CORNER]);
1153 corner_pixels[1] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[TOP_CORNER]);
1154 corner_pixels[2] = GET_PIXEL (ximg, corners[RIGHT_CORNER] - 1, corners[BOT_CORNER] - 1);
1155 corner_pixels[3] = GET_PIXEL (ximg, corners[LEFT_CORNER], corners[BOT_CORNER] - 1);
1156 }
1157 else
1158 {
1159 /* Get the colors at the corner_pixels of ximg. */
1160 corner_pixels[0] = GET_PIXEL (ximg, 0, 0);
1161 corner_pixels[1] = GET_PIXEL (ximg, width - 1, 0);
1162 corner_pixels[2] = GET_PIXEL (ximg, width - 1, height - 1);
1163 corner_pixels[3] = GET_PIXEL (ximg, 0, height - 1);
1164 }
1165 /* Choose the most frequently found color as background. */
1166 for (i = best_count = 0; i < 4; ++i)
1167 {
1168 int j, n;
1169
1170 for (j = n = 0; j < 4; ++j)
1171 if (corner_pixels[i] == corner_pixels[j])
1172 ++n;
1173
1174 if (n > best_count)
1175 best = corner_pixels[i], best_count = n;
1176 }
1177
1178 return best;
1179 }
1180
1181 /* Portability macros */
1182
1183 #ifdef HAVE_NTGUI
1184
1185 #define Destroy_Image(img_dc, prev) \
1186 do { SelectObject (img_dc, prev); DeleteDC (img_dc); } while (0)
1187
1188 #define Free_Pixmap(display, pixmap) \
1189 DeleteObject (pixmap)
1190
1191 #elif defined (HAVE_NS)
1192
1193 #define Destroy_Image(ximg, dummy) \
1194 ns_release_object (ximg)
1195
1196 #define Free_Pixmap(display, pixmap) \
1197 ns_release_object (pixmap)
1198
1199 #else
1200
1201 #define Destroy_Image(ximg, dummy) \
1202 XDestroyImage (ximg)
1203
1204 #define Free_Pixmap(display, pixmap) \
1205 XFreePixmap (display, pixmap)
1206
1207 #endif /* !HAVE_NTGUI && !HAVE_NS */
1208
1209
1210 /* Return the `background' field of IMG. If IMG doesn't have one yet,
1211 it is guessed heuristically. If non-zero, XIMG is an existing
1212 XImage object (or device context with the image selected on W32) to
1213 use for the heuristic. */
1214
1215 RGB_PIXEL_COLOR
1216 image_background (struct image *img, struct frame *f, XImagePtr_or_DC ximg)
1217 {
1218 if (! img->background_valid)
1219 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1220 {
1221 int free_ximg = !ximg;
1222 #ifdef HAVE_NTGUI
1223 HGDIOBJ prev;
1224 #endif /* HAVE_NTGUI */
1225
1226 if (free_ximg)
1227 {
1228 #ifndef HAVE_NTGUI
1229 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
1230 0, 0, img->width, img->height, ~0, ZPixmap);
1231 #else
1232 HDC frame_dc = get_frame_dc (f);
1233 ximg = CreateCompatibleDC (frame_dc);
1234 release_frame_dc (f, frame_dc);
1235 prev = SelectObject (ximg, img->pixmap);
1236 #endif /* !HAVE_NTGUI */
1237 }
1238
1239 img->background = four_corners_best (ximg, img->corners, img->width, img->height);
1240
1241 if (free_ximg)
1242 Destroy_Image (ximg, prev);
1243
1244 img->background_valid = 1;
1245 }
1246
1247 return img->background;
1248 }
1249
1250 /* Return the `background_transparent' field of IMG. If IMG doesn't
1251 have one yet, it is guessed heuristically. If non-zero, MASK is an
1252 existing XImage object to use for the heuristic. */
1253
1254 int
1255 image_background_transparent (struct image *img, struct frame *f, XImagePtr_or_DC mask)
1256 {
1257 if (! img->background_transparent_valid)
1258 /* IMG doesn't have a background yet, try to guess a reasonable value. */
1259 {
1260 if (img->mask)
1261 {
1262 int free_mask = !mask;
1263 #ifdef HAVE_NTGUI
1264 HGDIOBJ prev;
1265 #endif /* HAVE_NTGUI */
1266
1267 if (free_mask)
1268 {
1269 #ifndef HAVE_NTGUI
1270 mask = XGetImage (FRAME_X_DISPLAY (f), img->mask,
1271 0, 0, img->width, img->height, ~0, ZPixmap);
1272 #else
1273 HDC frame_dc = get_frame_dc (f);
1274 mask = CreateCompatibleDC (frame_dc);
1275 release_frame_dc (f, frame_dc);
1276 prev = SelectObject (mask, img->mask);
1277 #endif /* HAVE_NTGUI */
1278 }
1279
1280 img->background_transparent
1281 = (four_corners_best (mask, img->corners, img->width, img->height) == PIX_MASK_RETAIN);
1282
1283 if (free_mask)
1284 Destroy_Image (mask, prev);
1285 }
1286 else
1287 img->background_transparent = 0;
1288
1289 img->background_transparent_valid = 1;
1290 }
1291
1292 return img->background_transparent;
1293 }
1294
1295 \f
1296 /***********************************************************************
1297 Helper functions for X image types
1298 ***********************************************************************/
1299
1300 static void x_clear_image_1 (struct frame *, struct image *, int,
1301 int, int);
1302 static void x_clear_image (struct frame *f, struct image *img);
1303 static unsigned long x_alloc_image_color (struct frame *f,
1304 struct image *img,
1305 Lisp_Object color_name,
1306 unsigned long dflt);
1307
1308
1309 /* Clear X resources of image IMG on frame F. PIXMAP_P non-zero means
1310 free the pixmap if any. MASK_P non-zero means clear the mask
1311 pixmap if any. COLORS_P non-zero means free colors allocated for
1312 the image, if any. */
1313
1314 static void
1315 x_clear_image_1 (struct frame *f, struct image *img, int pixmap_p, int mask_p,
1316 int colors_p)
1317 {
1318 if (pixmap_p && img->pixmap)
1319 {
1320 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
1321 img->pixmap = NO_PIXMAP;
1322 /* NOTE (HAVE_NS): background color is NOT an indexed color! */
1323 img->background_valid = 0;
1324 }
1325
1326 if (mask_p && img->mask)
1327 {
1328 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1329 img->mask = NO_PIXMAP;
1330 img->background_transparent_valid = 0;
1331 }
1332
1333 if (colors_p && img->ncolors)
1334 {
1335 /* W32_TODO: color table support. */
1336 #ifdef HAVE_X_WINDOWS
1337 x_free_colors (f, img->colors, img->ncolors);
1338 #endif /* HAVE_X_WINDOWS */
1339 xfree (img->colors);
1340 img->colors = NULL;
1341 img->ncolors = 0;
1342 }
1343
1344 }
1345
1346 /* Free X resources of image IMG which is used on frame F. */
1347
1348 static void
1349 x_clear_image (struct frame *f, struct image *img)
1350 {
1351 BLOCK_INPUT;
1352 x_clear_image_1 (f, img, 1, 1, 1);
1353 UNBLOCK_INPUT;
1354 }
1355
1356
1357 /* Allocate color COLOR_NAME for image IMG on frame F. If color
1358 cannot be allocated, use DFLT. Add a newly allocated color to
1359 IMG->colors, so that it can be freed again. Value is the pixel
1360 color. */
1361
1362 static unsigned long
1363 x_alloc_image_color (struct frame *f, struct image *img, Lisp_Object color_name,
1364 unsigned long dflt)
1365 {
1366 XColor color;
1367 unsigned long result;
1368
1369 xassert (STRINGP (color_name));
1370
1371 if (x_defined_color (f, SSDATA (color_name), &color, 1))
1372 {
1373 /* This isn't called frequently so we get away with simply
1374 reallocating the color vector to the needed size, here. */
1375 ++img->ncolors;
1376 img->colors =
1377 (unsigned long *) xrealloc (img->colors,
1378 img->ncolors * sizeof *img->colors);
1379 img->colors[img->ncolors - 1] = color.pixel;
1380 result = color.pixel;
1381 }
1382 else
1383 result = dflt;
1384
1385 return result;
1386 }
1387
1388
1389 \f
1390 /***********************************************************************
1391 Image Cache
1392 ***********************************************************************/
1393
1394 static void cache_image (struct frame *f, struct image *img);
1395 static void postprocess_image (struct frame *, struct image *);
1396
1397 /* Return a new, initialized image cache that is allocated from the
1398 heap. Call free_image_cache to free an image cache. */
1399
1400 struct image_cache *
1401 make_image_cache (void)
1402 {
1403 struct image_cache *c = (struct image_cache *) xmalloc (sizeof *c);
1404 int size;
1405
1406 memset (c, 0, sizeof *c);
1407 c->size = 50;
1408 c->images = (struct image **) xmalloc (c->size * sizeof *c->images);
1409 size = IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets;
1410 c->buckets = (struct image **) xmalloc (size);
1411 memset (c->buckets, 0, size);
1412 return c;
1413 }
1414
1415
1416 /* Find an image matching SPEC in the cache, and return it. If no
1417 image is found, return NULL. */
1418 static struct image *
1419 search_image_cache (struct frame *f, Lisp_Object spec, EMACS_UINT hash)
1420 {
1421 struct image *img;
1422 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1423 int i = hash % IMAGE_CACHE_BUCKETS_SIZE;
1424
1425 if (!c) return NULL;
1426
1427 /* If the image spec does not specify a background color, the cached
1428 image must have the same background color as the current frame.
1429 The foreground color must also match, for the sake of monochrome
1430 images.
1431
1432 In fact, we could ignore the foreground color matching condition
1433 for color images, or if the image spec specifies :foreground;
1434 similarly we could ignore the background color matching condition
1435 for formats that don't use transparency (such as jpeg), or if the
1436 image spec specifies :background. However, the extra memory
1437 usage is probably negligible in practice, so we don't bother. */
1438
1439 for (img = c->buckets[i]; img; img = img->next)
1440 if (img->hash == hash
1441 && !NILP (Fequal (img->spec, spec))
1442 && img->frame_foreground == FRAME_FOREGROUND_PIXEL (f)
1443 && img->frame_background == FRAME_BACKGROUND_PIXEL (f))
1444 break;
1445 return img;
1446 }
1447
1448
1449 /* Search frame F for an image with spec SPEC, and free it. */
1450
1451 static void
1452 uncache_image (struct frame *f, Lisp_Object spec)
1453 {
1454 struct image *img = search_image_cache (f, spec, sxhash (spec, 0));
1455 if (img)
1456 {
1457 free_image (f, img);
1458 /* As display glyphs may still be referring to the image ID, we
1459 must garbage the frame (Bug#6426). */
1460 SET_FRAME_GARBAGED (f);
1461 }
1462 }
1463
1464
1465 /* Free image cache of frame F. Be aware that X frames share images
1466 caches. */
1467
1468 void
1469 free_image_cache (struct frame *f)
1470 {
1471 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1472 if (c)
1473 {
1474 int i;
1475
1476 /* Cache should not be referenced by any frame when freed. */
1477 xassert (c->refcount == 0);
1478
1479 for (i = 0; i < c->used; ++i)
1480 free_image (f, c->images[i]);
1481 xfree (c->images);
1482 xfree (c->buckets);
1483 xfree (c);
1484 FRAME_IMAGE_CACHE (f) = NULL;
1485 }
1486 }
1487
1488
1489 /* Clear image cache of frame F. FILTER=t means free all images.
1490 FILTER=nil means clear only images that haven't been
1491 displayed for some time.
1492 Else, only free the images which have FILTER in their `dependencies'.
1493 Should be called from time to time to reduce the number of loaded images.
1494 If image-cache-eviction-delay is non-nil, this frees images in the cache
1495 which weren't displayed for at least that many seconds. */
1496
1497 static void
1498 clear_image_cache (struct frame *f, Lisp_Object filter)
1499 {
1500 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1501
1502 if (c)
1503 {
1504 int i, nfreed = 0;
1505
1506 /* Block input so that we won't be interrupted by a SIGIO
1507 while being in an inconsistent state. */
1508 BLOCK_INPUT;
1509
1510 if (!NILP (filter))
1511 {
1512 /* Filter image cache. */
1513 for (i = 0; i < c->used; ++i)
1514 {
1515 struct image *img = c->images[i];
1516 if (img && (EQ (Qt, filter)
1517 || !NILP (Fmember (filter, img->dependencies))))
1518 {
1519 free_image (f, img);
1520 ++nfreed;
1521 }
1522 }
1523 }
1524 else if (INTEGERP (Vimage_cache_eviction_delay))
1525 {
1526 /* Free cache based on timestamp. */
1527 EMACS_TIME t;
1528 time_t old;
1529 int delay, nimages = 0;
1530
1531 for (i = 0; i < c->used; ++i)
1532 if (c->images[i])
1533 nimages++;
1534
1535 /* If the number of cached images has grown unusually large,
1536 decrease the cache eviction delay (Bug#6230). */
1537 delay = XFASTINT (Vimage_cache_eviction_delay);
1538 if (nimages > 40)
1539 delay = max (1, 1600 * delay / (nimages*nimages));
1540
1541 EMACS_GET_TIME (t);
1542 old = EMACS_SECS (t) - delay;
1543
1544 for (i = 0; i < c->used; ++i)
1545 {
1546 struct image *img = c->images[i];
1547 if (img && img->timestamp < old)
1548 {
1549 free_image (f, img);
1550 ++nfreed;
1551 }
1552 }
1553 }
1554
1555 /* We may be clearing the image cache because, for example,
1556 Emacs was iconified for a longer period of time. In that
1557 case, current matrices may still contain references to
1558 images freed above. So, clear these matrices. */
1559 if (nfreed)
1560 {
1561 Lisp_Object tail, frame;
1562
1563 FOR_EACH_FRAME (tail, frame)
1564 {
1565 struct frame *fr = XFRAME (frame);
1566 if (FRAME_IMAGE_CACHE (fr) == c)
1567 clear_current_matrices (fr);
1568 }
1569
1570 ++windows_or_buffers_changed;
1571 }
1572
1573 UNBLOCK_INPUT;
1574 }
1575 }
1576
1577 void
1578 clear_image_caches (Lisp_Object filter)
1579 {
1580 /* FIXME: We want to do
1581 * struct terminal *t;
1582 * for (t = terminal_list; t; t = t->next_terminal)
1583 * clear_image_cache (t, filter); */
1584 Lisp_Object tail, frame;
1585 FOR_EACH_FRAME (tail, frame)
1586 if (FRAME_WINDOW_P (XFRAME (frame)))
1587 clear_image_cache (XFRAME (frame), filter);
1588 }
1589
1590 DEFUN ("clear-image-cache", Fclear_image_cache, Sclear_image_cache,
1591 0, 1, 0,
1592 doc: /* Clear the image cache.
1593 FILTER nil or a frame means clear all images in the selected frame.
1594 FILTER t means clear the image caches of all frames.
1595 Anything else, means only clear those images which refer to FILTER,
1596 which is then usually a filename. */)
1597 (Lisp_Object filter)
1598 {
1599 if (!(EQ (filter, Qnil) || FRAMEP (filter)))
1600 clear_image_caches (filter);
1601 else
1602 clear_image_cache (check_x_frame (filter), Qt);
1603
1604 return Qnil;
1605 }
1606
1607
1608 DEFUN ("image-flush", Fimage_flush, Simage_flush,
1609 1, 2, 0,
1610 doc: /* Fush the image with specification SPEC on frame FRAME.
1611 This removes the image from the Emacs image cache. If SPEC specifies
1612 an image file, the next redisplay of this image will read from the
1613 current contents of that file.
1614
1615 FRAME nil or omitted means use the selected frame.
1616 FRAME t means refresh the image on all frames. */)
1617 (Lisp_Object spec, Lisp_Object frame)
1618 {
1619 if (!valid_image_p (spec))
1620 error ("Invalid image specification");
1621
1622 if (EQ (frame, Qt))
1623 {
1624 Lisp_Object tail;
1625 FOR_EACH_FRAME (tail, frame)
1626 {
1627 struct frame *f = XFRAME (frame);
1628 if (FRAME_WINDOW_P (f))
1629 uncache_image (f, spec);
1630 }
1631 }
1632 else
1633 uncache_image (check_x_frame (frame), spec);
1634
1635 return Qnil;
1636 }
1637
1638
1639 /* Compute masks and transform image IMG on frame F, as specified
1640 by the image's specification, */
1641
1642 static void
1643 postprocess_image (struct frame *f, struct image *img)
1644 {
1645 /* Manipulation of the image's mask. */
1646 if (img->pixmap)
1647 {
1648 Lisp_Object conversion, spec;
1649 Lisp_Object mask;
1650
1651 spec = img->spec;
1652
1653 /* `:heuristic-mask t'
1654 `:mask heuristic'
1655 means build a mask heuristically.
1656 `:heuristic-mask (R G B)'
1657 `:mask (heuristic (R G B))'
1658 means build a mask from color (R G B) in the
1659 image.
1660 `:mask nil'
1661 means remove a mask, if any. */
1662
1663 mask = image_spec_value (spec, QCheuristic_mask, NULL);
1664 if (!NILP (mask))
1665 x_build_heuristic_mask (f, img, mask);
1666 else
1667 {
1668 int found_p;
1669
1670 mask = image_spec_value (spec, QCmask, &found_p);
1671
1672 if (EQ (mask, Qheuristic))
1673 x_build_heuristic_mask (f, img, Qt);
1674 else if (CONSP (mask)
1675 && EQ (XCAR (mask), Qheuristic))
1676 {
1677 if (CONSP (XCDR (mask)))
1678 x_build_heuristic_mask (f, img, XCAR (XCDR (mask)));
1679 else
1680 x_build_heuristic_mask (f, img, XCDR (mask));
1681 }
1682 else if (NILP (mask) && found_p && img->mask)
1683 {
1684 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
1685 img->mask = NO_PIXMAP;
1686 }
1687 }
1688
1689
1690 /* Should we apply an image transformation algorithm? */
1691 conversion = image_spec_value (spec, QCconversion, NULL);
1692 if (EQ (conversion, Qdisabled))
1693 x_disable_image (f, img);
1694 else if (EQ (conversion, Qlaplace))
1695 x_laplace (f, img);
1696 else if (EQ (conversion, Qemboss))
1697 x_emboss (f, img);
1698 else if (CONSP (conversion)
1699 && EQ (XCAR (conversion), Qedge_detection))
1700 {
1701 Lisp_Object tem;
1702 tem = XCDR (conversion);
1703 if (CONSP (tem))
1704 x_edge_detection (f, img,
1705 Fplist_get (tem, QCmatrix),
1706 Fplist_get (tem, QCcolor_adjustment));
1707 }
1708 }
1709 }
1710
1711
1712 /* Return the id of image with Lisp specification SPEC on frame F.
1713 SPEC must be a valid Lisp image specification (see valid_image_p). */
1714
1715 int
1716 lookup_image (struct frame *f, Lisp_Object spec)
1717 {
1718 struct image *img;
1719 EMACS_UINT hash;
1720 EMACS_TIME now;
1721
1722 /* F must be a window-system frame, and SPEC must be a valid image
1723 specification. */
1724 xassert (FRAME_WINDOW_P (f));
1725 xassert (valid_image_p (spec));
1726
1727 /* Look up SPEC in the hash table of the image cache. */
1728 hash = sxhash (spec, 0);
1729 img = search_image_cache (f, spec, hash);
1730 if (img && img->load_failed_p)
1731 {
1732 free_image (f, img);
1733 img = NULL;
1734 }
1735
1736 /* If not found, create a new image and cache it. */
1737 if (img == NULL)
1738 {
1739 BLOCK_INPUT;
1740 img = make_image (spec, hash);
1741 cache_image (f, img);
1742 img->load_failed_p = img->type->load (f, img) == 0;
1743 img->frame_foreground = FRAME_FOREGROUND_PIXEL (f);
1744 img->frame_background = FRAME_BACKGROUND_PIXEL (f);
1745
1746 /* If we can't load the image, and we don't have a width and
1747 height, use some arbitrary width and height so that we can
1748 draw a rectangle for it. */
1749 if (img->load_failed_p)
1750 {
1751 Lisp_Object value;
1752
1753 value = image_spec_value (spec, QCwidth, NULL);
1754 img->width = (INTEGERP (value)
1755 ? XFASTINT (value) : DEFAULT_IMAGE_WIDTH);
1756 value = image_spec_value (spec, QCheight, NULL);
1757 img->height = (INTEGERP (value)
1758 ? XFASTINT (value) : DEFAULT_IMAGE_HEIGHT);
1759 }
1760 else
1761 {
1762 /* Handle image type independent image attributes
1763 `:ascent ASCENT', `:margin MARGIN', `:relief RELIEF',
1764 `:background COLOR'. */
1765 Lisp_Object ascent, margin, relief, bg;
1766
1767 ascent = image_spec_value (spec, QCascent, NULL);
1768 if (INTEGERP (ascent))
1769 img->ascent = XFASTINT (ascent);
1770 else if (EQ (ascent, Qcenter))
1771 img->ascent = CENTERED_IMAGE_ASCENT;
1772
1773 margin = image_spec_value (spec, QCmargin, NULL);
1774 if (INTEGERP (margin) && XINT (margin) >= 0)
1775 img->vmargin = img->hmargin = XFASTINT (margin);
1776 else if (CONSP (margin) && INTEGERP (XCAR (margin))
1777 && INTEGERP (XCDR (margin)))
1778 {
1779 if (XINT (XCAR (margin)) > 0)
1780 img->hmargin = XFASTINT (XCAR (margin));
1781 if (XINT (XCDR (margin)) > 0)
1782 img->vmargin = XFASTINT (XCDR (margin));
1783 }
1784
1785 relief = image_spec_value (spec, QCrelief, NULL);
1786 if (INTEGERP (relief))
1787 {
1788 img->relief = XINT (relief);
1789 img->hmargin += eabs (img->relief);
1790 img->vmargin += eabs (img->relief);
1791 }
1792
1793 if (! img->background_valid)
1794 {
1795 bg = image_spec_value (img->spec, QCbackground, NULL);
1796 if (!NILP (bg))
1797 {
1798 img->background
1799 = x_alloc_image_color (f, img, bg,
1800 FRAME_BACKGROUND_PIXEL (f));
1801 img->background_valid = 1;
1802 }
1803 }
1804
1805 /* Do image transformations and compute masks, unless we
1806 don't have the image yet. */
1807 if (!EQ (*img->type->type, Qpostscript))
1808 postprocess_image (f, img);
1809 }
1810
1811 UNBLOCK_INPUT;
1812 }
1813
1814 /* We're using IMG, so set its timestamp to `now'. */
1815 EMACS_GET_TIME (now);
1816 img->timestamp = EMACS_SECS (now);
1817
1818 /* Value is the image id. */
1819 return img->id;
1820 }
1821
1822
1823 /* Cache image IMG in the image cache of frame F. */
1824
1825 static void
1826 cache_image (struct frame *f, struct image *img)
1827 {
1828 struct image_cache *c = FRAME_IMAGE_CACHE (f);
1829 int i;
1830
1831 /* Find a free slot in c->images. */
1832 for (i = 0; i < c->used; ++i)
1833 if (c->images[i] == NULL)
1834 break;
1835
1836 /* If no free slot found, maybe enlarge c->images. */
1837 if (i == c->used && c->used == c->size)
1838 {
1839 if (min (PTRDIFF_MAX, SIZE_MAX) / sizeof *c->images / 2 < c->size)
1840 memory_full (SIZE_MAX);
1841 c->size *= 2;
1842 c->images = (struct image **) xrealloc (c->images,
1843 c->size * sizeof *c->images);
1844 }
1845
1846 /* Add IMG to c->images, and assign IMG an id. */
1847 c->images[i] = img;
1848 img->id = i;
1849 if (i == c->used)
1850 ++c->used;
1851
1852 /* Add IMG to the cache's hash table. */
1853 i = img->hash % IMAGE_CACHE_BUCKETS_SIZE;
1854 img->next = c->buckets[i];
1855 if (img->next)
1856 img->next->prev = img;
1857 img->prev = NULL;
1858 c->buckets[i] = img;
1859 }
1860
1861
1862 /* Call FN on every image in the image cache of frame F. Used to mark
1863 Lisp Objects in the image cache. */
1864
1865 /* Mark Lisp objects in image IMG. */
1866
1867 static void
1868 mark_image (struct image *img)
1869 {
1870 mark_object (img->spec);
1871 mark_object (img->dependencies);
1872
1873 if (!NILP (img->lisp_data))
1874 mark_object (img->lisp_data);
1875 }
1876
1877
1878 void
1879 mark_image_cache (struct image_cache *c)
1880 {
1881 if (c)
1882 {
1883 int i;
1884 for (i = 0; i < c->used; ++i)
1885 if (c->images[i])
1886 mark_image (c->images[i]);
1887 }
1888 }
1889
1890
1891 \f
1892 /***********************************************************************
1893 X / NS / W32 support code
1894 ***********************************************************************/
1895
1896 #ifdef HAVE_NTGUI
1897
1898 /* Macro for defining functions that will be loaded from image DLLs. */
1899 #define DEF_IMGLIB_FN(rettype,func,args) static rettype (FAR CDECL *fn_##func)args
1900
1901 /* Macro for loading those image functions from the library. */
1902 #define LOAD_IMGLIB_FN(lib,func) { \
1903 fn_##func = (void *) GetProcAddress (lib, #func); \
1904 if (!fn_##func) return 0; \
1905 }
1906
1907 #endif /* HAVE_NTGUI */
1908
1909 static int x_create_x_image_and_pixmap (struct frame *, int, int, int,
1910 XImagePtr *, Pixmap *);
1911 static void x_destroy_x_image (XImagePtr);
1912 static void x_put_x_image (struct frame *, XImagePtr, Pixmap, int, int);
1913
1914
1915 /* Create an XImage and a pixmap of size WIDTH x HEIGHT for use on
1916 frame F. Set *XIMG and *PIXMAP to the XImage and Pixmap created.
1917 Set (*XIMG)->data to a raster of WIDTH x HEIGHT pixels allocated
1918 via xmalloc. Print error messages via image_error if an error
1919 occurs. Value is non-zero if successful.
1920
1921 On W32, a DEPTH of zero signifies a 24 bit image, otherwise DEPTH
1922 should indicate the bit depth of the image. */
1923
1924 static int
1925 x_create_x_image_and_pixmap (struct frame *f, int width, int height, int depth,
1926 XImagePtr *ximg, Pixmap *pixmap)
1927 {
1928 #ifdef HAVE_X_WINDOWS
1929 Display *display = FRAME_X_DISPLAY (f);
1930 Window window = FRAME_X_WINDOW (f);
1931 Screen *screen = FRAME_X_SCREEN (f);
1932
1933 xassert (interrupt_input_blocked);
1934
1935 if (depth <= 0)
1936 depth = DefaultDepthOfScreen (screen);
1937 *ximg = XCreateImage (display, DefaultVisualOfScreen (screen),
1938 depth, ZPixmap, 0, NULL, width, height,
1939 depth > 16 ? 32 : depth > 8 ? 16 : 8, 0);
1940 if (*ximg == NULL)
1941 {
1942 image_error ("Unable to allocate X image", Qnil, Qnil);
1943 return 0;
1944 }
1945
1946 /* Allocate image raster. */
1947 (*ximg)->data = (char *) xmalloc ((*ximg)->bytes_per_line * height);
1948
1949 /* Allocate a pixmap of the same size. */
1950 *pixmap = XCreatePixmap (display, window, width, height, depth);
1951 if (*pixmap == NO_PIXMAP)
1952 {
1953 x_destroy_x_image (*ximg);
1954 *ximg = NULL;
1955 image_error ("Unable to create X pixmap", Qnil, Qnil);
1956 return 0;
1957 }
1958
1959 return 1;
1960 #endif /* HAVE_X_WINDOWS */
1961
1962 #ifdef HAVE_NTGUI
1963
1964 BITMAPINFOHEADER *header;
1965 HDC hdc;
1966 int scanline_width_bits;
1967 int remainder;
1968 int palette_colors = 0;
1969
1970 if (depth == 0)
1971 depth = 24;
1972
1973 if (depth != 1 && depth != 4 && depth != 8
1974 && depth != 16 && depth != 24 && depth != 32)
1975 {
1976 image_error ("Invalid image bit depth specified", Qnil, Qnil);
1977 return 0;
1978 }
1979
1980 scanline_width_bits = width * depth;
1981 remainder = scanline_width_bits % 32;
1982
1983 if (remainder)
1984 scanline_width_bits += 32 - remainder;
1985
1986 /* Bitmaps with a depth less than 16 need a palette. */
1987 /* BITMAPINFO structure already contains the first RGBQUAD. */
1988 if (depth < 16)
1989 palette_colors = 1 << depth - 1;
1990
1991 *ximg = xmalloc (sizeof (XImage) + palette_colors * sizeof (RGBQUAD));
1992 if (*ximg == NULL)
1993 {
1994 image_error ("Unable to allocate memory for XImage", Qnil, Qnil);
1995 return 0;
1996 }
1997
1998 header = &(*ximg)->info.bmiHeader;
1999 memset (&(*ximg)->info, 0, sizeof (BITMAPINFO));
2000 header->biSize = sizeof (*header);
2001 header->biWidth = width;
2002 header->biHeight = -height; /* negative indicates a top-down bitmap. */
2003 header->biPlanes = 1;
2004 header->biBitCount = depth;
2005 header->biCompression = BI_RGB;
2006 header->biClrUsed = palette_colors;
2007
2008 /* TODO: fill in palette. */
2009 if (depth == 1)
2010 {
2011 (*ximg)->info.bmiColors[0].rgbBlue = 0;
2012 (*ximg)->info.bmiColors[0].rgbGreen = 0;
2013 (*ximg)->info.bmiColors[0].rgbRed = 0;
2014 (*ximg)->info.bmiColors[0].rgbReserved = 0;
2015 (*ximg)->info.bmiColors[1].rgbBlue = 255;
2016 (*ximg)->info.bmiColors[1].rgbGreen = 255;
2017 (*ximg)->info.bmiColors[1].rgbRed = 255;
2018 (*ximg)->info.bmiColors[1].rgbReserved = 0;
2019 }
2020
2021 hdc = get_frame_dc (f);
2022
2023 /* Create a DIBSection and raster array for the bitmap,
2024 and store its handle in *pixmap. */
2025 *pixmap = CreateDIBSection (hdc, &((*ximg)->info),
2026 (depth < 16) ? DIB_PAL_COLORS : DIB_RGB_COLORS,
2027 /* casting avoids a GCC warning */
2028 (void **)&((*ximg)->data), NULL, 0);
2029
2030 /* Realize display palette and garbage all frames. */
2031 release_frame_dc (f, hdc);
2032
2033 if (*pixmap == NULL)
2034 {
2035 DWORD err = GetLastError ();
2036 Lisp_Object errcode;
2037 /* All system errors are < 10000, so the following is safe. */
2038 XSETINT (errcode, (int) err);
2039 image_error ("Unable to create bitmap, error code %d", errcode, Qnil);
2040 x_destroy_x_image (*ximg);
2041 return 0;
2042 }
2043
2044 return 1;
2045
2046 #endif /* HAVE_NTGUI */
2047
2048 #ifdef HAVE_NS
2049 *pixmap = ns_image_for_XPM (width, height, depth);
2050 if (*pixmap == 0)
2051 {
2052 *ximg = NULL;
2053 image_error ("Unable to allocate NSImage for XPM pixmap", Qnil, Qnil);
2054 return 0;
2055 }
2056 *ximg = *pixmap;
2057 return 1;
2058 #endif
2059 }
2060
2061
2062 /* Destroy XImage XIMG. Free XIMG->data. */
2063
2064 static void
2065 x_destroy_x_image (XImagePtr ximg)
2066 {
2067 xassert (interrupt_input_blocked);
2068 if (ximg)
2069 {
2070 #ifdef HAVE_X_WINDOWS
2071 xfree (ximg->data);
2072 ximg->data = NULL;
2073 XDestroyImage (ximg);
2074 #endif /* HAVE_X_WINDOWS */
2075 #ifdef HAVE_NTGUI
2076 /* Data will be freed by DestroyObject. */
2077 ximg->data = NULL;
2078 xfree (ximg);
2079 #endif /* HAVE_NTGUI */
2080 #ifdef HAVE_NS
2081 ns_release_object (ximg);
2082 #endif /* HAVE_NS */
2083 }
2084 }
2085
2086
2087 /* Put XImage XIMG into pixmap PIXMAP on frame F. WIDTH and HEIGHT
2088 are width and height of both the image and pixmap. */
2089
2090 static void
2091 x_put_x_image (struct frame *f, XImagePtr ximg, Pixmap pixmap, int width, int height)
2092 {
2093 #ifdef HAVE_X_WINDOWS
2094 GC gc;
2095
2096 xassert (interrupt_input_blocked);
2097 gc = XCreateGC (FRAME_X_DISPLAY (f), pixmap, 0, NULL);
2098 XPutImage (FRAME_X_DISPLAY (f), pixmap, gc, ximg, 0, 0, 0, 0, width, height);
2099 XFreeGC (FRAME_X_DISPLAY (f), gc);
2100 #endif /* HAVE_X_WINDOWS */
2101
2102 #ifdef HAVE_NTGUI
2103 #if 0 /* I don't think this is necessary looking at where it is used. */
2104 HDC hdc = get_frame_dc (f);
2105 SetDIBits (hdc, pixmap, 0, height, ximg->data, &(ximg->info), DIB_RGB_COLORS);
2106 release_frame_dc (f, hdc);
2107 #endif
2108 #endif /* HAVE_NTGUI */
2109
2110 #ifdef HAVE_NS
2111 xassert (ximg == pixmap);
2112 ns_retain_object (ximg);
2113 #endif
2114 }
2115
2116 \f
2117 /***********************************************************************
2118 File Handling
2119 ***********************************************************************/
2120
2121 /* Find image file FILE. Look in data-directory/images, then
2122 x-bitmap-file-path. Value is the encoded full name of the file
2123 found, or nil if not found. */
2124
2125 Lisp_Object
2126 x_find_image_file (Lisp_Object file)
2127 {
2128 Lisp_Object file_found, search_path;
2129 int fd;
2130
2131 /* TODO I think this should use something like image-load-path
2132 instead. Unfortunately, that can contain non-string elements. */
2133 search_path = Fcons (Fexpand_file_name (build_string ("images"),
2134 Vdata_directory),
2135 Vx_bitmap_file_path);
2136
2137 /* Try to find FILE in data-directory/images, then x-bitmap-file-path. */
2138 fd = openp (search_path, file, Qnil, &file_found, Qnil);
2139
2140 if (fd == -1)
2141 file_found = Qnil;
2142 else
2143 {
2144 file_found = ENCODE_FILE (file_found);
2145 close (fd);
2146 }
2147
2148 return file_found;
2149 }
2150
2151
2152 /* Read FILE into memory. Value is a pointer to a buffer allocated
2153 with xmalloc holding FILE's contents. Value is null if an error
2154 occurred. *SIZE is set to the size of the file. */
2155
2156 static unsigned char *
2157 slurp_file (char *file, ptrdiff_t *size)
2158 {
2159 FILE *fp = NULL;
2160 unsigned char *buf = NULL;
2161 struct stat st;
2162
2163 if (stat (file, &st) == 0
2164 && (fp = fopen (file, "rb")) != NULL
2165 && 0 <= st.st_size && st.st_size <= min (PTRDIFF_MAX, SIZE_MAX)
2166 && (buf = (unsigned char *) xmalloc (st.st_size),
2167 fread (buf, 1, st.st_size, fp) == st.st_size))
2168 {
2169 *size = st.st_size;
2170 fclose (fp);
2171 }
2172 else
2173 {
2174 if (fp)
2175 fclose (fp);
2176 if (buf)
2177 {
2178 xfree (buf);
2179 buf = NULL;
2180 }
2181 }
2182
2183 return buf;
2184 }
2185
2186
2187 \f
2188 /***********************************************************************
2189 XBM images
2190 ***********************************************************************/
2191
2192 static int xbm_scan (unsigned char **, unsigned char *, char *, int *);
2193 static int xbm_load (struct frame *f, struct image *img);
2194 static int xbm_load_image (struct frame *f, struct image *img,
2195 unsigned char *, unsigned char *);
2196 static int xbm_image_p (Lisp_Object object);
2197 static int xbm_read_bitmap_data (struct frame *f,
2198 unsigned char *, unsigned char *,
2199 int *, int *, char **, int);
2200 static int xbm_file_p (Lisp_Object);
2201
2202
2203 /* Indices of image specification fields in xbm_format, below. */
2204
2205 enum xbm_keyword_index
2206 {
2207 XBM_TYPE,
2208 XBM_FILE,
2209 XBM_WIDTH,
2210 XBM_HEIGHT,
2211 XBM_DATA,
2212 XBM_FOREGROUND,
2213 XBM_BACKGROUND,
2214 XBM_ASCENT,
2215 XBM_MARGIN,
2216 XBM_RELIEF,
2217 XBM_ALGORITHM,
2218 XBM_HEURISTIC_MASK,
2219 XBM_MASK,
2220 XBM_LAST
2221 };
2222
2223 /* Vector of image_keyword structures describing the format
2224 of valid XBM image specifications. */
2225
2226 static const struct image_keyword xbm_format[XBM_LAST] =
2227 {
2228 {":type", IMAGE_SYMBOL_VALUE, 1},
2229 {":file", IMAGE_STRING_VALUE, 0},
2230 {":width", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2231 {":height", IMAGE_POSITIVE_INTEGER_VALUE, 0},
2232 {":data", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2233 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
2234 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
2235 {":ascent", IMAGE_ASCENT_VALUE, 0},
2236 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
2237 {":relief", IMAGE_INTEGER_VALUE, 0},
2238 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2239 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
2240 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
2241 };
2242
2243 /* Structure describing the image type XBM. */
2244
2245 static struct image_type xbm_type =
2246 {
2247 &Qxbm,
2248 xbm_image_p,
2249 xbm_load,
2250 x_clear_image,
2251 NULL
2252 };
2253
2254 /* Tokens returned from xbm_scan. */
2255
2256 enum xbm_token
2257 {
2258 XBM_TK_IDENT = 256,
2259 XBM_TK_NUMBER
2260 };
2261
2262
2263 /* Return non-zero if OBJECT is a valid XBM-type image specification.
2264 A valid specification is a list starting with the symbol `image'
2265 The rest of the list is a property list which must contain an
2266 entry `:type xbm..
2267
2268 If the specification specifies a file to load, it must contain
2269 an entry `:file FILENAME' where FILENAME is a string.
2270
2271 If the specification is for a bitmap loaded from memory it must
2272 contain `:width WIDTH', `:height HEIGHT', and `:data DATA', where
2273 WIDTH and HEIGHT are integers > 0. DATA may be:
2274
2275 1. a string large enough to hold the bitmap data, i.e. it must
2276 have a size >= (WIDTH + 7) / 8 * HEIGHT
2277
2278 2. a bool-vector of size >= WIDTH * HEIGHT
2279
2280 3. a vector of strings or bool-vectors, one for each line of the
2281 bitmap.
2282
2283 4. a string containing an in-memory XBM file. WIDTH and HEIGHT
2284 may not be specified in this case because they are defined in the
2285 XBM file.
2286
2287 Both the file and data forms may contain the additional entries
2288 `:background COLOR' and `:foreground COLOR'. If not present,
2289 foreground and background of the frame on which the image is
2290 displayed is used. */
2291
2292 static int
2293 xbm_image_p (Lisp_Object object)
2294 {
2295 struct image_keyword kw[XBM_LAST];
2296
2297 memcpy (kw, xbm_format, sizeof kw);
2298 if (!parse_image_spec (object, kw, XBM_LAST, Qxbm))
2299 return 0;
2300
2301 xassert (EQ (kw[XBM_TYPE].value, Qxbm));
2302
2303 if (kw[XBM_FILE].count)
2304 {
2305 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_DATA].count)
2306 return 0;
2307 }
2308 else if (kw[XBM_DATA].count && xbm_file_p (kw[XBM_DATA].value))
2309 {
2310 /* In-memory XBM file. */
2311 if (kw[XBM_WIDTH].count || kw[XBM_HEIGHT].count || kw[XBM_FILE].count)
2312 return 0;
2313 }
2314 else
2315 {
2316 Lisp_Object data;
2317 EMACS_INT width, height;
2318
2319 /* Entries for `:width', `:height' and `:data' must be present. */
2320 if (!kw[XBM_WIDTH].count
2321 || !kw[XBM_HEIGHT].count
2322 || !kw[XBM_DATA].count)
2323 return 0;
2324
2325 data = kw[XBM_DATA].value;
2326 width = XFASTINT (kw[XBM_WIDTH].value);
2327 height = XFASTINT (kw[XBM_HEIGHT].value);
2328
2329 /* Check type of data, and width and height against contents of
2330 data. */
2331 if (VECTORP (data))
2332 {
2333 EMACS_INT i;
2334
2335 /* Number of elements of the vector must be >= height. */
2336 if (ASIZE (data) < height)
2337 return 0;
2338
2339 /* Each string or bool-vector in data must be large enough
2340 for one line of the image. */
2341 for (i = 0; i < height; ++i)
2342 {
2343 Lisp_Object elt = XVECTOR (data)->contents[i];
2344
2345 if (STRINGP (elt))
2346 {
2347 if (SCHARS (elt)
2348 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR)
2349 return 0;
2350 }
2351 else if (BOOL_VECTOR_P (elt))
2352 {
2353 if (XBOOL_VECTOR (elt)->size < width)
2354 return 0;
2355 }
2356 else
2357 return 0;
2358 }
2359 }
2360 else if (STRINGP (data))
2361 {
2362 if (SCHARS (data)
2363 < (width + BITS_PER_CHAR - 1) / BITS_PER_CHAR * height)
2364 return 0;
2365 }
2366 else if (BOOL_VECTOR_P (data))
2367 {
2368 if (XBOOL_VECTOR (data)->size < width * height)
2369 return 0;
2370 }
2371 else
2372 return 0;
2373 }
2374
2375 return 1;
2376 }
2377
2378
2379 /* Scan a bitmap file. FP is the stream to read from. Value is
2380 either an enumerator from enum xbm_token, or a character for a
2381 single-character token, or 0 at end of file. If scanning an
2382 identifier, store the lexeme of the identifier in SVAL. If
2383 scanning a number, store its value in *IVAL. */
2384
2385 static int
2386 xbm_scan (unsigned char **s, unsigned char *end, char *sval, int *ival)
2387 {
2388 unsigned int c;
2389
2390 loop:
2391
2392 /* Skip white space. */
2393 while (*s < end && (c = *(*s)++, isspace (c)))
2394 ;
2395
2396 if (*s >= end)
2397 c = 0;
2398 else if (isdigit (c))
2399 {
2400 int value = 0, digit;
2401
2402 if (c == '0' && *s < end)
2403 {
2404 c = *(*s)++;
2405 if (c == 'x' || c == 'X')
2406 {
2407 while (*s < end)
2408 {
2409 c = *(*s)++;
2410 if (isdigit (c))
2411 digit = c - '0';
2412 else if (c >= 'a' && c <= 'f')
2413 digit = c - 'a' + 10;
2414 else if (c >= 'A' && c <= 'F')
2415 digit = c - 'A' + 10;
2416 else
2417 break;
2418 value = 16 * value + digit;
2419 }
2420 }
2421 else if (isdigit (c))
2422 {
2423 value = c - '0';
2424 while (*s < end
2425 && (c = *(*s)++, isdigit (c)))
2426 value = 8 * value + c - '0';
2427 }
2428 }
2429 else
2430 {
2431 value = c - '0';
2432 while (*s < end
2433 && (c = *(*s)++, isdigit (c)))
2434 value = 10 * value + c - '0';
2435 }
2436
2437 if (*s < end)
2438 *s = *s - 1;
2439 *ival = value;
2440 c = XBM_TK_NUMBER;
2441 }
2442 else if (isalpha (c) || c == '_')
2443 {
2444 *sval++ = c;
2445 while (*s < end
2446 && (c = *(*s)++, (isalnum (c) || c == '_')))
2447 *sval++ = c;
2448 *sval = 0;
2449 if (*s < end)
2450 *s = *s - 1;
2451 c = XBM_TK_IDENT;
2452 }
2453 else if (c == '/' && **s == '*')
2454 {
2455 /* C-style comment. */
2456 ++*s;
2457 while (**s && (**s != '*' || *(*s + 1) != '/'))
2458 ++*s;
2459 if (**s)
2460 {
2461 *s += 2;
2462 goto loop;
2463 }
2464 }
2465
2466 return c;
2467 }
2468
2469 #ifdef HAVE_NTGUI
2470
2471 /* Create a Windows bitmap from X bitmap data. */
2472 static HBITMAP
2473 w32_create_pixmap_from_bitmap_data (int width, int height, char *data)
2474 {
2475 static unsigned char swap_nibble[16]
2476 = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
2477 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
2478 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
2479 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
2480 int i, j, w1, w2;
2481 unsigned char *bits, *p;
2482 HBITMAP bmp;
2483
2484 w1 = (width + 7) / 8; /* nb of 8bits elt in X bitmap */
2485 w2 = ((width + 15) / 16) * 2; /* nb of 16bits elt in W32 bitmap */
2486 bits = (unsigned char *) alloca (height * w2);
2487 memset (bits, 0, height * w2);
2488 for (i = 0; i < height; i++)
2489 {
2490 p = bits + i*w2;
2491 for (j = 0; j < w1; j++)
2492 {
2493 /* Bitswap XBM bytes to match how Windows does things. */
2494 unsigned char c = *data++;
2495 *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4)
2496 | (swap_nibble[(c>>4) & 0xf]));
2497 }
2498 }
2499 bmp = CreateBitmap (width, height, 1, 1, (char *) bits);
2500
2501 return bmp;
2502 }
2503
2504 static void
2505 convert_mono_to_color_image (struct frame *f, struct image *img,
2506 COLORREF foreground, COLORREF background)
2507 {
2508 HDC hdc, old_img_dc, new_img_dc;
2509 HGDIOBJ old_prev, new_prev;
2510 HBITMAP new_pixmap;
2511
2512 hdc = get_frame_dc (f);
2513 old_img_dc = CreateCompatibleDC (hdc);
2514 new_img_dc = CreateCompatibleDC (hdc);
2515 new_pixmap = CreateCompatibleBitmap (hdc, img->width, img->height);
2516 release_frame_dc (f, hdc);
2517 old_prev = SelectObject (old_img_dc, img->pixmap);
2518 new_prev = SelectObject (new_img_dc, new_pixmap);
2519 /* Windows convention for mono bitmaps is black = background,
2520 white = foreground. */
2521 SetTextColor (new_img_dc, background);
2522 SetBkColor (new_img_dc, foreground);
2523
2524 BitBlt (new_img_dc, 0, 0, img->width, img->height, old_img_dc,
2525 0, 0, SRCCOPY);
2526
2527 SelectObject (old_img_dc, old_prev);
2528 SelectObject (new_img_dc, new_prev);
2529 DeleteDC (old_img_dc);
2530 DeleteDC (new_img_dc);
2531 DeleteObject (img->pixmap);
2532 if (new_pixmap == 0)
2533 fprintf (stderr, "Failed to convert image to color.\n");
2534 else
2535 img->pixmap = new_pixmap;
2536 }
2537
2538 #define XBM_BIT_SHUFFLE(b) (~(b))
2539
2540 #else
2541
2542 #define XBM_BIT_SHUFFLE(b) (b)
2543
2544 #endif /* HAVE_NTGUI */
2545
2546
2547 static void
2548 Create_Pixmap_From_Bitmap_Data (struct frame *f, struct image *img, char *data,
2549 RGB_PIXEL_COLOR fg, RGB_PIXEL_COLOR bg,
2550 int non_default_colors)
2551 {
2552 #ifdef HAVE_NTGUI
2553 img->pixmap
2554 = w32_create_pixmap_from_bitmap_data (img->width, img->height, data);
2555
2556 /* If colors were specified, transfer the bitmap to a color one. */
2557 if (non_default_colors)
2558 convert_mono_to_color_image (f, img, fg, bg);
2559
2560 #elif defined (HAVE_NS)
2561 img->pixmap = ns_image_from_XBM (data, img->width, img->height);
2562
2563 #else
2564 img->pixmap
2565 = XCreatePixmapFromBitmapData (FRAME_X_DISPLAY (f),
2566 FRAME_X_WINDOW (f),
2567 data,
2568 img->width, img->height,
2569 fg, bg,
2570 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
2571 #endif /* !HAVE_NTGUI && !HAVE_NS */
2572 }
2573
2574
2575
2576 /* Replacement for XReadBitmapFileData which isn't available under old
2577 X versions. CONTENTS is a pointer to a buffer to parse; END is the
2578 buffer's end. Set *WIDTH and *HEIGHT to the width and height of
2579 the image. Return in *DATA the bitmap data allocated with xmalloc.
2580 Value is non-zero if successful. DATA null means just test if
2581 CONTENTS looks like an in-memory XBM file. If INHIBIT_IMAGE_ERROR
2582 is non-zero, inhibit the call to image_error when the image size is
2583 invalid (the bitmap remains unread). */
2584
2585 static int
2586 xbm_read_bitmap_data (struct frame *f, unsigned char *contents, unsigned char *end,
2587 int *width, int *height, char **data,
2588 int inhibit_image_error)
2589 {
2590 unsigned char *s = contents;
2591 char buffer[BUFSIZ];
2592 int padding_p = 0;
2593 int v10 = 0;
2594 int bytes_per_line, i, nbytes;
2595 char *p;
2596 int value;
2597 int LA1;
2598
2599 #define match() \
2600 LA1 = xbm_scan (&s, end, buffer, &value)
2601
2602 #define expect(TOKEN) \
2603 if (LA1 != (TOKEN)) \
2604 goto failure; \
2605 else \
2606 match ()
2607
2608 #define expect_ident(IDENT) \
2609 if (LA1 == XBM_TK_IDENT && strcmp (buffer, (IDENT)) == 0) \
2610 match (); \
2611 else \
2612 goto failure
2613
2614 *width = *height = -1;
2615 if (data)
2616 *data = NULL;
2617 LA1 = xbm_scan (&s, end, buffer, &value);
2618
2619 /* Parse defines for width, height and hot-spots. */
2620 while (LA1 == '#')
2621 {
2622 match ();
2623 expect_ident ("define");
2624 expect (XBM_TK_IDENT);
2625
2626 if (LA1 == XBM_TK_NUMBER)
2627 {
2628 char *q = strrchr (buffer, '_');
2629 q = q ? q + 1 : buffer;
2630 if (strcmp (q, "width") == 0)
2631 *width = value;
2632 else if (strcmp (q, "height") == 0)
2633 *height = value;
2634 }
2635 expect (XBM_TK_NUMBER);
2636 }
2637
2638 if (!check_image_size (f, *width, *height))
2639 {
2640 if (!inhibit_image_error)
2641 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
2642 goto failure;
2643 }
2644 else if (data == NULL)
2645 goto success;
2646
2647 /* Parse bits. Must start with `static'. */
2648 expect_ident ("static");
2649 if (LA1 == XBM_TK_IDENT)
2650 {
2651 if (strcmp (buffer, "unsigned") == 0)
2652 {
2653 match ();
2654 expect_ident ("char");
2655 }
2656 else if (strcmp (buffer, "short") == 0)
2657 {
2658 match ();
2659 v10 = 1;
2660 if (*width % 16 && *width % 16 < 9)
2661 padding_p = 1;
2662 }
2663 else if (strcmp (buffer, "char") == 0)
2664 match ();
2665 else
2666 goto failure;
2667 }
2668 else
2669 goto failure;
2670
2671 expect (XBM_TK_IDENT);
2672 expect ('[');
2673 expect (']');
2674 expect ('=');
2675 expect ('{');
2676
2677 bytes_per_line = (*width + 7) / 8 + padding_p;
2678 nbytes = bytes_per_line * *height;
2679 p = *data = (char *) xmalloc (nbytes);
2680
2681 if (v10)
2682 {
2683 for (i = 0; i < nbytes; i += 2)
2684 {
2685 int val = value;
2686 expect (XBM_TK_NUMBER);
2687
2688 *p++ = XBM_BIT_SHUFFLE (val);
2689 if (!padding_p || ((i + 2) % bytes_per_line))
2690 *p++ = XBM_BIT_SHUFFLE (value >> 8);
2691
2692 if (LA1 == ',' || LA1 == '}')
2693 match ();
2694 else
2695 goto failure;
2696 }
2697 }
2698 else
2699 {
2700 for (i = 0; i < nbytes; ++i)
2701 {
2702 int val = value;
2703 expect (XBM_TK_NUMBER);
2704
2705 *p++ = XBM_BIT_SHUFFLE (val);
2706
2707 if (LA1 == ',' || LA1 == '}')
2708 match ();
2709 else
2710 goto failure;
2711 }
2712 }
2713
2714 success:
2715 return 1;
2716
2717 failure:
2718
2719 if (data && *data)
2720 {
2721 xfree (*data);
2722 *data = NULL;
2723 }
2724 return 0;
2725
2726 #undef match
2727 #undef expect
2728 #undef expect_ident
2729 }
2730
2731
2732 /* Load XBM image IMG which will be displayed on frame F from buffer
2733 CONTENTS. END is the end of the buffer. Value is non-zero if
2734 successful. */
2735
2736 static int
2737 xbm_load_image (struct frame *f, struct image *img, unsigned char *contents,
2738 unsigned char *end)
2739 {
2740 int rc;
2741 char *data;
2742 int success_p = 0;
2743
2744 rc = xbm_read_bitmap_data (f, contents, end, &img->width, &img->height,
2745 &data, 0);
2746 if (rc)
2747 {
2748 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2749 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2750 int non_default_colors = 0;
2751 Lisp_Object value;
2752
2753 xassert (img->width > 0 && img->height > 0);
2754
2755 /* Get foreground and background colors, maybe allocate colors. */
2756 value = image_spec_value (img->spec, QCforeground, NULL);
2757 if (!NILP (value))
2758 {
2759 foreground = x_alloc_image_color (f, img, value, foreground);
2760 non_default_colors = 1;
2761 }
2762 value = image_spec_value (img->spec, QCbackground, NULL);
2763 if (!NILP (value))
2764 {
2765 background = x_alloc_image_color (f, img, value, background);
2766 img->background = background;
2767 img->background_valid = 1;
2768 non_default_colors = 1;
2769 }
2770
2771 Create_Pixmap_From_Bitmap_Data (f, img, data,
2772 foreground, background,
2773 non_default_colors);
2774 xfree (data);
2775
2776 if (img->pixmap == NO_PIXMAP)
2777 {
2778 x_clear_image (f, img);
2779 image_error ("Unable to create X pixmap for `%s'", img->spec, Qnil);
2780 }
2781 else
2782 success_p = 1;
2783 }
2784 else
2785 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2786
2787 return success_p;
2788 }
2789
2790
2791 /* Value is non-zero if DATA looks like an in-memory XBM file. */
2792
2793 static int
2794 xbm_file_p (Lisp_Object data)
2795 {
2796 int w, h;
2797 return (STRINGP (data)
2798 && xbm_read_bitmap_data (NULL, SDATA (data),
2799 (SDATA (data) + SBYTES (data)),
2800 &w, &h, NULL, 1));
2801 }
2802
2803
2804 /* Fill image IMG which is used on frame F with pixmap data. Value is
2805 non-zero if successful. */
2806
2807 static int
2808 xbm_load (struct frame *f, struct image *img)
2809 {
2810 int success_p = 0;
2811 Lisp_Object file_name;
2812
2813 xassert (xbm_image_p (img->spec));
2814
2815 /* If IMG->spec specifies a file name, create a non-file spec from it. */
2816 file_name = image_spec_value (img->spec, QCfile, NULL);
2817 if (STRINGP (file_name))
2818 {
2819 Lisp_Object file;
2820 unsigned char *contents;
2821 ptrdiff_t size;
2822
2823 file = x_find_image_file (file_name);
2824 if (!STRINGP (file))
2825 {
2826 image_error ("Cannot find image file `%s'", file_name, Qnil);
2827 return 0;
2828 }
2829
2830 contents = slurp_file (SSDATA (file), &size);
2831 if (contents == NULL)
2832 {
2833 image_error ("Error loading XBM image `%s'", img->spec, Qnil);
2834 return 0;
2835 }
2836
2837 success_p = xbm_load_image (f, img, contents, contents + size);
2838 xfree (contents);
2839 }
2840 else
2841 {
2842 struct image_keyword fmt[XBM_LAST];
2843 Lisp_Object data;
2844 unsigned long foreground = FRAME_FOREGROUND_PIXEL (f);
2845 unsigned long background = FRAME_BACKGROUND_PIXEL (f);
2846 int non_default_colors = 0;
2847 char *bits;
2848 int parsed_p;
2849 int in_memory_file_p = 0;
2850
2851 /* See if data looks like an in-memory XBM file. */
2852 data = image_spec_value (img->spec, QCdata, NULL);
2853 in_memory_file_p = xbm_file_p (data);
2854
2855 /* Parse the image specification. */
2856 memcpy (fmt, xbm_format, sizeof fmt);
2857 parsed_p = parse_image_spec (img->spec, fmt, XBM_LAST, Qxbm);
2858 (void) parsed_p;
2859 xassert (parsed_p);
2860
2861 /* Get specified width, and height. */
2862 if (!in_memory_file_p)
2863 {
2864 img->width = XFASTINT (fmt[XBM_WIDTH].value);
2865 img->height = XFASTINT (fmt[XBM_HEIGHT].value);
2866 xassert (img->width > 0 && img->height > 0);
2867 }
2868
2869 /* Get foreground and background colors, maybe allocate colors. */
2870 if (fmt[XBM_FOREGROUND].count
2871 && STRINGP (fmt[XBM_FOREGROUND].value))
2872 {
2873 foreground = x_alloc_image_color (f, img, fmt[XBM_FOREGROUND].value,
2874 foreground);
2875 non_default_colors = 1;
2876 }
2877
2878 if (fmt[XBM_BACKGROUND].count
2879 && STRINGP (fmt[XBM_BACKGROUND].value))
2880 {
2881 background = x_alloc_image_color (f, img, fmt[XBM_BACKGROUND].value,
2882 background);
2883 non_default_colors = 1;
2884 }
2885
2886 if (in_memory_file_p)
2887 success_p = xbm_load_image (f, img, SDATA (data),
2888 (SDATA (data)
2889 + SBYTES (data)));
2890 else
2891 {
2892 if (VECTORP (data))
2893 {
2894 int i;
2895 char *p;
2896 int nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR;
2897
2898 p = bits = (char *) alloca (nbytes * img->height);
2899 for (i = 0; i < img->height; ++i, p += nbytes)
2900 {
2901 Lisp_Object line = XVECTOR (data)->contents[i];
2902 if (STRINGP (line))
2903 memcpy (p, SDATA (line), nbytes);
2904 else
2905 memcpy (p, XBOOL_VECTOR (line)->data, nbytes);
2906 }
2907 }
2908 else if (STRINGP (data))
2909 bits = SSDATA (data);
2910 else
2911 bits = (char *) XBOOL_VECTOR (data)->data;
2912
2913 #ifdef WINDOWSNT
2914 {
2915 char *invertedBits;
2916 int nbytes, i;
2917 /* Windows mono bitmaps are reversed compared with X. */
2918 invertedBits = bits;
2919 nbytes = (img->width + BITS_PER_CHAR - 1) / BITS_PER_CHAR
2920 * img->height;
2921 bits = (char *) alloca (nbytes);
2922 for (i = 0; i < nbytes; i++)
2923 bits[i] = XBM_BIT_SHUFFLE (invertedBits[i]);
2924 }
2925 #endif
2926 /* Create the pixmap. */
2927
2928 Create_Pixmap_From_Bitmap_Data (f, img, bits,
2929 foreground, background,
2930 non_default_colors);
2931 if (img->pixmap)
2932 success_p = 1;
2933 else
2934 {
2935 image_error ("Unable to create pixmap for XBM image `%s'",
2936 img->spec, Qnil);
2937 x_clear_image (f, img);
2938 }
2939 }
2940 }
2941
2942 return success_p;
2943 }
2944
2945
2946 \f
2947 /***********************************************************************
2948 XPM images
2949 ***********************************************************************/
2950
2951 #if defined (HAVE_XPM) || defined (HAVE_NS)
2952
2953 static int xpm_image_p (Lisp_Object object);
2954 static int xpm_load (struct frame *f, struct image *img);
2955 static int xpm_valid_color_symbols_p (Lisp_Object);
2956
2957 #endif /* HAVE_XPM || HAVE_NS */
2958
2959 #ifdef HAVE_XPM
2960 #ifdef HAVE_NTGUI
2961 /* Indicate to xpm.h that we don't have Xlib. */
2962 #define FOR_MSW
2963 /* simx.h in xpm defines XColor and XImage differently than Emacs. */
2964 /* It also defines Display the same way as Emacs, but gcc 3.3 still barfs. */
2965 #define XColor xpm_XColor
2966 #define XImage xpm_XImage
2967 #define Display xpm_Display
2968 #define PIXEL_ALREADY_TYPEDEFED
2969 #include "X11/xpm.h"
2970 #undef FOR_MSW
2971 #undef XColor
2972 #undef XImage
2973 #undef Display
2974 #undef PIXEL_ALREADY_TYPEDEFED
2975 #else
2976 #include "X11/xpm.h"
2977 #endif /* HAVE_NTGUI */
2978 #endif /* HAVE_XPM */
2979
2980 #if defined (HAVE_XPM) || defined (HAVE_NS)
2981 /* The symbol `xpm' identifying XPM-format images. */
2982
2983 static Lisp_Object Qxpm;
2984
2985 /* Indices of image specification fields in xpm_format, below. */
2986
2987 enum xpm_keyword_index
2988 {
2989 XPM_TYPE,
2990 XPM_FILE,
2991 XPM_DATA,
2992 XPM_ASCENT,
2993 XPM_MARGIN,
2994 XPM_RELIEF,
2995 XPM_ALGORITHM,
2996 XPM_HEURISTIC_MASK,
2997 XPM_MASK,
2998 XPM_COLOR_SYMBOLS,
2999 XPM_BACKGROUND,
3000 XPM_LAST
3001 };
3002
3003 /* Vector of image_keyword structures describing the format
3004 of valid XPM image specifications. */
3005
3006 static const struct image_keyword xpm_format[XPM_LAST] =
3007 {
3008 {":type", IMAGE_SYMBOL_VALUE, 1},
3009 {":file", IMAGE_STRING_VALUE, 0},
3010 {":data", IMAGE_STRING_VALUE, 0},
3011 {":ascent", IMAGE_ASCENT_VALUE, 0},
3012 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
3013 {":relief", IMAGE_INTEGER_VALUE, 0},
3014 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3015 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3016 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3017 {":color-symbols", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
3018 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
3019 };
3020
3021 /* Structure describing the image type XPM. */
3022
3023 static struct image_type xpm_type =
3024 {
3025 &Qxpm,
3026 xpm_image_p,
3027 xpm_load,
3028 x_clear_image,
3029 NULL
3030 };
3031
3032 #ifdef HAVE_X_WINDOWS
3033
3034 /* Define ALLOC_XPM_COLORS if we can use Emacs' own color allocation
3035 functions for allocating image colors. Our own functions handle
3036 color allocation failures more gracefully than the ones on the XPM
3037 lib. */
3038
3039 #if defined XpmAllocColor && defined XpmFreeColors && defined XpmColorClosure
3040 #define ALLOC_XPM_COLORS
3041 #endif
3042 #endif /* HAVE_X_WINDOWS */
3043
3044 #ifdef ALLOC_XPM_COLORS
3045
3046 static void xpm_init_color_cache (struct frame *, XpmAttributes *);
3047 static void xpm_free_color_cache (void);
3048 static int xpm_lookup_color (struct frame *, char *, XColor *);
3049 static int xpm_color_bucket (char *);
3050 static struct xpm_cached_color *xpm_cache_color (struct frame *, char *,
3051 XColor *, int);
3052
3053 /* An entry in a hash table used to cache color definitions of named
3054 colors. This cache is necessary to speed up XPM image loading in
3055 case we do color allocations ourselves. Without it, we would need
3056 a call to XParseColor per pixel in the image. */
3057
3058 struct xpm_cached_color
3059 {
3060 /* Next in collision chain. */
3061 struct xpm_cached_color *next;
3062
3063 /* Color definition (RGB and pixel color). */
3064 XColor color;
3065
3066 /* Color name. */
3067 char name[1];
3068 };
3069
3070 /* The hash table used for the color cache, and its bucket vector
3071 size. */
3072
3073 #define XPM_COLOR_CACHE_BUCKETS 1001
3074 static struct xpm_cached_color **xpm_color_cache;
3075
3076 /* Initialize the color cache. */
3077
3078 static void
3079 xpm_init_color_cache (struct frame *f, XpmAttributes *attrs)
3080 {
3081 size_t nbytes = XPM_COLOR_CACHE_BUCKETS * sizeof *xpm_color_cache;
3082 xpm_color_cache = (struct xpm_cached_color **) xmalloc (nbytes);
3083 memset (xpm_color_cache, 0, nbytes);
3084 init_color_table ();
3085
3086 if (attrs->valuemask & XpmColorSymbols)
3087 {
3088 int i;
3089 XColor color;
3090
3091 for (i = 0; i < attrs->numsymbols; ++i)
3092 if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3093 attrs->colorsymbols[i].value, &color))
3094 {
3095 color.pixel = lookup_rgb_color (f, color.red, color.green,
3096 color.blue);
3097 xpm_cache_color (f, attrs->colorsymbols[i].name, &color, -1);
3098 }
3099 }
3100 }
3101
3102 /* Free the color cache. */
3103
3104 static void
3105 xpm_free_color_cache (void)
3106 {
3107 struct xpm_cached_color *p, *next;
3108 int i;
3109
3110 for (i = 0; i < XPM_COLOR_CACHE_BUCKETS; ++i)
3111 for (p = xpm_color_cache[i]; p; p = next)
3112 {
3113 next = p->next;
3114 xfree (p);
3115 }
3116
3117 xfree (xpm_color_cache);
3118 xpm_color_cache = NULL;
3119 free_color_table ();
3120 }
3121
3122 /* Return the bucket index for color named COLOR_NAME in the color
3123 cache. */
3124
3125 static int
3126 xpm_color_bucket (char *color_name)
3127 {
3128 unsigned h = 0;
3129 char *s;
3130
3131 for (s = color_name; *s; ++s)
3132 h = (h << 2) ^ *s;
3133 return h %= XPM_COLOR_CACHE_BUCKETS;
3134 }
3135
3136
3137 /* On frame F, cache values COLOR for color with name COLOR_NAME.
3138 BUCKET, if >= 0, is a precomputed bucket index. Value is the cache
3139 entry added. */
3140
3141 static struct xpm_cached_color *
3142 xpm_cache_color (struct frame *f, char *color_name, XColor *color, int bucket)
3143 {
3144 size_t nbytes;
3145 struct xpm_cached_color *p;
3146
3147 if (bucket < 0)
3148 bucket = xpm_color_bucket (color_name);
3149
3150 nbytes = sizeof *p + strlen (color_name);
3151 p = (struct xpm_cached_color *) xmalloc (nbytes);
3152 strcpy (p->name, color_name);
3153 p->color = *color;
3154 p->next = xpm_color_cache[bucket];
3155 xpm_color_cache[bucket] = p;
3156 return p;
3157 }
3158
3159 /* Look up color COLOR_NAME for frame F in the color cache. If found,
3160 return the cached definition in *COLOR. Otherwise, make a new
3161 entry in the cache and allocate the color. Value is zero if color
3162 allocation failed. */
3163
3164 static int
3165 xpm_lookup_color (struct frame *f, char *color_name, XColor *color)
3166 {
3167 struct xpm_cached_color *p;
3168 int h = xpm_color_bucket (color_name);
3169
3170 for (p = xpm_color_cache[h]; p; p = p->next)
3171 if (strcmp (p->name, color_name) == 0)
3172 break;
3173
3174 if (p != NULL)
3175 *color = p->color;
3176 else if (XParseColor (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f),
3177 color_name, color))
3178 {
3179 color->pixel = lookup_rgb_color (f, color->red, color->green,
3180 color->blue);
3181 p = xpm_cache_color (f, color_name, color, h);
3182 }
3183 /* You get `opaque' at least from ImageMagick converting pbm to xpm
3184 with transparency, and it's useful. */
3185 else if (strcmp ("opaque", color_name) == 0)
3186 {
3187 memset (color, 0, sizeof (XColor)); /* Is this necessary/correct? */
3188 color->pixel = FRAME_FOREGROUND_PIXEL (f);
3189 p = xpm_cache_color (f, color_name, color, h);
3190 }
3191
3192 return p != NULL;
3193 }
3194
3195
3196 /* Callback for allocating color COLOR_NAME. Called from the XPM lib.
3197 CLOSURE is a pointer to the frame on which we allocate the
3198 color. Return in *COLOR the allocated color. Value is non-zero
3199 if successful. */
3200
3201 static int
3202 xpm_alloc_color (Display *dpy, Colormap cmap, char *color_name, XColor *color,
3203 void *closure)
3204 {
3205 return xpm_lookup_color ((struct frame *) closure, color_name, color);
3206 }
3207
3208
3209 /* Callback for freeing NPIXELS colors contained in PIXELS. CLOSURE
3210 is a pointer to the frame on which we allocate the color. Value is
3211 non-zero if successful. */
3212
3213 static int
3214 xpm_free_colors (Display *dpy, Colormap cmap, Pixel *pixels, int npixels, void *closure)
3215 {
3216 return 1;
3217 }
3218
3219 #endif /* ALLOC_XPM_COLORS */
3220
3221
3222 #ifdef HAVE_NTGUI
3223
3224 /* XPM library details. */
3225
3226 DEF_IMGLIB_FN (void, XpmFreeAttributes, (XpmAttributes *));
3227 DEF_IMGLIB_FN (int, XpmCreateImageFromBuffer, (Display *, char *, xpm_XImage **,
3228 xpm_XImage **, XpmAttributes *));
3229 DEF_IMGLIB_FN (int, XpmReadFileToImage, (Display *, char *, xpm_XImage **,
3230 xpm_XImage **, XpmAttributes *));
3231 DEF_IMGLIB_FN (void, XImageFree, (xpm_XImage *));
3232
3233 static int
3234 init_xpm_functions (Lisp_Object libraries)
3235 {
3236 HMODULE library;
3237
3238 if (!(library = w32_delayed_load (libraries, Qxpm)))
3239 return 0;
3240
3241 LOAD_IMGLIB_FN (library, XpmFreeAttributes);
3242 LOAD_IMGLIB_FN (library, XpmCreateImageFromBuffer);
3243 LOAD_IMGLIB_FN (library, XpmReadFileToImage);
3244 LOAD_IMGLIB_FN (library, XImageFree);
3245 return 1;
3246 }
3247
3248 #endif /* HAVE_NTGUI */
3249
3250
3251 /* Value is non-zero if COLOR_SYMBOLS is a valid color symbols list
3252 for XPM images. Such a list must consist of conses whose car and
3253 cdr are strings. */
3254
3255 static int
3256 xpm_valid_color_symbols_p (Lisp_Object color_symbols)
3257 {
3258 while (CONSP (color_symbols))
3259 {
3260 Lisp_Object sym = XCAR (color_symbols);
3261 if (!CONSP (sym)
3262 || !STRINGP (XCAR (sym))
3263 || !STRINGP (XCDR (sym)))
3264 break;
3265 color_symbols = XCDR (color_symbols);
3266 }
3267
3268 return NILP (color_symbols);
3269 }
3270
3271
3272 /* Value is non-zero if OBJECT is a valid XPM image specification. */
3273
3274 static int
3275 xpm_image_p (Lisp_Object object)
3276 {
3277 struct image_keyword fmt[XPM_LAST];
3278 memcpy (fmt, xpm_format, sizeof fmt);
3279 return (parse_image_spec (object, fmt, XPM_LAST, Qxpm)
3280 /* Either `:file' or `:data' must be present. */
3281 && fmt[XPM_FILE].count + fmt[XPM_DATA].count == 1
3282 /* Either no `:color-symbols' or it's a list of conses
3283 whose car and cdr are strings. */
3284 && (fmt[XPM_COLOR_SYMBOLS].count == 0
3285 || xpm_valid_color_symbols_p (fmt[XPM_COLOR_SYMBOLS].value)));
3286 }
3287
3288 #endif /* HAVE_XPM || HAVE_NS */
3289
3290 #if defined HAVE_XPM && defined HAVE_X_WINDOWS && !defined USE_GTK
3291 ptrdiff_t
3292 x_create_bitmap_from_xpm_data (struct frame *f, const char **bits)
3293 {
3294 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
3295 ptrdiff_t id;
3296 int rc;
3297 XpmAttributes attrs;
3298 Pixmap bitmap, mask;
3299
3300 memset (&attrs, 0, sizeof attrs);
3301
3302 attrs.visual = FRAME_X_VISUAL (f);
3303 attrs.colormap = FRAME_X_COLORMAP (f);
3304 attrs.valuemask |= XpmVisual;
3305 attrs.valuemask |= XpmColormap;
3306
3307 rc = XpmCreatePixmapFromData (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3308 (char **) bits, &bitmap, &mask, &attrs);
3309 if (rc != XpmSuccess)
3310 {
3311 XpmFreeAttributes (&attrs);
3312 return -1;
3313 }
3314
3315 id = x_allocate_bitmap_record (f);
3316 dpyinfo->bitmaps[id - 1].pixmap = bitmap;
3317 dpyinfo->bitmaps[id - 1].have_mask = 1;
3318 dpyinfo->bitmaps[id - 1].mask = mask;
3319 dpyinfo->bitmaps[id - 1].file = NULL;
3320 dpyinfo->bitmaps[id - 1].height = attrs.height;
3321 dpyinfo->bitmaps[id - 1].width = attrs.width;
3322 dpyinfo->bitmaps[id - 1].depth = attrs.depth;
3323 dpyinfo->bitmaps[id - 1].refcount = 1;
3324
3325 XpmFreeAttributes (&attrs);
3326 return id;
3327 }
3328 #endif /* defined (HAVE_XPM) && defined (HAVE_X_WINDOWS) */
3329
3330 /* Load image IMG which will be displayed on frame F. Value is
3331 non-zero if successful. */
3332
3333 #ifdef HAVE_XPM
3334
3335 static int
3336 xpm_load (struct frame *f, struct image *img)
3337 {
3338 int rc;
3339 XpmAttributes attrs;
3340 Lisp_Object specified_file, color_symbols;
3341 #ifdef HAVE_NTGUI
3342 HDC hdc;
3343 xpm_XImage * xpm_image = NULL, * xpm_mask = NULL;
3344 #endif /* HAVE_NTGUI */
3345
3346 /* Configure the XPM lib. Use the visual of frame F. Allocate
3347 close colors. Return colors allocated. */
3348 memset (&attrs, 0, sizeof attrs);
3349
3350 #ifndef HAVE_NTGUI
3351 attrs.visual = FRAME_X_VISUAL (f);
3352 attrs.colormap = FRAME_X_COLORMAP (f);
3353 attrs.valuemask |= XpmVisual;
3354 attrs.valuemask |= XpmColormap;
3355 #endif /* HAVE_NTGUI */
3356
3357 #ifdef ALLOC_XPM_COLORS
3358 /* Allocate colors with our own functions which handle
3359 failing color allocation more gracefully. */
3360 attrs.color_closure = f;
3361 attrs.alloc_color = xpm_alloc_color;
3362 attrs.free_colors = xpm_free_colors;
3363 attrs.valuemask |= XpmAllocColor | XpmFreeColors | XpmColorClosure;
3364 #else /* not ALLOC_XPM_COLORS */
3365 /* Let the XPM lib allocate colors. */
3366 attrs.valuemask |= XpmReturnAllocPixels;
3367 #ifdef XpmAllocCloseColors
3368 attrs.alloc_close_colors = 1;
3369 attrs.valuemask |= XpmAllocCloseColors;
3370 #else /* not XpmAllocCloseColors */
3371 attrs.closeness = 600;
3372 attrs.valuemask |= XpmCloseness;
3373 #endif /* not XpmAllocCloseColors */
3374 #endif /* ALLOC_XPM_COLORS */
3375
3376 /* If image specification contains symbolic color definitions, add
3377 these to `attrs'. */
3378 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3379 if (CONSP (color_symbols))
3380 {
3381 Lisp_Object tail;
3382 XpmColorSymbol *xpm_syms;
3383 int i, size;
3384
3385 attrs.valuemask |= XpmColorSymbols;
3386
3387 /* Count number of symbols. */
3388 attrs.numsymbols = 0;
3389 for (tail = color_symbols; CONSP (tail); tail = XCDR (tail))
3390 ++attrs.numsymbols;
3391
3392 /* Allocate an XpmColorSymbol array. */
3393 size = attrs.numsymbols * sizeof *xpm_syms;
3394 xpm_syms = (XpmColorSymbol *) alloca (size);
3395 memset (xpm_syms, 0, size);
3396 attrs.colorsymbols = xpm_syms;
3397
3398 /* Fill the color symbol array. */
3399 for (tail = color_symbols, i = 0;
3400 CONSP (tail);
3401 ++i, tail = XCDR (tail))
3402 {
3403 Lisp_Object name;
3404 Lisp_Object color;
3405 char *empty_string = (char *) "";
3406
3407 if (!CONSP (XCAR (tail)))
3408 {
3409 xpm_syms[i].name = empty_string;
3410 xpm_syms[i].value = empty_string;
3411 continue;
3412 }
3413 name = XCAR (XCAR (tail));
3414 color = XCDR (XCAR (tail));
3415 if (STRINGP (name))
3416 {
3417 xpm_syms[i].name = (char *) alloca (SCHARS (name) + 1);
3418 strcpy (xpm_syms[i].name, SSDATA (name));
3419 }
3420 else
3421 xpm_syms[i].name = empty_string;
3422 if (STRINGP (color))
3423 {
3424 xpm_syms[i].value = (char *) alloca (SCHARS (color) + 1);
3425 strcpy (xpm_syms[i].value, SSDATA (color));
3426 }
3427 else
3428 xpm_syms[i].value = empty_string;
3429 }
3430 }
3431
3432 /* Create a pixmap for the image, either from a file, or from a
3433 string buffer containing data in the same format as an XPM file. */
3434 #ifdef ALLOC_XPM_COLORS
3435 xpm_init_color_cache (f, &attrs);
3436 #endif
3437
3438 specified_file = image_spec_value (img->spec, QCfile, NULL);
3439
3440 #ifdef HAVE_NTGUI
3441 {
3442 HDC frame_dc = get_frame_dc (f);
3443 hdc = CreateCompatibleDC (frame_dc);
3444 release_frame_dc (f, frame_dc);
3445 }
3446 #endif /* HAVE_NTGUI */
3447
3448 if (STRINGP (specified_file))
3449 {
3450 Lisp_Object file = x_find_image_file (specified_file);
3451 if (!STRINGP (file))
3452 {
3453 image_error ("Cannot find image file `%s'", specified_file, Qnil);
3454 #ifdef ALLOC_XPM_COLORS
3455 xpm_free_color_cache ();
3456 #endif
3457 return 0;
3458 }
3459
3460 #ifdef HAVE_NTGUI
3461 /* XpmReadFileToPixmap is not available in the Windows port of
3462 libxpm. But XpmReadFileToImage almost does what we want. */
3463 rc = fn_XpmReadFileToImage (&hdc, SDATA (file),
3464 &xpm_image, &xpm_mask,
3465 &attrs);
3466 #else
3467 rc = XpmReadFileToPixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3468 SSDATA (file), &img->pixmap, &img->mask,
3469 &attrs);
3470 #endif /* HAVE_NTGUI */
3471 }
3472 else
3473 {
3474 Lisp_Object buffer = image_spec_value (img->spec, QCdata, NULL);
3475 if (!STRINGP (buffer))
3476 {
3477 image_error ("Invalid image data `%s'", buffer, Qnil);
3478 #ifdef ALLOC_XPM_COLORS
3479 xpm_free_color_cache ();
3480 #endif
3481 return 0;
3482 }
3483 #ifdef HAVE_NTGUI
3484 /* XpmCreatePixmapFromBuffer is not available in the Windows port
3485 of libxpm. But XpmCreateImageFromBuffer almost does what we want. */
3486 rc = fn_XpmCreateImageFromBuffer (&hdc, SDATA (buffer),
3487 &xpm_image, &xpm_mask,
3488 &attrs);
3489 #else
3490 rc = XpmCreatePixmapFromBuffer (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
3491 SSDATA (buffer),
3492 &img->pixmap, &img->mask,
3493 &attrs);
3494 #endif /* HAVE_NTGUI */
3495 }
3496
3497 if (rc == XpmSuccess)
3498 {
3499 #if defined (COLOR_TABLE_SUPPORT) && defined (ALLOC_XPM_COLORS)
3500 img->colors = colors_in_color_table (&img->ncolors);
3501 #else /* not ALLOC_XPM_COLORS */
3502 int i;
3503
3504 #ifdef HAVE_NTGUI
3505 /* W32 XPM uses XImage to wrap what W32 Emacs calls a Pixmap,
3506 plus some duplicate attributes. */
3507 if (xpm_image && xpm_image->bitmap)
3508 {
3509 img->pixmap = xpm_image->bitmap;
3510 /* XImageFree in libXpm frees XImage struct without destroying
3511 the bitmap, which is what we want. */
3512 fn_XImageFree (xpm_image);
3513 }
3514 if (xpm_mask && xpm_mask->bitmap)
3515 {
3516 /* The mask appears to be inverted compared with what we expect.
3517 TODO: invert our expectations. See other places where we
3518 have to invert bits because our idea of masks is backwards. */
3519 HGDIOBJ old_obj;
3520 old_obj = SelectObject (hdc, xpm_mask->bitmap);
3521
3522 PatBlt (hdc, 0, 0, xpm_mask->width, xpm_mask->height, DSTINVERT);
3523 SelectObject (hdc, old_obj);
3524
3525 img->mask = xpm_mask->bitmap;
3526 fn_XImageFree (xpm_mask);
3527 DeleteDC (hdc);
3528 }
3529
3530 DeleteDC (hdc);
3531 #endif /* HAVE_NTGUI */
3532
3533 /* Remember allocated colors. */
3534 img->ncolors = attrs.nalloc_pixels;
3535 img->colors = (unsigned long *) xmalloc (img->ncolors
3536 * sizeof *img->colors);
3537 for (i = 0; i < attrs.nalloc_pixels; ++i)
3538 {
3539 img->colors[i] = attrs.alloc_pixels[i];
3540 #ifdef DEBUG_X_COLORS
3541 register_color (img->colors[i]);
3542 #endif
3543 }
3544 #endif /* not ALLOC_XPM_COLORS */
3545
3546 img->width = attrs.width;
3547 img->height = attrs.height;
3548 xassert (img->width > 0 && img->height > 0);
3549
3550 /* The call to XpmFreeAttributes below frees attrs.alloc_pixels. */
3551 #ifdef HAVE_NTGUI
3552 fn_XpmFreeAttributes (&attrs);
3553 #else
3554 XpmFreeAttributes (&attrs);
3555 #endif /* HAVE_NTGUI */
3556 }
3557 else
3558 {
3559 #ifdef HAVE_NTGUI
3560 DeleteDC (hdc);
3561 #endif /* HAVE_NTGUI */
3562
3563 switch (rc)
3564 {
3565 case XpmOpenFailed:
3566 image_error ("Error opening XPM file (%s)", img->spec, Qnil);
3567 break;
3568
3569 case XpmFileInvalid:
3570 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
3571 break;
3572
3573 case XpmNoMemory:
3574 image_error ("Out of memory (%s)", img->spec, Qnil);
3575 break;
3576
3577 case XpmColorFailed:
3578 image_error ("Color allocation error (%s)", img->spec, Qnil);
3579 break;
3580
3581 default:
3582 image_error ("Unknown error (%s)", img->spec, Qnil);
3583 break;
3584 }
3585 }
3586
3587 #ifdef ALLOC_XPM_COLORS
3588 xpm_free_color_cache ();
3589 #endif
3590 return rc == XpmSuccess;
3591 }
3592
3593 #endif /* HAVE_XPM */
3594
3595 #if defined (HAVE_NS) && !defined (HAVE_XPM)
3596
3597 /* XPM support functions for NS where libxpm is not available.
3598 Only XPM version 3 (without any extensions) is supported. */
3599
3600 static void xpm_put_color_table_v (Lisp_Object, const unsigned char *,
3601 int, Lisp_Object);
3602 static Lisp_Object xpm_get_color_table_v (Lisp_Object,
3603 const unsigned char *, int);
3604 static void xpm_put_color_table_h (Lisp_Object, const unsigned char *,
3605 int, Lisp_Object);
3606 static Lisp_Object xpm_get_color_table_h (Lisp_Object,
3607 const unsigned char *, int);
3608
3609 /* Tokens returned from xpm_scan. */
3610
3611 enum xpm_token
3612 {
3613 XPM_TK_IDENT = 256,
3614 XPM_TK_STRING,
3615 XPM_TK_EOF
3616 };
3617
3618 /* Scan an XPM data and return a character (< 256) or a token defined
3619 by enum xpm_token above. *S and END are the start (inclusive) and
3620 the end (exclusive) addresses of the data, respectively. Advance
3621 *S while scanning. If token is either XPM_TK_IDENT or
3622 XPM_TK_STRING, *BEG and *LEN are set to the start address and the
3623 length of the corresponding token, respectively. */
3624
3625 static int
3626 xpm_scan (const unsigned char **s,
3627 const unsigned char *end,
3628 const unsigned char **beg,
3629 ptrdiff_t *len)
3630 {
3631 int c;
3632
3633 while (*s < end)
3634 {
3635 /* Skip white-space. */
3636 while (*s < end && (c = *(*s)++, isspace (c)))
3637 ;
3638
3639 /* gnus-pointer.xpm uses '-' in its identifier.
3640 sb-dir-plus.xpm uses '+' in its identifier. */
3641 if (isalpha (c) || c == '_' || c == '-' || c == '+')
3642 {
3643 *beg = *s - 1;
3644 while (*s < end
3645 && (c = **s, isalnum (c) || c == '_' || c == '-' || c == '+'))
3646 ++*s;
3647 *len = *s - *beg;
3648 return XPM_TK_IDENT;
3649 }
3650 else if (c == '"')
3651 {
3652 *beg = *s;
3653 while (*s < end && **s != '"')
3654 ++*s;
3655 *len = *s - *beg;
3656 if (*s < end)
3657 ++*s;
3658 return XPM_TK_STRING;
3659 }
3660 else if (c == '/')
3661 {
3662 if (*s < end && **s == '*')
3663 {
3664 /* C-style comment. */
3665 ++*s;
3666 do
3667 {
3668 while (*s < end && *(*s)++ != '*')
3669 ;
3670 }
3671 while (*s < end && **s != '/');
3672 if (*s < end)
3673 ++*s;
3674 }
3675 else
3676 return c;
3677 }
3678 else
3679 return c;
3680 }
3681
3682 return XPM_TK_EOF;
3683 }
3684
3685 /* Functions for color table lookup in XPM data. A key is a string
3686 specifying the color of each pixel in XPM data. A value is either
3687 an integer that specifies a pixel color, Qt that specifies
3688 transparency, or Qnil for the unspecified color. If the length of
3689 the key string is one, a vector is used as a table. Otherwise, a
3690 hash table is used. */
3691
3692 static Lisp_Object
3693 xpm_make_color_table_v (void (**put_func) (Lisp_Object,
3694 const unsigned char *,
3695 int,
3696 Lisp_Object),
3697 Lisp_Object (**get_func) (Lisp_Object,
3698 const unsigned char *,
3699 int))
3700 {
3701 *put_func = xpm_put_color_table_v;
3702 *get_func = xpm_get_color_table_v;
3703 return Fmake_vector (make_number (256), Qnil);
3704 }
3705
3706 static void
3707 xpm_put_color_table_v (Lisp_Object color_table,
3708 const unsigned char *chars_start,
3709 int chars_len,
3710 Lisp_Object color)
3711 {
3712 XVECTOR (color_table)->contents[*chars_start] = color;
3713 }
3714
3715 static Lisp_Object
3716 xpm_get_color_table_v (Lisp_Object color_table,
3717 const unsigned char *chars_start,
3718 int chars_len)
3719 {
3720 return XVECTOR (color_table)->contents[*chars_start];
3721 }
3722
3723 static Lisp_Object
3724 xpm_make_color_table_h (void (**put_func) (Lisp_Object,
3725 const unsigned char *,
3726 int,
3727 Lisp_Object),
3728 Lisp_Object (**get_func) (Lisp_Object,
3729 const unsigned char *,
3730 int))
3731 {
3732 *put_func = xpm_put_color_table_h;
3733 *get_func = xpm_get_color_table_h;
3734 return make_hash_table (Qequal, make_number (DEFAULT_HASH_SIZE),
3735 make_float (DEFAULT_REHASH_SIZE),
3736 make_float (DEFAULT_REHASH_THRESHOLD),
3737 Qnil, Qnil, Qnil);
3738 }
3739
3740 static void
3741 xpm_put_color_table_h (Lisp_Object color_table,
3742 const unsigned char *chars_start,
3743 int chars_len,
3744 Lisp_Object color)
3745 {
3746 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3747 EMACS_UINT hash_code;
3748 Lisp_Object chars = make_unibyte_string (chars_start, chars_len);
3749
3750 hash_lookup (table, chars, &hash_code);
3751 hash_put (table, chars, color, hash_code);
3752 }
3753
3754 static Lisp_Object
3755 xpm_get_color_table_h (Lisp_Object color_table,
3756 const unsigned char *chars_start,
3757 int chars_len)
3758 {
3759 struct Lisp_Hash_Table *table = XHASH_TABLE (color_table);
3760 int i = hash_lookup (table, make_unibyte_string (chars_start, chars_len),
3761 NULL);
3762
3763 return i >= 0 ? HASH_VALUE (table, i) : Qnil;
3764 }
3765
3766 enum xpm_color_key {
3767 XPM_COLOR_KEY_S,
3768 XPM_COLOR_KEY_M,
3769 XPM_COLOR_KEY_G4,
3770 XPM_COLOR_KEY_G,
3771 XPM_COLOR_KEY_C
3772 };
3773
3774 static const char xpm_color_key_strings[][4] = {"s", "m", "g4", "g", "c"};
3775
3776 static int
3777 xpm_str_to_color_key (const char *s)
3778 {
3779 int i;
3780
3781 for (i = 0;
3782 i < sizeof xpm_color_key_strings / sizeof xpm_color_key_strings[0];
3783 i++)
3784 if (strcmp (xpm_color_key_strings[i], s) == 0)
3785 return i;
3786 return -1;
3787 }
3788
3789 static int
3790 xpm_load_image (struct frame *f,
3791 struct image *img,
3792 const unsigned char *contents,
3793 const unsigned char *end)
3794 {
3795 const unsigned char *s = contents, *beg, *str;
3796 unsigned char buffer[BUFSIZ];
3797 int width, height, x, y;
3798 int num_colors, chars_per_pixel;
3799 ptrdiff_t len;
3800 int LA1;
3801 void (*put_color_table) (Lisp_Object, const unsigned char *, int, Lisp_Object);
3802 Lisp_Object (*get_color_table) (Lisp_Object, const unsigned char *, int);
3803 Lisp_Object frame, color_symbols, color_table;
3804 int best_key, have_mask = 0;
3805 XImagePtr ximg = NULL, mask_img = NULL;
3806
3807 #define match() \
3808 LA1 = xpm_scan (&s, end, &beg, &len)
3809
3810 #define expect(TOKEN) \
3811 if (LA1 != (TOKEN)) \
3812 goto failure; \
3813 else \
3814 match ()
3815
3816 #define expect_ident(IDENT) \
3817 if (LA1 == XPM_TK_IDENT \
3818 && strlen ((IDENT)) == len && memcmp ((IDENT), beg, len) == 0) \
3819 match (); \
3820 else \
3821 goto failure
3822
3823 if (!(end - s >= 9 && memcmp (s, "/* XPM */", 9) == 0))
3824 goto failure;
3825 s += 9;
3826 match ();
3827 expect_ident ("static");
3828 expect_ident ("char");
3829 expect ('*');
3830 expect (XPM_TK_IDENT);
3831 expect ('[');
3832 expect (']');
3833 expect ('=');
3834 expect ('{');
3835 expect (XPM_TK_STRING);
3836 if (len >= BUFSIZ)
3837 goto failure;
3838 memcpy (buffer, beg, len);
3839 buffer[len] = '\0';
3840 if (sscanf (buffer, "%d %d %d %d", &width, &height,
3841 &num_colors, &chars_per_pixel) != 4
3842 || width <= 0 || height <= 0
3843 || num_colors <= 0 || chars_per_pixel <= 0)
3844 goto failure;
3845
3846 if (!check_image_size (f, width, height))
3847 {
3848 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
3849 goto failure;
3850 }
3851
3852 expect (',');
3853
3854 XSETFRAME (frame, f);
3855 if (!NILP (Fxw_display_color_p (frame)))
3856 best_key = XPM_COLOR_KEY_C;
3857 else if (!NILP (Fx_display_grayscale_p (frame)))
3858 best_key = (XFASTINT (Fx_display_planes (frame)) > 2
3859 ? XPM_COLOR_KEY_G : XPM_COLOR_KEY_G4);
3860 else
3861 best_key = XPM_COLOR_KEY_M;
3862
3863 color_symbols = image_spec_value (img->spec, QCcolor_symbols, NULL);
3864 if (chars_per_pixel == 1)
3865 color_table = xpm_make_color_table_v (&put_color_table,
3866 &get_color_table);
3867 else
3868 color_table = xpm_make_color_table_h (&put_color_table,
3869 &get_color_table);
3870
3871 while (num_colors-- > 0)
3872 {
3873 char *color, *max_color;
3874 int key, next_key, max_key = 0;
3875 Lisp_Object symbol_color = Qnil, color_val;
3876 XColor cdef;
3877
3878 expect (XPM_TK_STRING);
3879 if (len <= chars_per_pixel || len >= BUFSIZ + chars_per_pixel)
3880 goto failure;
3881 memcpy (buffer, beg + chars_per_pixel, len - chars_per_pixel);
3882 buffer[len - chars_per_pixel] = '\0';
3883
3884 str = strtok (buffer, " \t");
3885 if (str == NULL)
3886 goto failure;
3887 key = xpm_str_to_color_key (str);
3888 if (key < 0)
3889 goto failure;
3890 do
3891 {
3892 color = strtok (NULL, " \t");
3893 if (color == NULL)
3894 goto failure;
3895
3896 while ((str = strtok (NULL, " \t")) != NULL)
3897 {
3898 next_key = xpm_str_to_color_key (str);
3899 if (next_key >= 0)
3900 break;
3901 color[strlen (color)] = ' ';
3902 }
3903
3904 if (key == XPM_COLOR_KEY_S)
3905 {
3906 if (NILP (symbol_color))
3907 symbol_color = build_string (color);
3908 }
3909 else if (max_key < key && key <= best_key)
3910 {
3911 max_key = key;
3912 max_color = color;
3913 }
3914 key = next_key;
3915 }
3916 while (str);
3917
3918 color_val = Qnil;
3919 if (!NILP (color_symbols) && !NILP (symbol_color))
3920 {
3921 Lisp_Object specified_color = Fassoc (symbol_color, color_symbols);
3922
3923 if (CONSP (specified_color) && STRINGP (XCDR (specified_color)))
3924 {
3925 if (xstrcasecmp (SSDATA (XCDR (specified_color)), "None") == 0)
3926 color_val = Qt;
3927 else if (x_defined_color (f, SDATA (XCDR (specified_color)),
3928 &cdef, 0))
3929 color_val = make_number (cdef.pixel);
3930 }
3931 }
3932 if (NILP (color_val) && max_key > 0)
3933 {
3934 if (xstrcasecmp (max_color, "None") == 0)
3935 color_val = Qt;
3936 else if (x_defined_color (f, max_color, &cdef, 0))
3937 color_val = make_number (cdef.pixel);
3938 }
3939 if (!NILP (color_val))
3940 (*put_color_table) (color_table, beg, chars_per_pixel, color_val);
3941
3942 expect (',');
3943 }
3944
3945 if (!x_create_x_image_and_pixmap (f, width, height, 0,
3946 &ximg, &img->pixmap)
3947 #ifndef HAVE_NS
3948 || !x_create_x_image_and_pixmap (f, width, height, 1,
3949 &mask_img, &img->mask)
3950 #endif
3951 )
3952 {
3953 image_error ("Out of memory (%s)", img->spec, Qnil);
3954 goto error;
3955 }
3956
3957 for (y = 0; y < height; y++)
3958 {
3959 expect (XPM_TK_STRING);
3960 str = beg;
3961 if (len < width * chars_per_pixel)
3962 goto failure;
3963 for (x = 0; x < width; x++, str += chars_per_pixel)
3964 {
3965 Lisp_Object color_val =
3966 (*get_color_table) (color_table, str, chars_per_pixel);
3967
3968 XPutPixel (ximg, x, y,
3969 (INTEGERP (color_val) ? XINT (color_val)
3970 : FRAME_FOREGROUND_PIXEL (f)));
3971 #ifndef HAVE_NS
3972 XPutPixel (mask_img, x, y,
3973 (!EQ (color_val, Qt) ? PIX_MASK_DRAW
3974 : (have_mask = 1, PIX_MASK_RETAIN)));
3975 #else
3976 if (EQ (color_val, Qt))
3977 ns_set_alpha (ximg, x, y, 0);
3978 #endif
3979 }
3980 if (y + 1 < height)
3981 expect (',');
3982 }
3983
3984 img->width = width;
3985 img->height = height;
3986
3987 /* Maybe fill in the background field while we have ximg handy. */
3988 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
3989 IMAGE_BACKGROUND (img, f, ximg);
3990
3991 x_put_x_image (f, ximg, img->pixmap, width, height);
3992 x_destroy_x_image (ximg);
3993 #ifndef HAVE_NS
3994 if (have_mask)
3995 {
3996 /* Fill in the background_transparent field while we have the
3997 mask handy. */
3998 image_background_transparent (img, f, mask_img);
3999
4000 x_put_x_image (f, mask_img, img->mask, width, height);
4001 x_destroy_x_image (mask_img);
4002 }
4003 else
4004 {
4005 x_destroy_x_image (mask_img);
4006 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4007 img->mask = NO_PIXMAP;
4008 }
4009 #endif
4010 return 1;
4011
4012 failure:
4013 image_error ("Invalid XPM file (%s)", img->spec, Qnil);
4014 error:
4015 x_destroy_x_image (ximg);
4016 x_destroy_x_image (mask_img);
4017 x_clear_image (f, img);
4018 return 0;
4019
4020 #undef match
4021 #undef expect
4022 #undef expect_ident
4023 }
4024
4025 static int
4026 xpm_load (struct frame *f,
4027 struct image *img)
4028 {
4029 int success_p = 0;
4030 Lisp_Object file_name;
4031
4032 /* If IMG->spec specifies a file name, create a non-file spec from it. */
4033 file_name = image_spec_value (img->spec, QCfile, NULL);
4034 if (STRINGP (file_name))
4035 {
4036 Lisp_Object file;
4037 unsigned char *contents;
4038 ptrdiff_t size;
4039
4040 file = x_find_image_file (file_name);
4041 if (!STRINGP (file))
4042 {
4043 image_error ("Cannot find image file `%s'", file_name, Qnil);
4044 return 0;
4045 }
4046
4047 contents = slurp_file (SDATA (file), &size);
4048 if (contents == NULL)
4049 {
4050 image_error ("Error loading XPM image `%s'", img->spec, Qnil);
4051 return 0;
4052 }
4053
4054 success_p = xpm_load_image (f, img, contents, contents + size);
4055 xfree (contents);
4056 }
4057 else
4058 {
4059 Lisp_Object data;
4060
4061 data = image_spec_value (img->spec, QCdata, NULL);
4062 if (!STRINGP (data))
4063 {
4064 image_error ("Invalid image data `%s'", data, Qnil);
4065 return 0;
4066 }
4067 success_p = xpm_load_image (f, img, SDATA (data),
4068 SDATA (data) + SBYTES (data));
4069 }
4070
4071 return success_p;
4072 }
4073
4074 #endif /* HAVE_NS && !HAVE_XPM */
4075
4076
4077 \f
4078 /***********************************************************************
4079 Color table
4080 ***********************************************************************/
4081
4082 #ifdef COLOR_TABLE_SUPPORT
4083
4084 /* An entry in the color table mapping an RGB color to a pixel color. */
4085
4086 struct ct_color
4087 {
4088 int r, g, b;
4089 unsigned long pixel;
4090
4091 /* Next in color table collision list. */
4092 struct ct_color *next;
4093 };
4094
4095 /* The bucket vector size to use. Must be prime. */
4096
4097 #define CT_SIZE 101
4098
4099 /* Value is a hash of the RGB color given by R, G, and B. */
4100
4101 #define CT_HASH_RGB(R, G, B) (((R) << 16) ^ ((G) << 8) ^ (B))
4102
4103 /* The color hash table. */
4104
4105 static struct ct_color **ct_table;
4106
4107 /* Number of entries in the color table. */
4108
4109 static int ct_colors_allocated;
4110
4111 /* Initialize the color table. */
4112
4113 static void
4114 init_color_table (void)
4115 {
4116 int size = CT_SIZE * sizeof (*ct_table);
4117 ct_table = (struct ct_color **) xmalloc (size);
4118 memset (ct_table, 0, size);
4119 ct_colors_allocated = 0;
4120 }
4121
4122
4123 /* Free memory associated with the color table. */
4124
4125 static void
4126 free_color_table (void)
4127 {
4128 int i;
4129 struct ct_color *p, *next;
4130
4131 for (i = 0; i < CT_SIZE; ++i)
4132 for (p = ct_table[i]; p; p = next)
4133 {
4134 next = p->next;
4135 xfree (p);
4136 }
4137
4138 xfree (ct_table);
4139 ct_table = NULL;
4140 }
4141
4142
4143 /* Value is a pixel color for RGB color R, G, B on frame F. If an
4144 entry for that color already is in the color table, return the
4145 pixel color of that entry. Otherwise, allocate a new color for R,
4146 G, B, and make an entry in the color table. */
4147
4148 static unsigned long
4149 lookup_rgb_color (struct frame *f, int r, int g, int b)
4150 {
4151 unsigned hash = CT_HASH_RGB (r, g, b);
4152 int i = hash % CT_SIZE;
4153 struct ct_color *p;
4154 Display_Info *dpyinfo;
4155
4156 /* Handle TrueColor visuals specially, which improves performance by
4157 two orders of magnitude. Freeing colors on TrueColor visuals is
4158 a nop, and pixel colors specify RGB values directly. See also
4159 the Xlib spec, chapter 3.1. */
4160 dpyinfo = FRAME_X_DISPLAY_INFO (f);
4161 if (dpyinfo->red_bits > 0)
4162 {
4163 unsigned long pr, pg, pb;
4164
4165 /* Apply gamma-correction like normal color allocation does. */
4166 if (f->gamma)
4167 {
4168 XColor color;
4169 color.red = r, color.green = g, color.blue = b;
4170 gamma_correct (f, &color);
4171 r = color.red, g = color.green, b = color.blue;
4172 }
4173
4174 /* Scale down RGB values to the visual's bits per RGB, and shift
4175 them to the right position in the pixel color. Note that the
4176 original RGB values are 16-bit values, as usual in X. */
4177 pr = (r >> (16 - dpyinfo->red_bits)) << dpyinfo->red_offset;
4178 pg = (g >> (16 - dpyinfo->green_bits)) << dpyinfo->green_offset;
4179 pb = (b >> (16 - dpyinfo->blue_bits)) << dpyinfo->blue_offset;
4180
4181 /* Assemble the pixel color. */
4182 return pr | pg | pb;
4183 }
4184
4185 for (p = ct_table[i]; p; p = p->next)
4186 if (p->r == r && p->g == g && p->b == b)
4187 break;
4188
4189 if (p == NULL)
4190 {
4191
4192 #ifdef HAVE_X_WINDOWS
4193 XColor color;
4194 Colormap cmap;
4195 int rc;
4196
4197 color.red = r;
4198 color.green = g;
4199 color.blue = b;
4200
4201 cmap = FRAME_X_COLORMAP (f);
4202 rc = x_alloc_nearest_color (f, cmap, &color);
4203 if (rc)
4204 {
4205 ++ct_colors_allocated;
4206 p = (struct ct_color *) xmalloc (sizeof *p);
4207 p->r = r;
4208 p->g = g;
4209 p->b = b;
4210 p->pixel = color.pixel;
4211 p->next = ct_table[i];
4212 ct_table[i] = p;
4213 }
4214 else
4215 return FRAME_FOREGROUND_PIXEL (f);
4216
4217 #else
4218 COLORREF color;
4219 #ifdef HAVE_NTGUI
4220 color = PALETTERGB (r, g, b);
4221 #else
4222 color = RGB_TO_ULONG (r, g, b);
4223 #endif /* HAVE_NTGUI */
4224 ++ct_colors_allocated;
4225 p = (struct ct_color *) xmalloc (sizeof *p);
4226 p->r = r;
4227 p->g = g;
4228 p->b = b;
4229 p->pixel = color;
4230 p->next = ct_table[i];
4231 ct_table[i] = p;
4232 #endif /* HAVE_X_WINDOWS */
4233
4234 }
4235
4236 return p->pixel;
4237 }
4238
4239
4240 /* Look up pixel color PIXEL which is used on frame F in the color
4241 table. If not already present, allocate it. Value is PIXEL. */
4242
4243 static unsigned long
4244 lookup_pixel_color (struct frame *f, unsigned long pixel)
4245 {
4246 int i = pixel % CT_SIZE;
4247 struct ct_color *p;
4248
4249 for (p = ct_table[i]; p; p = p->next)
4250 if (p->pixel == pixel)
4251 break;
4252
4253 if (p == NULL)
4254 {
4255 XColor color;
4256 Colormap cmap;
4257 int rc;
4258
4259 #ifdef HAVE_X_WINDOWS
4260 cmap = FRAME_X_COLORMAP (f);
4261 color.pixel = pixel;
4262 x_query_color (f, &color);
4263 rc = x_alloc_nearest_color (f, cmap, &color);
4264 #else
4265 BLOCK_INPUT;
4266 cmap = DefaultColormapOfScreen (FRAME_X_SCREEN (f));
4267 color.pixel = pixel;
4268 XQueryColor (NULL, cmap, &color);
4269 rc = x_alloc_nearest_color (f, cmap, &color);
4270 UNBLOCK_INPUT;
4271 #endif /* HAVE_X_WINDOWS */
4272
4273 if (rc)
4274 {
4275 ++ct_colors_allocated;
4276
4277 p = (struct ct_color *) xmalloc (sizeof *p);
4278 p->r = color.red;
4279 p->g = color.green;
4280 p->b = color.blue;
4281 p->pixel = pixel;
4282 p->next = ct_table[i];
4283 ct_table[i] = p;
4284 }
4285 else
4286 return FRAME_FOREGROUND_PIXEL (f);
4287 }
4288 return p->pixel;
4289 }
4290
4291
4292 /* Value is a vector of all pixel colors contained in the color table,
4293 allocated via xmalloc. Set *N to the number of colors. */
4294
4295 static unsigned long *
4296 colors_in_color_table (int *n)
4297 {
4298 int i, j;
4299 struct ct_color *p;
4300 unsigned long *colors;
4301
4302 if (ct_colors_allocated == 0)
4303 {
4304 *n = 0;
4305 colors = NULL;
4306 }
4307 else
4308 {
4309 colors = (unsigned long *) xmalloc (ct_colors_allocated
4310 * sizeof *colors);
4311 *n = ct_colors_allocated;
4312
4313 for (i = j = 0; i < CT_SIZE; ++i)
4314 for (p = ct_table[i]; p; p = p->next)
4315 colors[j++] = p->pixel;
4316 }
4317
4318 return colors;
4319 }
4320
4321 #else /* COLOR_TABLE_SUPPORT */
4322
4323 static unsigned long
4324 lookup_rgb_color (struct frame *f, int r, int g, int b)
4325 {
4326 unsigned long pixel;
4327
4328 #ifdef HAVE_NTGUI
4329 pixel = PALETTERGB (r >> 8, g >> 8, b >> 8);
4330 #endif /* HAVE_NTGUI */
4331
4332 #ifdef HAVE_NS
4333 pixel = RGB_TO_ULONG (r >> 8, g >> 8, b >> 8);
4334 #endif /* HAVE_NS */
4335 return pixel;
4336 }
4337
4338 static void
4339 init_color_table (void)
4340 {
4341 }
4342 #endif /* COLOR_TABLE_SUPPORT */
4343
4344 \f
4345 /***********************************************************************
4346 Algorithms
4347 ***********************************************************************/
4348
4349 static XColor *x_to_xcolors (struct frame *, struct image *, int);
4350 static void x_from_xcolors (struct frame *, struct image *, XColor *);
4351 static void x_detect_edges (struct frame *, struct image *, int[9], int);
4352
4353 #ifdef HAVE_NTGUI
4354 static void XPutPixel (XImagePtr , int, int, COLORREF);
4355 #endif /* HAVE_NTGUI */
4356
4357 /* Edge detection matrices for different edge-detection
4358 strategies. */
4359
4360 static int emboss_matrix[9] = {
4361 /* x - 1 x x + 1 */
4362 2, -1, 0, /* y - 1 */
4363 -1, 0, 1, /* y */
4364 0, 1, -2 /* y + 1 */
4365 };
4366
4367 static int laplace_matrix[9] = {
4368 /* x - 1 x x + 1 */
4369 1, 0, 0, /* y - 1 */
4370 0, 0, 0, /* y */
4371 0, 0, -1 /* y + 1 */
4372 };
4373
4374 /* Value is the intensity of the color whose red/green/blue values
4375 are R, G, and B. */
4376
4377 #define COLOR_INTENSITY(R, G, B) ((2 * (R) + 3 * (G) + (B)) / 6)
4378
4379
4380 /* On frame F, return an array of XColor structures describing image
4381 IMG->pixmap. Each XColor structure has its pixel color set. RGB_P
4382 non-zero means also fill the red/green/blue members of the XColor
4383 structures. Value is a pointer to the array of XColors structures,
4384 allocated with xmalloc; it must be freed by the caller. */
4385
4386 static XColor *
4387 x_to_xcolors (struct frame *f, struct image *img, int rgb_p)
4388 {
4389 int x, y;
4390 XColor *colors, *p;
4391 XImagePtr_or_DC ximg;
4392 #ifdef HAVE_NTGUI
4393 HDC hdc;
4394 HGDIOBJ prev;
4395 #endif /* HAVE_NTGUI */
4396
4397 colors = (XColor *) xmalloc (img->width * img->height * sizeof *colors);
4398
4399 #ifndef HAVE_NTGUI
4400 /* Get the X image IMG->pixmap. */
4401 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
4402 0, 0, img->width, img->height, ~0, ZPixmap);
4403 #else
4404 /* Load the image into a memory device context. */
4405 hdc = get_frame_dc (f);
4406 ximg = CreateCompatibleDC (hdc);
4407 release_frame_dc (f, hdc);
4408 prev = SelectObject (ximg, img->pixmap);
4409 #endif /* HAVE_NTGUI */
4410
4411 /* Fill the `pixel' members of the XColor array. I wished there
4412 were an easy and portable way to circumvent XGetPixel. */
4413 p = colors;
4414 for (y = 0; y < img->height; ++y)
4415 {
4416 XColor *row = p;
4417
4418 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
4419 for (x = 0; x < img->width; ++x, ++p)
4420 p->pixel = GET_PIXEL (ximg, x, y);
4421 if (rgb_p)
4422 x_query_colors (f, row, img->width);
4423
4424 #else
4425
4426 for (x = 0; x < img->width; ++x, ++p)
4427 {
4428 /* W32_TODO: palette support needed here? */
4429 p->pixel = GET_PIXEL (ximg, x, y);
4430 if (rgb_p)
4431 {
4432 p->red = RED16_FROM_ULONG (p->pixel);
4433 p->green = GREEN16_FROM_ULONG (p->pixel);
4434 p->blue = BLUE16_FROM_ULONG (p->pixel);
4435 }
4436 }
4437 #endif /* HAVE_X_WINDOWS */
4438 }
4439
4440 Destroy_Image (ximg, prev);
4441
4442 return colors;
4443 }
4444
4445 #ifdef HAVE_NTGUI
4446
4447 /* Put a pixel of COLOR at position X, Y in XIMG. XIMG must have been
4448 created with CreateDIBSection, with the pointer to the bit values
4449 stored in ximg->data. */
4450
4451 static void
4452 XPutPixel (XImagePtr ximg, int x, int y, COLORREF color)
4453 {
4454 int width = ximg->info.bmiHeader.biWidth;
4455 unsigned char * pixel;
4456
4457 /* True color images. */
4458 if (ximg->info.bmiHeader.biBitCount == 24)
4459 {
4460 int rowbytes = width * 3;
4461 /* Ensure scanlines are aligned on 4 byte boundaries. */
4462 if (rowbytes % 4)
4463 rowbytes += 4 - (rowbytes % 4);
4464
4465 pixel = ximg->data + y * rowbytes + x * 3;
4466 /* Windows bitmaps are in BGR order. */
4467 *pixel = GetBValue (color);
4468 *(pixel + 1) = GetGValue (color);
4469 *(pixel + 2) = GetRValue (color);
4470 }
4471 /* Monochrome images. */
4472 else if (ximg->info.bmiHeader.biBitCount == 1)
4473 {
4474 int rowbytes = width / 8;
4475 /* Ensure scanlines are aligned on 4 byte boundaries. */
4476 if (rowbytes % 4)
4477 rowbytes += 4 - (rowbytes % 4);
4478 pixel = ximg->data + y * rowbytes + x / 8;
4479 /* Filter out palette info. */
4480 if (color & 0x00ffffff)
4481 *pixel = *pixel | (1 << x % 8);
4482 else
4483 *pixel = *pixel & ~(1 << x % 8);
4484 }
4485 else
4486 image_error ("XPutPixel: palette image not supported", Qnil, Qnil);
4487 }
4488
4489 #endif /* HAVE_NTGUI */
4490
4491 /* Create IMG->pixmap from an array COLORS of XColor structures, whose
4492 RGB members are set. F is the frame on which this all happens.
4493 COLORS will be freed; an existing IMG->pixmap will be freed, too. */
4494
4495 static void
4496 x_from_xcolors (struct frame *f, struct image *img, XColor *colors)
4497 {
4498 int x, y;
4499 XImagePtr oimg = NULL;
4500 Pixmap pixmap;
4501 XColor *p;
4502
4503 init_color_table ();
4504
4505 x_create_x_image_and_pixmap (f, img->width, img->height, 0,
4506 &oimg, &pixmap);
4507 p = colors;
4508 for (y = 0; y < img->height; ++y)
4509 for (x = 0; x < img->width; ++x, ++p)
4510 {
4511 unsigned long pixel;
4512 pixel = lookup_rgb_color (f, p->red, p->green, p->blue);
4513 XPutPixel (oimg, x, y, pixel);
4514 }
4515
4516 xfree (colors);
4517 x_clear_image_1 (f, img, 1, 0, 1);
4518
4519 x_put_x_image (f, oimg, pixmap, img->width, img->height);
4520 x_destroy_x_image (oimg);
4521 img->pixmap = pixmap;
4522 #ifdef COLOR_TABLE_SUPPORT
4523 img->colors = colors_in_color_table (&img->ncolors);
4524 free_color_table ();
4525 #endif /* COLOR_TABLE_SUPPORT */
4526 }
4527
4528
4529 /* On frame F, perform edge-detection on image IMG.
4530
4531 MATRIX is a nine-element array specifying the transformation
4532 matrix. See emboss_matrix for an example.
4533
4534 COLOR_ADJUST is a color adjustment added to each pixel of the
4535 outgoing image. */
4536
4537 static void
4538 x_detect_edges (struct frame *f, struct image *img, int *matrix, int color_adjust)
4539 {
4540 XColor *colors = x_to_xcolors (f, img, 1);
4541 XColor *new, *p;
4542 int x, y, i, sum;
4543
4544 for (i = sum = 0; i < 9; ++i)
4545 sum += eabs (matrix[i]);
4546
4547 #define COLOR(A, X, Y) ((A) + (Y) * img->width + (X))
4548
4549 new = (XColor *) xmalloc (img->width * img->height * sizeof *new);
4550
4551 for (y = 0; y < img->height; ++y)
4552 {
4553 p = COLOR (new, 0, y);
4554 p->red = p->green = p->blue = 0xffff/2;
4555 p = COLOR (new, img->width - 1, y);
4556 p->red = p->green = p->blue = 0xffff/2;
4557 }
4558
4559 for (x = 1; x < img->width - 1; ++x)
4560 {
4561 p = COLOR (new, x, 0);
4562 p->red = p->green = p->blue = 0xffff/2;
4563 p = COLOR (new, x, img->height - 1);
4564 p->red = p->green = p->blue = 0xffff/2;
4565 }
4566
4567 for (y = 1; y < img->height - 1; ++y)
4568 {
4569 p = COLOR (new, 1, y);
4570
4571 for (x = 1; x < img->width - 1; ++x, ++p)
4572 {
4573 int r, g, b, yy, xx;
4574
4575 r = g = b = i = 0;
4576 for (yy = y - 1; yy < y + 2; ++yy)
4577 for (xx = x - 1; xx < x + 2; ++xx, ++i)
4578 if (matrix[i])
4579 {
4580 XColor *t = COLOR (colors, xx, yy);
4581 r += matrix[i] * t->red;
4582 g += matrix[i] * t->green;
4583 b += matrix[i] * t->blue;
4584 }
4585
4586 r = (r / sum + color_adjust) & 0xffff;
4587 g = (g / sum + color_adjust) & 0xffff;
4588 b = (b / sum + color_adjust) & 0xffff;
4589 p->red = p->green = p->blue = COLOR_INTENSITY (r, g, b);
4590 }
4591 }
4592
4593 xfree (colors);
4594 x_from_xcolors (f, img, new);
4595
4596 #undef COLOR
4597 }
4598
4599
4600 /* Perform the pre-defined `emboss' edge-detection on image IMG
4601 on frame F. */
4602
4603 static void
4604 x_emboss (struct frame *f, struct image *img)
4605 {
4606 x_detect_edges (f, img, emboss_matrix, 0xffff / 2);
4607 }
4608
4609
4610 /* Transform image IMG which is used on frame F with a Laplace
4611 edge-detection algorithm. The result is an image that can be used
4612 to draw disabled buttons, for example. */
4613
4614 static void
4615 x_laplace (struct frame *f, struct image *img)
4616 {
4617 x_detect_edges (f, img, laplace_matrix, 45000);
4618 }
4619
4620
4621 /* Perform edge-detection on image IMG on frame F, with specified
4622 transformation matrix MATRIX and color-adjustment COLOR_ADJUST.
4623
4624 MATRIX must be either
4625
4626 - a list of at least 9 numbers in row-major form
4627 - a vector of at least 9 numbers
4628
4629 COLOR_ADJUST nil means use a default; otherwise it must be a
4630 number. */
4631
4632 static void
4633 x_edge_detection (struct frame *f, struct image *img, Lisp_Object matrix,
4634 Lisp_Object color_adjust)
4635 {
4636 int i = 0;
4637 int trans[9];
4638
4639 if (CONSP (matrix))
4640 {
4641 for (i = 0;
4642 i < 9 && CONSP (matrix) && NUMBERP (XCAR (matrix));
4643 ++i, matrix = XCDR (matrix))
4644 trans[i] = XFLOATINT (XCAR (matrix));
4645 }
4646 else if (VECTORP (matrix) && ASIZE (matrix) >= 9)
4647 {
4648 for (i = 0; i < 9 && NUMBERP (AREF (matrix, i)); ++i)
4649 trans[i] = XFLOATINT (AREF (matrix, i));
4650 }
4651
4652 if (NILP (color_adjust))
4653 color_adjust = make_number (0xffff / 2);
4654
4655 if (i == 9 && NUMBERP (color_adjust))
4656 x_detect_edges (f, img, trans, XFLOATINT (color_adjust));
4657 }
4658
4659
4660 /* Transform image IMG on frame F so that it looks disabled. */
4661
4662 static void
4663 x_disable_image (struct frame *f, struct image *img)
4664 {
4665 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
4666 #ifdef HAVE_NTGUI
4667 int n_planes = dpyinfo->n_planes * dpyinfo->n_cbits;
4668 #else
4669 int n_planes = dpyinfo->n_planes;
4670 #endif /* HAVE_NTGUI */
4671
4672 if (n_planes >= 2)
4673 {
4674 /* Color (or grayscale). Convert to gray, and equalize. Just
4675 drawing such images with a stipple can look very odd, so
4676 we're using this method instead. */
4677 XColor *colors = x_to_xcolors (f, img, 1);
4678 XColor *p, *end;
4679 const int h = 15000;
4680 const int l = 30000;
4681
4682 for (p = colors, end = colors + img->width * img->height;
4683 p < end;
4684 ++p)
4685 {
4686 int i = COLOR_INTENSITY (p->red, p->green, p->blue);
4687 int i2 = (0xffff - h - l) * i / 0xffff + l;
4688 p->red = p->green = p->blue = i2;
4689 }
4690
4691 x_from_xcolors (f, img, colors);
4692 }
4693
4694 /* Draw a cross over the disabled image, if we must or if we
4695 should. */
4696 if (n_planes < 2 || cross_disabled_images)
4697 {
4698 #ifndef HAVE_NTGUI
4699 Display *dpy = FRAME_X_DISPLAY (f);
4700 GC gc;
4701
4702 #ifndef HAVE_NS /* TODO: NS support, however this not needed for toolbars */
4703
4704 #define MaskForeground(f) WHITE_PIX_DEFAULT (f)
4705
4706 gc = XCreateGC (dpy, img->pixmap, 0, NULL);
4707 XSetForeground (dpy, gc, BLACK_PIX_DEFAULT (f));
4708 XDrawLine (dpy, img->pixmap, gc, 0, 0,
4709 img->width - 1, img->height - 1);
4710 XDrawLine (dpy, img->pixmap, gc, 0, img->height - 1,
4711 img->width - 1, 0);
4712 XFreeGC (dpy, gc);
4713
4714 if (img->mask)
4715 {
4716 gc = XCreateGC (dpy, img->mask, 0, NULL);
4717 XSetForeground (dpy, gc, MaskForeground (f));
4718 XDrawLine (dpy, img->mask, gc, 0, 0,
4719 img->width - 1, img->height - 1);
4720 XDrawLine (dpy, img->mask, gc, 0, img->height - 1,
4721 img->width - 1, 0);
4722 XFreeGC (dpy, gc);
4723 }
4724 #endif /* !HAVE_NS */
4725 #else
4726 HDC hdc, bmpdc;
4727 HGDIOBJ prev;
4728
4729 hdc = get_frame_dc (f);
4730 bmpdc = CreateCompatibleDC (hdc);
4731 release_frame_dc (f, hdc);
4732
4733 prev = SelectObject (bmpdc, img->pixmap);
4734
4735 SetTextColor (bmpdc, BLACK_PIX_DEFAULT (f));
4736 MoveToEx (bmpdc, 0, 0, NULL);
4737 LineTo (bmpdc, img->width - 1, img->height - 1);
4738 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4739 LineTo (bmpdc, img->width - 1, 0);
4740
4741 if (img->mask)
4742 {
4743 SelectObject (bmpdc, img->mask);
4744 SetTextColor (bmpdc, WHITE_PIX_DEFAULT (f));
4745 MoveToEx (bmpdc, 0, 0, NULL);
4746 LineTo (bmpdc, img->width - 1, img->height - 1);
4747 MoveToEx (bmpdc, 0, img->height - 1, NULL);
4748 LineTo (bmpdc, img->width - 1, 0);
4749 }
4750 SelectObject (bmpdc, prev);
4751 DeleteDC (bmpdc);
4752 #endif /* HAVE_NTGUI */
4753 }
4754 }
4755
4756
4757 /* Build a mask for image IMG which is used on frame F. FILE is the
4758 name of an image file, for error messages. HOW determines how to
4759 determine the background color of IMG. If it is a list '(R G B)',
4760 with R, G, and B being integers >= 0, take that as the color of the
4761 background. Otherwise, determine the background color of IMG
4762 heuristically. Value is non-zero if successful. */
4763
4764 static int
4765 x_build_heuristic_mask (struct frame *f, struct image *img, Lisp_Object how)
4766 {
4767 XImagePtr_or_DC ximg;
4768 #ifndef HAVE_NTGUI
4769 XImagePtr mask_img;
4770 #else
4771 HDC frame_dc;
4772 HGDIOBJ prev;
4773 char *mask_img;
4774 int row_width;
4775 #endif /* HAVE_NTGUI */
4776 int x, y, rc, use_img_background;
4777 unsigned long bg = 0;
4778
4779 if (img->mask)
4780 {
4781 Free_Pixmap (FRAME_X_DISPLAY (f), img->mask);
4782 img->mask = NO_PIXMAP;
4783 img->background_transparent_valid = 0;
4784 }
4785
4786 #ifndef HAVE_NTGUI
4787 #ifndef HAVE_NS
4788 /* Create an image and pixmap serving as mask. */
4789 rc = x_create_x_image_and_pixmap (f, img->width, img->height, 1,
4790 &mask_img, &img->mask);
4791 if (!rc)
4792 return 0;
4793 #endif /* !HAVE_NS */
4794
4795 /* Get the X image of IMG->pixmap. */
4796 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap, 0, 0,
4797 img->width, img->height,
4798 ~0, ZPixmap);
4799 #else
4800 /* Create the bit array serving as mask. */
4801 row_width = (img->width + 7) / 8;
4802 mask_img = xmalloc (row_width * img->height);
4803 memset (mask_img, 0, row_width * img->height);
4804
4805 /* Create a memory device context for IMG->pixmap. */
4806 frame_dc = get_frame_dc (f);
4807 ximg = CreateCompatibleDC (frame_dc);
4808 release_frame_dc (f, frame_dc);
4809 prev = SelectObject (ximg, img->pixmap);
4810 #endif /* HAVE_NTGUI */
4811
4812 /* Determine the background color of ximg. If HOW is `(R G B)'
4813 take that as color. Otherwise, use the image's background color. */
4814 use_img_background = 1;
4815
4816 if (CONSP (how))
4817 {
4818 int rgb[3], i;
4819
4820 for (i = 0; i < 3 && CONSP (how) && NATNUMP (XCAR (how)); ++i)
4821 {
4822 rgb[i] = XFASTINT (XCAR (how)) & 0xffff;
4823 how = XCDR (how);
4824 }
4825
4826 if (i == 3 && NILP (how))
4827 {
4828 char color_name[30];
4829 sprintf (color_name, "#%04x%04x%04x", rgb[0], rgb[1], rgb[2]);
4830 bg = (
4831 #ifdef HAVE_NTGUI
4832 0x00ffffff & /* Filter out palette info. */
4833 #endif /* HAVE_NTGUI */
4834 x_alloc_image_color (f, img, build_string (color_name), 0));
4835 use_img_background = 0;
4836 }
4837 }
4838
4839 if (use_img_background)
4840 bg = four_corners_best (ximg, img->corners, img->width, img->height);
4841
4842 /* Set all bits in mask_img to 1 whose color in ximg is different
4843 from the background color bg. */
4844 #ifndef HAVE_NTGUI
4845 for (y = 0; y < img->height; ++y)
4846 for (x = 0; x < img->width; ++x)
4847 #ifndef HAVE_NS
4848 XPutPixel (mask_img, x, y, (XGetPixel (ximg, x, y) != bg
4849 ? PIX_MASK_DRAW : PIX_MASK_RETAIN));
4850 #else
4851 if (XGetPixel (ximg, x, y) == bg)
4852 ns_set_alpha (ximg, x, y, 0);
4853 #endif /* HAVE_NS */
4854 #ifndef HAVE_NS
4855 /* Fill in the background_transparent field while we have the mask handy. */
4856 image_background_transparent (img, f, mask_img);
4857
4858 /* Put mask_img into img->mask. */
4859 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
4860 x_destroy_x_image (mask_img);
4861 #endif /* !HAVE_NS */
4862 #else
4863 for (y = 0; y < img->height; ++y)
4864 for (x = 0; x < img->width; ++x)
4865 {
4866 COLORREF p = GetPixel (ximg, x, y);
4867 if (p != bg)
4868 mask_img[y * row_width + x / 8] |= 1 << (x % 8);
4869 }
4870
4871 /* Create the mask image. */
4872 img->mask = w32_create_pixmap_from_bitmap_data (img->width, img->height,
4873 mask_img);
4874 /* Fill in the background_transparent field while we have the mask handy. */
4875 SelectObject (ximg, img->mask);
4876 image_background_transparent (img, f, ximg);
4877
4878 /* Was: x_destroy_x_image ((XImagePtr )mask_img); which seems bogus ++kfs */
4879 xfree (mask_img);
4880 #endif /* HAVE_NTGUI */
4881
4882 Destroy_Image (ximg, prev);
4883
4884 return 1;
4885 }
4886
4887 \f
4888 /***********************************************************************
4889 PBM (mono, gray, color)
4890 ***********************************************************************/
4891
4892 static int pbm_image_p (Lisp_Object object);
4893 static int pbm_load (struct frame *f, struct image *img);
4894 static int pbm_scan_number (unsigned char **, unsigned char *);
4895
4896 /* The symbol `pbm' identifying images of this type. */
4897
4898 static Lisp_Object Qpbm;
4899
4900 /* Indices of image specification fields in gs_format, below. */
4901
4902 enum pbm_keyword_index
4903 {
4904 PBM_TYPE,
4905 PBM_FILE,
4906 PBM_DATA,
4907 PBM_ASCENT,
4908 PBM_MARGIN,
4909 PBM_RELIEF,
4910 PBM_ALGORITHM,
4911 PBM_HEURISTIC_MASK,
4912 PBM_MASK,
4913 PBM_FOREGROUND,
4914 PBM_BACKGROUND,
4915 PBM_LAST
4916 };
4917
4918 /* Vector of image_keyword structures describing the format
4919 of valid user-defined image specifications. */
4920
4921 static const struct image_keyword pbm_format[PBM_LAST] =
4922 {
4923 {":type", IMAGE_SYMBOL_VALUE, 1},
4924 {":file", IMAGE_STRING_VALUE, 0},
4925 {":data", IMAGE_STRING_VALUE, 0},
4926 {":ascent", IMAGE_ASCENT_VALUE, 0},
4927 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
4928 {":relief", IMAGE_INTEGER_VALUE, 0},
4929 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4930 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4931 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
4932 {":foreground", IMAGE_STRING_OR_NIL_VALUE, 0},
4933 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
4934 };
4935
4936 /* Structure describing the image type `pbm'. */
4937
4938 static struct image_type pbm_type =
4939 {
4940 &Qpbm,
4941 pbm_image_p,
4942 pbm_load,
4943 x_clear_image,
4944 NULL
4945 };
4946
4947
4948 /* Return non-zero if OBJECT is a valid PBM image specification. */
4949
4950 static int
4951 pbm_image_p (Lisp_Object object)
4952 {
4953 struct image_keyword fmt[PBM_LAST];
4954
4955 memcpy (fmt, pbm_format, sizeof fmt);
4956
4957 if (!parse_image_spec (object, fmt, PBM_LAST, Qpbm))
4958 return 0;
4959
4960 /* Must specify either :data or :file. */
4961 return fmt[PBM_DATA].count + fmt[PBM_FILE].count == 1;
4962 }
4963
4964
4965 /* Scan a decimal number from *S and return it. Advance *S while
4966 reading the number. END is the end of the string. Value is -1 at
4967 end of input. */
4968
4969 static int
4970 pbm_scan_number (unsigned char **s, unsigned char *end)
4971 {
4972 int c = 0, val = -1;
4973
4974 while (*s < end)
4975 {
4976 /* Skip white-space. */
4977 while (*s < end && (c = *(*s)++, isspace (c)))
4978 ;
4979
4980 if (c == '#')
4981 {
4982 /* Skip comment to end of line. */
4983 while (*s < end && (c = *(*s)++, c != '\n'))
4984 ;
4985 }
4986 else if (isdigit (c))
4987 {
4988 /* Read decimal number. */
4989 val = c - '0';
4990 while (*s < end && (c = *(*s)++, isdigit (c)))
4991 val = 10 * val + c - '0';
4992 break;
4993 }
4994 else
4995 break;
4996 }
4997
4998 return val;
4999 }
5000
5001
5002 #ifdef HAVE_NTGUI
5003 #if 0 /* Unused. ++kfs */
5004
5005 /* Read FILE into memory. Value is a pointer to a buffer allocated
5006 with xmalloc holding FILE's contents. Value is null if an error
5007 occurred. *SIZE is set to the size of the file. */
5008
5009 static char *
5010 pbm_read_file (Lisp_Object file, int *size)
5011 {
5012 FILE *fp = NULL;
5013 char *buf = NULL;
5014 struct stat st;
5015
5016 if (stat (SDATA (file), &st) == 0
5017 && (fp = fopen (SDATA (file), "rb")) != NULL
5018 && 0 <= st.st_size && st.st_size <= min (PTRDIFF_MAX, SIZE_MAX)
5019 && (buf = (char *) xmalloc (st.st_size),
5020 fread (buf, 1, st.st_size, fp) == st.st_size))
5021 {
5022 *size = st.st_size;
5023 fclose (fp);
5024 }
5025 else
5026 {
5027 if (fp)
5028 fclose (fp);
5029 if (buf)
5030 {
5031 xfree (buf);
5032 buf = NULL;
5033 }
5034 }
5035
5036 return buf;
5037 }
5038 #endif
5039 #endif /* HAVE_NTGUI */
5040
5041 /* Load PBM image IMG for use on frame F. */
5042
5043 static int
5044 pbm_load (struct frame *f, struct image *img)
5045 {
5046 int raw_p, x, y;
5047 int width, height, max_color_idx = 0;
5048 XImagePtr ximg;
5049 Lisp_Object file, specified_file;
5050 enum {PBM_MONO, PBM_GRAY, PBM_COLOR} type;
5051 unsigned char *contents = NULL;
5052 unsigned char *end, *p;
5053 ptrdiff_t size;
5054
5055 specified_file = image_spec_value (img->spec, QCfile, NULL);
5056
5057 if (STRINGP (specified_file))
5058 {
5059 file = x_find_image_file (specified_file);
5060 if (!STRINGP (file))
5061 {
5062 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5063 return 0;
5064 }
5065
5066 contents = slurp_file (SSDATA (file), &size);
5067 if (contents == NULL)
5068 {
5069 image_error ("Error reading `%s'", file, Qnil);
5070 return 0;
5071 }
5072
5073 p = contents;
5074 end = contents + size;
5075 }
5076 else
5077 {
5078 Lisp_Object data;
5079 data = image_spec_value (img->spec, QCdata, NULL);
5080 if (!STRINGP (data))
5081 {
5082 image_error ("Invalid image data `%s'", data, Qnil);
5083 return 0;
5084 }
5085 p = SDATA (data);
5086 end = p + SBYTES (data);
5087 }
5088
5089 /* Check magic number. */
5090 if (end - p < 2 || *p++ != 'P')
5091 {
5092 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5093 error:
5094 xfree (contents);
5095 return 0;
5096 }
5097
5098 switch (*p++)
5099 {
5100 case '1':
5101 raw_p = 0, type = PBM_MONO;
5102 break;
5103
5104 case '2':
5105 raw_p = 0, type = PBM_GRAY;
5106 break;
5107
5108 case '3':
5109 raw_p = 0, type = PBM_COLOR;
5110 break;
5111
5112 case '4':
5113 raw_p = 1, type = PBM_MONO;
5114 break;
5115
5116 case '5':
5117 raw_p = 1, type = PBM_GRAY;
5118 break;
5119
5120 case '6':
5121 raw_p = 1, type = PBM_COLOR;
5122 break;
5123
5124 default:
5125 image_error ("Not a PBM image: `%s'", img->spec, Qnil);
5126 goto error;
5127 }
5128
5129 /* Read width, height, maximum color-component. Characters
5130 starting with `#' up to the end of a line are ignored. */
5131 width = pbm_scan_number (&p, end);
5132 height = pbm_scan_number (&p, end);
5133
5134 if (type != PBM_MONO)
5135 {
5136 max_color_idx = pbm_scan_number (&p, end);
5137 if (max_color_idx > 65535 || max_color_idx < 0)
5138 {
5139 image_error ("Unsupported maximum PBM color value", Qnil, Qnil);
5140 goto error;
5141 }
5142 }
5143
5144 if (!check_image_size (f, width, height))
5145 {
5146 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5147 goto error;
5148 }
5149
5150 if (!x_create_x_image_and_pixmap (f, width, height, 0,
5151 &ximg, &img->pixmap))
5152 goto error;
5153
5154 /* Initialize the color hash table. */
5155 init_color_table ();
5156
5157 if (type == PBM_MONO)
5158 {
5159 int c = 0, g;
5160 struct image_keyword fmt[PBM_LAST];
5161 unsigned long fg = FRAME_FOREGROUND_PIXEL (f);
5162 unsigned long bg = FRAME_BACKGROUND_PIXEL (f);
5163
5164 /* Parse the image specification. */
5165 memcpy (fmt, pbm_format, sizeof fmt);
5166 parse_image_spec (img->spec, fmt, PBM_LAST, Qpbm);
5167
5168 /* Get foreground and background colors, maybe allocate colors. */
5169 if (fmt[PBM_FOREGROUND].count
5170 && STRINGP (fmt[PBM_FOREGROUND].value))
5171 fg = x_alloc_image_color (f, img, fmt[PBM_FOREGROUND].value, fg);
5172 if (fmt[PBM_BACKGROUND].count
5173 && STRINGP (fmt[PBM_BACKGROUND].value))
5174 {
5175 bg = x_alloc_image_color (f, img, fmt[PBM_BACKGROUND].value, bg);
5176 img->background = bg;
5177 img->background_valid = 1;
5178 }
5179
5180 for (y = 0; y < height; ++y)
5181 for (x = 0; x < width; ++x)
5182 {
5183 if (raw_p)
5184 {
5185 if ((x & 7) == 0)
5186 {
5187 if (p >= end)
5188 {
5189 x_destroy_x_image (ximg);
5190 x_clear_image (f, img);
5191 image_error ("Invalid image size in image `%s'",
5192 img->spec, Qnil);
5193 goto error;
5194 }
5195 c = *p++;
5196 }
5197 g = c & 0x80;
5198 c <<= 1;
5199 }
5200 else
5201 g = pbm_scan_number (&p, end);
5202
5203 XPutPixel (ximg, x, y, g ? fg : bg);
5204 }
5205 }
5206 else
5207 {
5208 int expected_size = height * width;
5209 if (max_color_idx > 255)
5210 expected_size *= 2;
5211 if (type == PBM_COLOR)
5212 expected_size *= 3;
5213
5214 if (raw_p && p + expected_size > end)
5215 {
5216 x_destroy_x_image (ximg);
5217 x_clear_image (f, img);
5218 image_error ("Invalid image size in image `%s'",
5219 img->spec, Qnil);
5220 goto error;
5221 }
5222
5223 for (y = 0; y < height; ++y)
5224 for (x = 0; x < width; ++x)
5225 {
5226 int r, g, b;
5227
5228 if (type == PBM_GRAY && raw_p)
5229 {
5230 r = g = b = *p++;
5231 if (max_color_idx > 255)
5232 r = g = b = r * 256 + *p++;
5233 }
5234 else if (type == PBM_GRAY)
5235 r = g = b = pbm_scan_number (&p, end);
5236 else if (raw_p)
5237 {
5238 r = *p++;
5239 if (max_color_idx > 255)
5240 r = r * 256 + *p++;
5241 g = *p++;
5242 if (max_color_idx > 255)
5243 g = g * 256 + *p++;
5244 b = *p++;
5245 if (max_color_idx > 255)
5246 b = b * 256 + *p++;
5247 }
5248 else
5249 {
5250 r = pbm_scan_number (&p, end);
5251 g = pbm_scan_number (&p, end);
5252 b = pbm_scan_number (&p, end);
5253 }
5254
5255 if (r < 0 || g < 0 || b < 0)
5256 {
5257 x_destroy_x_image (ximg);
5258 image_error ("Invalid pixel value in image `%s'",
5259 img->spec, Qnil);
5260 goto error;
5261 }
5262
5263 /* RGB values are now in the range 0..max_color_idx.
5264 Scale this to the range 0..0xffff supported by X. */
5265 r = (double) r * 65535 / max_color_idx;
5266 g = (double) g * 65535 / max_color_idx;
5267 b = (double) b * 65535 / max_color_idx;
5268 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5269 }
5270 }
5271
5272 #ifdef COLOR_TABLE_SUPPORT
5273 /* Store in IMG->colors the colors allocated for the image, and
5274 free the color table. */
5275 img->colors = colors_in_color_table (&img->ncolors);
5276 free_color_table ();
5277 #endif /* COLOR_TABLE_SUPPORT */
5278
5279 img->width = width;
5280 img->height = height;
5281
5282 /* Maybe fill in the background field while we have ximg handy. */
5283
5284 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5285 /* Casting avoids a GCC warning. */
5286 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5287
5288 /* Put the image into a pixmap. */
5289 x_put_x_image (f, ximg, img->pixmap, width, height);
5290 x_destroy_x_image (ximg);
5291
5292 /* X and W32 versions did it here, MAC version above. ++kfs
5293 img->width = width;
5294 img->height = height; */
5295
5296 xfree (contents);
5297 return 1;
5298 }
5299
5300 \f
5301 /***********************************************************************
5302 PNG
5303 ***********************************************************************/
5304
5305 #if defined (HAVE_PNG) || defined (HAVE_NS)
5306
5307 /* Function prototypes. */
5308
5309 static int png_image_p (Lisp_Object object);
5310 static int png_load (struct frame *f, struct image *img);
5311
5312 /* The symbol `png' identifying images of this type. */
5313
5314 static Lisp_Object Qpng;
5315
5316 /* Indices of image specification fields in png_format, below. */
5317
5318 enum png_keyword_index
5319 {
5320 PNG_TYPE,
5321 PNG_DATA,
5322 PNG_FILE,
5323 PNG_ASCENT,
5324 PNG_MARGIN,
5325 PNG_RELIEF,
5326 PNG_ALGORITHM,
5327 PNG_HEURISTIC_MASK,
5328 PNG_MASK,
5329 PNG_BACKGROUND,
5330 PNG_LAST
5331 };
5332
5333 /* Vector of image_keyword structures describing the format
5334 of valid user-defined image specifications. */
5335
5336 static const struct image_keyword png_format[PNG_LAST] =
5337 {
5338 {":type", IMAGE_SYMBOL_VALUE, 1},
5339 {":data", IMAGE_STRING_VALUE, 0},
5340 {":file", IMAGE_STRING_VALUE, 0},
5341 {":ascent", IMAGE_ASCENT_VALUE, 0},
5342 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
5343 {":relief", IMAGE_INTEGER_VALUE, 0},
5344 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5345 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5346 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5347 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5348 };
5349
5350 /* Structure describing the image type `png'. */
5351
5352 static struct image_type png_type =
5353 {
5354 &Qpng,
5355 png_image_p,
5356 png_load,
5357 x_clear_image,
5358 NULL
5359 };
5360
5361 /* Return non-zero if OBJECT is a valid PNG image specification. */
5362
5363 static int
5364 png_image_p (Lisp_Object object)
5365 {
5366 struct image_keyword fmt[PNG_LAST];
5367 memcpy (fmt, png_format, sizeof fmt);
5368
5369 if (!parse_image_spec (object, fmt, PNG_LAST, Qpng))
5370 return 0;
5371
5372 /* Must specify either the :data or :file keyword. */
5373 return fmt[PNG_FILE].count + fmt[PNG_DATA].count == 1;
5374 }
5375
5376 #endif /* HAVE_PNG || HAVE_NS */
5377
5378
5379 #ifdef HAVE_PNG
5380
5381 #ifdef HAVE_NTGUI
5382 /* PNG library details. */
5383
5384 DEF_IMGLIB_FN (png_voidp, png_get_io_ptr, (png_structp));
5385 DEF_IMGLIB_FN (int, png_sig_cmp, (png_bytep, png_size_t, png_size_t));
5386 DEF_IMGLIB_FN (png_structp, png_create_read_struct, (png_const_charp, png_voidp,
5387 png_error_ptr, png_error_ptr));
5388 DEF_IMGLIB_FN (png_infop, png_create_info_struct, (png_structp));
5389 DEF_IMGLIB_FN (void, png_destroy_read_struct, (png_structpp, png_infopp, png_infopp));
5390 DEF_IMGLIB_FN (void, png_set_read_fn, (png_structp, png_voidp, png_rw_ptr));
5391 DEF_IMGLIB_FN (void, png_set_sig_bytes, (png_structp, int));
5392 DEF_IMGLIB_FN (void, png_read_info, (png_structp, png_infop));
5393 DEF_IMGLIB_FN (png_uint_32, png_get_IHDR, (png_structp, png_infop,
5394 png_uint_32 *, png_uint_32 *,
5395 int *, int *, int *, int *, int *));
5396 DEF_IMGLIB_FN (png_uint_32, png_get_valid, (png_structp, png_infop, png_uint_32));
5397 DEF_IMGLIB_FN (void, png_set_strip_16, (png_structp));
5398 DEF_IMGLIB_FN (void, png_set_expand, (png_structp));
5399 DEF_IMGLIB_FN (void, png_set_gray_to_rgb, (png_structp));
5400 DEF_IMGLIB_FN (void, png_set_background, (png_structp, png_color_16p,
5401 int, int, double));
5402 DEF_IMGLIB_FN (png_uint_32, png_get_bKGD, (png_structp, png_infop, png_color_16p *));
5403 DEF_IMGLIB_FN (void, png_read_update_info, (png_structp, png_infop));
5404 DEF_IMGLIB_FN (png_byte, png_get_channels, (png_structp, png_infop));
5405 DEF_IMGLIB_FN (png_size_t, png_get_rowbytes, (png_structp, png_infop));
5406 DEF_IMGLIB_FN (void, png_read_image, (png_structp, png_bytepp));
5407 DEF_IMGLIB_FN (void, png_read_end, (png_structp, png_infop));
5408 DEF_IMGLIB_FN (void, png_error, (png_structp, png_const_charp));
5409
5410 #if (PNG_LIBPNG_VER >= 10500)
5411 DEF_IMGLIB_FN (void, png_longjmp, (png_structp, int));
5412 DEF_IMGLIB_FN (jmp_buf *, png_set_longjmp_fn, (png_structp, png_longjmp_ptr, size_t));
5413 #endif /* libpng version >= 1.5 */
5414
5415 static int
5416 init_png_functions (Lisp_Object libraries)
5417 {
5418 HMODULE library;
5419
5420 if (!(library = w32_delayed_load (libraries, Qpng)))
5421 return 0;
5422
5423 LOAD_IMGLIB_FN (library, png_get_io_ptr);
5424 LOAD_IMGLIB_FN (library, png_sig_cmp);
5425 LOAD_IMGLIB_FN (library, png_create_read_struct);
5426 LOAD_IMGLIB_FN (library, png_create_info_struct);
5427 LOAD_IMGLIB_FN (library, png_destroy_read_struct);
5428 LOAD_IMGLIB_FN (library, png_set_read_fn);
5429 LOAD_IMGLIB_FN (library, png_set_sig_bytes);
5430 LOAD_IMGLIB_FN (library, png_read_info);
5431 LOAD_IMGLIB_FN (library, png_get_IHDR);
5432 LOAD_IMGLIB_FN (library, png_get_valid);
5433 LOAD_IMGLIB_FN (library, png_set_strip_16);
5434 LOAD_IMGLIB_FN (library, png_set_expand);
5435 LOAD_IMGLIB_FN (library, png_set_gray_to_rgb);
5436 LOAD_IMGLIB_FN (library, png_set_background);
5437 LOAD_IMGLIB_FN (library, png_get_bKGD);
5438 LOAD_IMGLIB_FN (library, png_read_update_info);
5439 LOAD_IMGLIB_FN (library, png_get_channels);
5440 LOAD_IMGLIB_FN (library, png_get_rowbytes);
5441 LOAD_IMGLIB_FN (library, png_read_image);
5442 LOAD_IMGLIB_FN (library, png_read_end);
5443 LOAD_IMGLIB_FN (library, png_error);
5444
5445 #if (PNG_LIBPNG_VER >= 10500)
5446 LOAD_IMGLIB_FN (library, png_longjmp);
5447 LOAD_IMGLIB_FN (library, png_set_longjmp_fn);
5448 #endif /* libpng version >= 1.5 */
5449
5450 return 1;
5451 }
5452 #else
5453
5454 #define fn_png_get_io_ptr png_get_io_ptr
5455 #define fn_png_sig_cmp png_sig_cmp
5456 #define fn_png_create_read_struct png_create_read_struct
5457 #define fn_png_create_info_struct png_create_info_struct
5458 #define fn_png_destroy_read_struct png_destroy_read_struct
5459 #define fn_png_set_read_fn png_set_read_fn
5460 #define fn_png_set_sig_bytes png_set_sig_bytes
5461 #define fn_png_read_info png_read_info
5462 #define fn_png_get_IHDR png_get_IHDR
5463 #define fn_png_get_valid png_get_valid
5464 #define fn_png_set_strip_16 png_set_strip_16
5465 #define fn_png_set_expand png_set_expand
5466 #define fn_png_set_gray_to_rgb png_set_gray_to_rgb
5467 #define fn_png_set_background png_set_background
5468 #define fn_png_get_bKGD png_get_bKGD
5469 #define fn_png_read_update_info png_read_update_info
5470 #define fn_png_get_channels png_get_channels
5471 #define fn_png_get_rowbytes png_get_rowbytes
5472 #define fn_png_read_image png_read_image
5473 #define fn_png_read_end png_read_end
5474 #define fn_png_error png_error
5475
5476 #if (PNG_LIBPNG_VER >= 10500)
5477 #define fn_png_longjmp png_longjmp
5478 #define fn_png_set_longjmp_fn png_set_longjmp_fn
5479 #endif /* libpng version >= 1.5 */
5480
5481 #endif /* HAVE_NTGUI */
5482
5483
5484 #if (PNG_LIBPNG_VER < 10500)
5485 #define PNG_LONGJMP(ptr) (longjmp ((ptr)->jmpbuf, 1))
5486 #define PNG_JMPBUF(ptr) ((ptr)->jmpbuf)
5487 #else
5488 /* In libpng version 1.5, the jmpbuf member is hidden. (Bug#7908) */
5489 #define PNG_LONGJMP(ptr) (fn_png_longjmp ((ptr), 1))
5490 #define PNG_JMPBUF(ptr) \
5491 (*fn_png_set_longjmp_fn((ptr), longjmp, sizeof (jmp_buf)))
5492 #endif
5493
5494 /* Error and warning handlers installed when the PNG library
5495 is initialized. */
5496
5497 static void my_png_error (png_struct *, const char *) NO_RETURN;
5498 static void
5499 my_png_error (png_struct *png_ptr, const char *msg)
5500 {
5501 xassert (png_ptr != NULL);
5502 /* Avoid compiler warning about deprecated direct access to
5503 png_ptr's fields in libpng versions 1.4.x. */
5504 image_error ("PNG error: %s", build_string (msg), Qnil);
5505 PNG_LONGJMP (png_ptr);
5506 }
5507
5508
5509 static void
5510 my_png_warning (png_struct *png_ptr, const char *msg)
5511 {
5512 xassert (png_ptr != NULL);
5513 image_error ("PNG warning: %s", build_string (msg), Qnil);
5514 }
5515
5516 /* Memory source for PNG decoding. */
5517
5518 struct png_memory_storage
5519 {
5520 unsigned char *bytes; /* The data */
5521 size_t len; /* How big is it? */
5522 int index; /* Where are we? */
5523 };
5524
5525
5526 /* Function set as reader function when reading PNG image from memory.
5527 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5528 bytes from the input to DATA. */
5529
5530 static void
5531 png_read_from_memory (png_structp png_ptr, png_bytep data, png_size_t length)
5532 {
5533 struct png_memory_storage *tbr
5534 = (struct png_memory_storage *) fn_png_get_io_ptr (png_ptr);
5535
5536 if (length > tbr->len - tbr->index)
5537 fn_png_error (png_ptr, "Read error");
5538
5539 memcpy (data, tbr->bytes + tbr->index, length);
5540 tbr->index = tbr->index + length;
5541 }
5542
5543
5544 /* Function set as reader function when reading PNG image from a file.
5545 PNG_PTR is a pointer to the PNG control structure. Copy LENGTH
5546 bytes from the input to DATA. */
5547
5548 static void
5549 png_read_from_file (png_structp png_ptr, png_bytep data, png_size_t length)
5550 {
5551 FILE *fp = (FILE *) fn_png_get_io_ptr (png_ptr);
5552
5553 if (fread (data, 1, length, fp) < length)
5554 fn_png_error (png_ptr, "Read error");
5555 }
5556
5557
5558 /* Load PNG image IMG for use on frame F. Value is non-zero if
5559 successful. */
5560
5561 static int
5562 png_load (struct frame *f, struct image *img)
5563 {
5564 Lisp_Object file, specified_file;
5565 Lisp_Object specified_data;
5566 int x, y, i;
5567 XImagePtr ximg, mask_img = NULL;
5568 png_struct *png_ptr = NULL;
5569 png_info *info_ptr = NULL, *end_info = NULL;
5570 FILE *volatile fp = NULL;
5571 png_byte sig[8];
5572 png_byte * volatile pixels = NULL;
5573 png_byte ** volatile rows = NULL;
5574 png_uint_32 width, height;
5575 int bit_depth, color_type, interlace_type;
5576 png_byte channels;
5577 png_uint_32 row_bytes;
5578 int transparent_p;
5579 struct png_memory_storage tbr; /* Data to be read */
5580
5581 /* Find out what file to load. */
5582 specified_file = image_spec_value (img->spec, QCfile, NULL);
5583 specified_data = image_spec_value (img->spec, QCdata, NULL);
5584
5585 if (NILP (specified_data))
5586 {
5587 file = x_find_image_file (specified_file);
5588 if (!STRINGP (file))
5589 {
5590 image_error ("Cannot find image file `%s'", specified_file, Qnil);
5591 return 0;
5592 }
5593
5594 /* Open the image file. */
5595 fp = fopen (SSDATA (file), "rb");
5596 if (!fp)
5597 {
5598 image_error ("Cannot open image file `%s'", file, Qnil);
5599 return 0;
5600 }
5601
5602 /* Check PNG signature. */
5603 if (fread (sig, 1, sizeof sig, fp) != sizeof sig
5604 || fn_png_sig_cmp (sig, 0, sizeof sig))
5605 {
5606 image_error ("Not a PNG file: `%s'", file, Qnil);
5607 fclose (fp);
5608 return 0;
5609 }
5610 }
5611 else
5612 {
5613 if (!STRINGP (specified_data))
5614 {
5615 image_error ("Invalid image data `%s'", specified_data, Qnil);
5616 return 0;
5617 }
5618
5619 /* Read from memory. */
5620 tbr.bytes = SDATA (specified_data);
5621 tbr.len = SBYTES (specified_data);
5622 tbr.index = 0;
5623
5624 /* Check PNG signature. */
5625 if (tbr.len < sizeof sig
5626 || fn_png_sig_cmp (tbr.bytes, 0, sizeof sig))
5627 {
5628 image_error ("Not a PNG image: `%s'", img->spec, Qnil);
5629 return 0;
5630 }
5631
5632 /* Need to skip past the signature. */
5633 tbr.bytes += sizeof (sig);
5634 }
5635
5636 /* Initialize read and info structs for PNG lib. */
5637 png_ptr = fn_png_create_read_struct (PNG_LIBPNG_VER_STRING,
5638 NULL, my_png_error,
5639 my_png_warning);
5640 if (!png_ptr)
5641 {
5642 if (fp) fclose (fp);
5643 return 0;
5644 }
5645
5646 info_ptr = fn_png_create_info_struct (png_ptr);
5647 if (!info_ptr)
5648 {
5649 fn_png_destroy_read_struct (&png_ptr, NULL, NULL);
5650 if (fp) fclose (fp);
5651 return 0;
5652 }
5653
5654 end_info = fn_png_create_info_struct (png_ptr);
5655 if (!end_info)
5656 {
5657 fn_png_destroy_read_struct (&png_ptr, &info_ptr, NULL);
5658 if (fp) fclose (fp);
5659 return 0;
5660 }
5661
5662 /* Set error jump-back. We come back here when the PNG library
5663 detects an error. */
5664 if (setjmp (PNG_JMPBUF (png_ptr)))
5665 {
5666 error:
5667 if (png_ptr)
5668 fn_png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
5669 xfree (pixels);
5670 xfree (rows);
5671 if (fp) fclose (fp);
5672 return 0;
5673 }
5674
5675 /* Read image info. */
5676 if (!NILP (specified_data))
5677 fn_png_set_read_fn (png_ptr, (void *) &tbr, png_read_from_memory);
5678 else
5679 fn_png_set_read_fn (png_ptr, (void *) fp, png_read_from_file);
5680
5681 fn_png_set_sig_bytes (png_ptr, sizeof sig);
5682 fn_png_read_info (png_ptr, info_ptr);
5683 fn_png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
5684 &interlace_type, NULL, NULL);
5685
5686 if (!check_image_size (f, width, height))
5687 {
5688 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
5689 goto error;
5690 }
5691 /* If image contains simply transparency data, we prefer to
5692 construct a clipping mask. */
5693 if (fn_png_get_valid (png_ptr, info_ptr, PNG_INFO_tRNS))
5694 transparent_p = 1;
5695 else
5696 transparent_p = 0;
5697
5698 /* This function is easier to write if we only have to handle
5699 one data format: RGB or RGBA with 8 bits per channel. Let's
5700 transform other formats into that format. */
5701
5702 /* Strip more than 8 bits per channel. */
5703 if (bit_depth == 16)
5704 fn_png_set_strip_16 (png_ptr);
5705
5706 /* Expand data to 24 bit RGB, or 8 bit grayscale, with alpha channel
5707 if available. */
5708 fn_png_set_expand (png_ptr);
5709
5710 /* Convert grayscale images to RGB. */
5711 if (color_type == PNG_COLOR_TYPE_GRAY
5712 || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
5713 fn_png_set_gray_to_rgb (png_ptr);
5714
5715 /* Handle alpha channel by combining the image with a background
5716 color. Do this only if a real alpha channel is supplied. For
5717 simple transparency, we prefer a clipping mask. */
5718 if (!transparent_p)
5719 {
5720 /* png_color_16 *image_bg; */
5721 Lisp_Object specified_bg
5722 = image_spec_value (img->spec, QCbackground, NULL);
5723 int shift = (bit_depth == 16) ? 0 : 8;
5724
5725 if (STRINGP (specified_bg))
5726 /* The user specified `:background', use that. */
5727 {
5728 XColor color;
5729 if (x_defined_color (f, SSDATA (specified_bg), &color, 0))
5730 {
5731 png_color_16 user_bg;
5732
5733 memset (&user_bg, 0, sizeof user_bg);
5734 user_bg.red = color.red >> shift;
5735 user_bg.green = color.green >> shift;
5736 user_bg.blue = color.blue >> shift;
5737
5738 fn_png_set_background (png_ptr, &user_bg,
5739 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5740 }
5741 }
5742 else
5743 {
5744 /* We use the current frame background, ignoring any default
5745 background color set by the image. */
5746 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NTGUI)
5747 XColor color;
5748 png_color_16 frame_background;
5749
5750 color.pixel = FRAME_BACKGROUND_PIXEL (f);
5751 x_query_color (f, &color);
5752
5753 memset (&frame_background, 0, sizeof frame_background);
5754 frame_background.red = color.red >> shift;
5755 frame_background.green = color.green >> shift;
5756 frame_background.blue = color.blue >> shift;
5757 #endif /* HAVE_X_WINDOWS */
5758
5759 fn_png_set_background (png_ptr, &frame_background,
5760 PNG_BACKGROUND_GAMMA_SCREEN, 0, 1.0);
5761 }
5762 }
5763
5764 /* Update info structure. */
5765 fn_png_read_update_info (png_ptr, info_ptr);
5766
5767 /* Get number of channels. Valid values are 1 for grayscale images
5768 and images with a palette, 2 for grayscale images with transparency
5769 information (alpha channel), 3 for RGB images, and 4 for RGB
5770 images with alpha channel, i.e. RGBA. If conversions above were
5771 sufficient we should only have 3 or 4 channels here. */
5772 channels = fn_png_get_channels (png_ptr, info_ptr);
5773 xassert (channels == 3 || channels == 4);
5774
5775 /* Number of bytes needed for one row of the image. */
5776 row_bytes = fn_png_get_rowbytes (png_ptr, info_ptr);
5777
5778 /* Allocate memory for the image. */
5779 pixels = (png_byte *) xmalloc (row_bytes * height * sizeof *pixels);
5780 rows = (png_byte **) xmalloc (height * sizeof *rows);
5781 for (i = 0; i < height; ++i)
5782 rows[i] = pixels + i * row_bytes;
5783
5784 /* Read the entire image. */
5785 fn_png_read_image (png_ptr, rows);
5786 fn_png_read_end (png_ptr, info_ptr);
5787 if (fp)
5788 {
5789 fclose (fp);
5790 fp = NULL;
5791 }
5792
5793 /* Create the X image and pixmap. */
5794 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg,
5795 &img->pixmap))
5796 goto error;
5797
5798 /* Create an image and pixmap serving as mask if the PNG image
5799 contains an alpha channel. */
5800 if (channels == 4
5801 && !transparent_p
5802 && !x_create_x_image_and_pixmap (f, width, height, 1,
5803 &mask_img, &img->mask))
5804 {
5805 x_destroy_x_image (ximg);
5806 Free_Pixmap (FRAME_X_DISPLAY (f), img->pixmap);
5807 img->pixmap = NO_PIXMAP;
5808 goto error;
5809 }
5810
5811 /* Fill the X image and mask from PNG data. */
5812 init_color_table ();
5813
5814 for (y = 0; y < height; ++y)
5815 {
5816 png_byte *p = rows[y];
5817
5818 for (x = 0; x < width; ++x)
5819 {
5820 unsigned r, g, b;
5821
5822 r = *p++ << 8;
5823 g = *p++ << 8;
5824 b = *p++ << 8;
5825 XPutPixel (ximg, x, y, lookup_rgb_color (f, r, g, b));
5826 /* An alpha channel, aka mask channel, associates variable
5827 transparency with an image. Where other image formats
5828 support binary transparency---fully transparent or fully
5829 opaque---PNG allows up to 254 levels of partial transparency.
5830 The PNG library implements partial transparency by combining
5831 the image with a specified background color.
5832
5833 I'm not sure how to handle this here nicely: because the
5834 background on which the image is displayed may change, for
5835 real alpha channel support, it would be necessary to create
5836 a new image for each possible background.
5837
5838 What I'm doing now is that a mask is created if we have
5839 boolean transparency information. Otherwise I'm using
5840 the frame's background color to combine the image with. */
5841
5842 if (channels == 4)
5843 {
5844 if (mask_img)
5845 XPutPixel (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN);
5846 ++p;
5847 }
5848 }
5849 }
5850
5851 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
5852 /* Set IMG's background color from the PNG image, unless the user
5853 overrode it. */
5854 {
5855 png_color_16 *bg;
5856 if (fn_png_get_bKGD (png_ptr, info_ptr, &bg))
5857 {
5858 img->background = lookup_rgb_color (f, bg->red, bg->green, bg->blue);
5859 img->background_valid = 1;
5860 }
5861 }
5862
5863 #ifdef COLOR_TABLE_SUPPORT
5864 /* Remember colors allocated for this image. */
5865 img->colors = colors_in_color_table (&img->ncolors);
5866 free_color_table ();
5867 #endif /* COLOR_TABLE_SUPPORT */
5868
5869 /* Clean up. */
5870 fn_png_destroy_read_struct (&png_ptr, &info_ptr, &end_info);
5871 xfree (rows);
5872 xfree (pixels);
5873
5874 img->width = width;
5875 img->height = height;
5876
5877 /* Maybe fill in the background field while we have ximg handy.
5878 Casting avoids a GCC warning. */
5879 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
5880
5881 /* Put the image into the pixmap, then free the X image and its buffer. */
5882 x_put_x_image (f, ximg, img->pixmap, width, height);
5883 x_destroy_x_image (ximg);
5884
5885 /* Same for the mask. */
5886 if (mask_img)
5887 {
5888 /* Fill in the background_transparent field while we have the
5889 mask handy. Casting avoids a GCC warning. */
5890 image_background_transparent (img, f, (XImagePtr_or_DC)mask_img);
5891
5892 x_put_x_image (f, mask_img, img->mask, img->width, img->height);
5893 x_destroy_x_image (mask_img);
5894 }
5895
5896 return 1;
5897 }
5898
5899 #else /* HAVE_PNG */
5900
5901 #ifdef HAVE_NS
5902 static int
5903 png_load (struct frame *f, struct image *img)
5904 {
5905 return ns_load_image(f, img,
5906 image_spec_value (img->spec, QCfile, NULL),
5907 image_spec_value (img->spec, QCdata, NULL));
5908 }
5909 #endif /* HAVE_NS */
5910
5911
5912 #endif /* !HAVE_PNG */
5913
5914
5915 \f
5916 /***********************************************************************
5917 JPEG
5918 ***********************************************************************/
5919
5920 #if defined (HAVE_JPEG) || defined (HAVE_NS)
5921
5922 static int jpeg_image_p (Lisp_Object object);
5923 static int jpeg_load (struct frame *f, struct image *img);
5924
5925 /* The symbol `jpeg' identifying images of this type. */
5926
5927 static Lisp_Object Qjpeg;
5928
5929 /* Indices of image specification fields in gs_format, below. */
5930
5931 enum jpeg_keyword_index
5932 {
5933 JPEG_TYPE,
5934 JPEG_DATA,
5935 JPEG_FILE,
5936 JPEG_ASCENT,
5937 JPEG_MARGIN,
5938 JPEG_RELIEF,
5939 JPEG_ALGORITHM,
5940 JPEG_HEURISTIC_MASK,
5941 JPEG_MASK,
5942 JPEG_BACKGROUND,
5943 JPEG_LAST
5944 };
5945
5946 /* Vector of image_keyword structures describing the format
5947 of valid user-defined image specifications. */
5948
5949 static const struct image_keyword jpeg_format[JPEG_LAST] =
5950 {
5951 {":type", IMAGE_SYMBOL_VALUE, 1},
5952 {":data", IMAGE_STRING_VALUE, 0},
5953 {":file", IMAGE_STRING_VALUE, 0},
5954 {":ascent", IMAGE_ASCENT_VALUE, 0},
5955 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
5956 {":relief", IMAGE_INTEGER_VALUE, 0},
5957 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5958 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5959 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
5960 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
5961 };
5962
5963 /* Structure describing the image type `jpeg'. */
5964
5965 static struct image_type jpeg_type =
5966 {
5967 &Qjpeg,
5968 jpeg_image_p,
5969 jpeg_load,
5970 x_clear_image,
5971 NULL
5972 };
5973
5974 /* Return non-zero if OBJECT is a valid JPEG image specification. */
5975
5976 static int
5977 jpeg_image_p (Lisp_Object object)
5978 {
5979 struct image_keyword fmt[JPEG_LAST];
5980
5981 memcpy (fmt, jpeg_format, sizeof fmt);
5982
5983 if (!parse_image_spec (object, fmt, JPEG_LAST, Qjpeg))
5984 return 0;
5985
5986 /* Must specify either the :data or :file keyword. */
5987 return fmt[JPEG_FILE].count + fmt[JPEG_DATA].count == 1;
5988 }
5989
5990 #endif /* HAVE_JPEG || HAVE_NS */
5991
5992 #ifdef HAVE_JPEG
5993
5994 /* Work around a warning about HAVE_STDLIB_H being redefined in
5995 jconfig.h. */
5996 #ifdef HAVE_STDLIB_H
5997 #undef HAVE_STDLIB_H
5998 #endif /* HAVE_STLIB_H */
5999
6000 #if defined (HAVE_NTGUI) && !defined (__WIN32__)
6001 /* In older releases of the jpeg library, jpeglib.h will define boolean
6002 differently depending on __WIN32__, so make sure it is defined. */
6003 #define __WIN32__ 1
6004 #endif
6005
6006 #include <jpeglib.h>
6007 #include <jerror.h>
6008
6009 #ifdef HAVE_STLIB_H_1
6010 #define HAVE_STDLIB_H 1
6011 #endif
6012
6013 #ifdef HAVE_NTGUI
6014
6015 /* JPEG library details. */
6016 DEF_IMGLIB_FN (void, jpeg_CreateDecompress, (j_decompress_ptr, int, size_t));
6017 DEF_IMGLIB_FN (boolean, jpeg_start_decompress, (j_decompress_ptr));
6018 DEF_IMGLIB_FN (boolean, jpeg_finish_decompress, (j_decompress_ptr));
6019 DEF_IMGLIB_FN (void, jpeg_destroy_decompress, (j_decompress_ptr));
6020 DEF_IMGLIB_FN (int, jpeg_read_header, (j_decompress_ptr, boolean));
6021 DEF_IMGLIB_FN (JDIMENSION, jpeg_read_scanlines, (j_decompress_ptr, JSAMPARRAY, JDIMENSION));
6022 DEF_IMGLIB_FN (struct jpeg_error_mgr *, jpeg_std_error, (struct jpeg_error_mgr *));
6023 DEF_IMGLIB_FN (boolean, jpeg_resync_to_restart, (j_decompress_ptr, int));
6024
6025 static int
6026 init_jpeg_functions (Lisp_Object libraries)
6027 {
6028 HMODULE library;
6029
6030 if (!(library = w32_delayed_load (libraries, Qjpeg)))
6031 return 0;
6032
6033 LOAD_IMGLIB_FN (library, jpeg_finish_decompress);
6034 LOAD_IMGLIB_FN (library, jpeg_read_scanlines);
6035 LOAD_IMGLIB_FN (library, jpeg_start_decompress);
6036 LOAD_IMGLIB_FN (library, jpeg_read_header);
6037 LOAD_IMGLIB_FN (library, jpeg_CreateDecompress);
6038 LOAD_IMGLIB_FN (library, jpeg_destroy_decompress);
6039 LOAD_IMGLIB_FN (library, jpeg_std_error);
6040 LOAD_IMGLIB_FN (library, jpeg_resync_to_restart);
6041 return 1;
6042 }
6043
6044 /* Wrapper since we can't directly assign the function pointer
6045 to another function pointer that was declared more completely easily. */
6046 static boolean
6047 jpeg_resync_to_restart_wrapper (j_decompress_ptr cinfo, int desired)
6048 {
6049 return fn_jpeg_resync_to_restart (cinfo, desired);
6050 }
6051
6052 #else
6053
6054 #define fn_jpeg_CreateDecompress(a,b,c) jpeg_create_decompress(a)
6055 #define fn_jpeg_start_decompress jpeg_start_decompress
6056 #define fn_jpeg_finish_decompress jpeg_finish_decompress
6057 #define fn_jpeg_destroy_decompress jpeg_destroy_decompress
6058 #define fn_jpeg_read_header jpeg_read_header
6059 #define fn_jpeg_read_scanlines jpeg_read_scanlines
6060 #define fn_jpeg_std_error jpeg_std_error
6061 #define jpeg_resync_to_restart_wrapper jpeg_resync_to_restart
6062
6063 #endif /* HAVE_NTGUI */
6064
6065 struct my_jpeg_error_mgr
6066 {
6067 struct jpeg_error_mgr pub;
6068 jmp_buf setjmp_buffer;
6069 };
6070
6071
6072 static void my_error_exit (j_common_ptr) NO_RETURN;
6073 static void
6074 my_error_exit (j_common_ptr cinfo)
6075 {
6076 struct my_jpeg_error_mgr *mgr = (struct my_jpeg_error_mgr *) cinfo->err;
6077 longjmp (mgr->setjmp_buffer, 1);
6078 }
6079
6080
6081 /* Init source method for JPEG data source manager. Called by
6082 jpeg_read_header() before any data is actually read. See
6083 libjpeg.doc from the JPEG lib distribution. */
6084
6085 static void
6086 our_common_init_source (j_decompress_ptr cinfo)
6087 {
6088 }
6089
6090
6091 /* Method to terminate data source. Called by
6092 jpeg_finish_decompress() after all data has been processed. */
6093
6094 static void
6095 our_common_term_source (j_decompress_ptr cinfo)
6096 {
6097 }
6098
6099
6100 /* Fill input buffer method for JPEG data source manager. Called
6101 whenever more data is needed. We read the whole image in one step,
6102 so this only adds a fake end of input marker at the end. */
6103
6104 static JOCTET our_memory_buffer[2];
6105
6106 static boolean
6107 our_memory_fill_input_buffer (j_decompress_ptr cinfo)
6108 {
6109 /* Insert a fake EOI marker. */
6110 struct jpeg_source_mgr *src = cinfo->src;
6111
6112 our_memory_buffer[0] = (JOCTET) 0xFF;
6113 our_memory_buffer[1] = (JOCTET) JPEG_EOI;
6114
6115 src->next_input_byte = our_memory_buffer;
6116 src->bytes_in_buffer = 2;
6117 return 1;
6118 }
6119
6120
6121 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6122 is the JPEG data source manager. */
6123
6124 static void
6125 our_memory_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6126 {
6127 struct jpeg_source_mgr *src = (struct jpeg_source_mgr *) cinfo->src;
6128
6129 if (src)
6130 {
6131 if (num_bytes > src->bytes_in_buffer)
6132 ERREXIT (cinfo, JERR_INPUT_EOF);
6133
6134 src->bytes_in_buffer -= num_bytes;
6135 src->next_input_byte += num_bytes;
6136 }
6137 }
6138
6139
6140 /* Set up the JPEG lib for reading an image from DATA which contains
6141 LEN bytes. CINFO is the decompression info structure created for
6142 reading the image. */
6143
6144 static void
6145 jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data, unsigned int len)
6146 {
6147 struct jpeg_source_mgr *src;
6148
6149 if (cinfo->src == NULL)
6150 {
6151 /* First time for this JPEG object? */
6152 cinfo->src = (struct jpeg_source_mgr *)
6153 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6154 sizeof (struct jpeg_source_mgr));
6155 src = (struct jpeg_source_mgr *) cinfo->src;
6156 src->next_input_byte = data;
6157 }
6158
6159 src = (struct jpeg_source_mgr *) cinfo->src;
6160 src->init_source = our_common_init_source;
6161 src->fill_input_buffer = our_memory_fill_input_buffer;
6162 src->skip_input_data = our_memory_skip_input_data;
6163 src->resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6164 src->term_source = our_common_term_source;
6165 src->bytes_in_buffer = len;
6166 src->next_input_byte = data;
6167 }
6168
6169
6170 struct jpeg_stdio_mgr
6171 {
6172 struct jpeg_source_mgr mgr;
6173 boolean finished;
6174 FILE *file;
6175 JOCTET *buffer;
6176 };
6177
6178
6179 /* Size of buffer to read JPEG from file.
6180 Not too big, as we want to use alloc_small. */
6181 #define JPEG_STDIO_BUFFER_SIZE 8192
6182
6183
6184 /* Fill input buffer method for JPEG data source manager. Called
6185 whenever more data is needed. The data is read from a FILE *. */
6186
6187 static boolean
6188 our_stdio_fill_input_buffer (j_decompress_ptr cinfo)
6189 {
6190 struct jpeg_stdio_mgr *src;
6191
6192 src = (struct jpeg_stdio_mgr *) cinfo->src;
6193 if (!src->finished)
6194 {
6195 size_t bytes;
6196
6197 bytes = fread (src->buffer, 1, JPEG_STDIO_BUFFER_SIZE, src->file);
6198 if (bytes > 0)
6199 src->mgr.bytes_in_buffer = bytes;
6200 else
6201 {
6202 WARNMS (cinfo, JWRN_JPEG_EOF);
6203 src->finished = 1;
6204 src->buffer[0] = (JOCTET) 0xFF;
6205 src->buffer[1] = (JOCTET) JPEG_EOI;
6206 src->mgr.bytes_in_buffer = 2;
6207 }
6208 src->mgr.next_input_byte = src->buffer;
6209 }
6210
6211 return 1;
6212 }
6213
6214
6215 /* Method to skip over NUM_BYTES bytes in the image data. CINFO->src
6216 is the JPEG data source manager. */
6217
6218 static void
6219 our_stdio_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
6220 {
6221 struct jpeg_stdio_mgr *src;
6222 src = (struct jpeg_stdio_mgr *) cinfo->src;
6223
6224 while (num_bytes > 0 && !src->finished)
6225 {
6226 if (num_bytes <= src->mgr.bytes_in_buffer)
6227 {
6228 src->mgr.bytes_in_buffer -= num_bytes;
6229 src->mgr.next_input_byte += num_bytes;
6230 break;
6231 }
6232 else
6233 {
6234 num_bytes -= src->mgr.bytes_in_buffer;
6235 src->mgr.bytes_in_buffer = 0;
6236 src->mgr.next_input_byte = NULL;
6237
6238 our_stdio_fill_input_buffer (cinfo);
6239 }
6240 }
6241 }
6242
6243
6244 /* Set up the JPEG lib for reading an image from a FILE *.
6245 CINFO is the decompression info structure created for
6246 reading the image. */
6247
6248 static void
6249 jpeg_file_src (j_decompress_ptr cinfo, FILE *fp)
6250 {
6251 struct jpeg_stdio_mgr *src;
6252
6253 if (cinfo->src != NULL)
6254 src = (struct jpeg_stdio_mgr *) cinfo->src;
6255 else
6256 {
6257 /* First time for this JPEG object? */
6258 cinfo->src = (struct jpeg_source_mgr *)
6259 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6260 sizeof (struct jpeg_stdio_mgr));
6261 src = (struct jpeg_stdio_mgr *) cinfo->src;
6262 src->buffer = (JOCTET *)
6263 (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_PERMANENT,
6264 JPEG_STDIO_BUFFER_SIZE);
6265 }
6266
6267 src->file = fp;
6268 src->finished = 0;
6269 src->mgr.init_source = our_common_init_source;
6270 src->mgr.fill_input_buffer = our_stdio_fill_input_buffer;
6271 src->mgr.skip_input_data = our_stdio_skip_input_data;
6272 src->mgr.resync_to_restart = jpeg_resync_to_restart_wrapper; /* Use default method. */
6273 src->mgr.term_source = our_common_term_source;
6274 src->mgr.bytes_in_buffer = 0;
6275 src->mgr.next_input_byte = NULL;
6276 }
6277
6278
6279 /* Load image IMG for use on frame F. Patterned after example.c
6280 from the JPEG lib. */
6281
6282 static int
6283 jpeg_load (struct frame *f, struct image *img)
6284 {
6285 struct jpeg_decompress_struct cinfo;
6286 struct my_jpeg_error_mgr mgr;
6287 Lisp_Object file, specified_file;
6288 Lisp_Object specified_data;
6289 FILE * volatile fp = NULL;
6290 JSAMPARRAY buffer;
6291 int row_stride, x, y;
6292 XImagePtr ximg = NULL;
6293 int rc;
6294 unsigned long *colors;
6295 int width, height;
6296
6297 /* Open the JPEG file. */
6298 specified_file = image_spec_value (img->spec, QCfile, NULL);
6299 specified_data = image_spec_value (img->spec, QCdata, NULL);
6300
6301 if (NILP (specified_data))
6302 {
6303 file = x_find_image_file (specified_file);
6304 if (!STRINGP (file))
6305 {
6306 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6307 return 0;
6308 }
6309
6310 fp = fopen (SSDATA (file), "rb");
6311 if (fp == NULL)
6312 {
6313 image_error ("Cannot open `%s'", file, Qnil);
6314 return 0;
6315 }
6316 }
6317 else if (!STRINGP (specified_data))
6318 {
6319 image_error ("Invalid image data `%s'", specified_data, Qnil);
6320 return 0;
6321 }
6322
6323 /* Customize libjpeg's error handling to call my_error_exit when an
6324 error is detected. This function will perform a longjmp. */
6325 cinfo.err = fn_jpeg_std_error (&mgr.pub);
6326 mgr.pub.error_exit = my_error_exit;
6327
6328 if ((rc = setjmp (mgr.setjmp_buffer)) != 0)
6329 {
6330 if (rc == 1)
6331 {
6332 /* Called from my_error_exit. Display a JPEG error. */
6333 char buf[JMSG_LENGTH_MAX];
6334 cinfo.err->format_message ((j_common_ptr) &cinfo, buf);
6335 image_error ("Error reading JPEG image `%s': %s", img->spec,
6336 build_string (buf));
6337 }
6338
6339 /* Close the input file and destroy the JPEG object. */
6340 if (fp)
6341 fclose ((FILE *) fp);
6342 fn_jpeg_destroy_decompress (&cinfo);
6343
6344 /* If we already have an XImage, free that. */
6345 x_destroy_x_image (ximg);
6346
6347 /* Free pixmap and colors. */
6348 x_clear_image (f, img);
6349 return 0;
6350 }
6351
6352 /* Create the JPEG decompression object. Let it read from fp.
6353 Read the JPEG image header. */
6354 fn_jpeg_CreateDecompress (&cinfo, JPEG_LIB_VERSION, sizeof (cinfo));
6355
6356 if (NILP (specified_data))
6357 jpeg_file_src (&cinfo, (FILE *) fp);
6358 else
6359 jpeg_memory_src (&cinfo, SDATA (specified_data),
6360 SBYTES (specified_data));
6361
6362 fn_jpeg_read_header (&cinfo, 1);
6363
6364 /* Customize decompression so that color quantization will be used.
6365 Start decompression. */
6366 cinfo.quantize_colors = 1;
6367 fn_jpeg_start_decompress (&cinfo);
6368 width = img->width = cinfo.output_width;
6369 height = img->height = cinfo.output_height;
6370
6371 if (!check_image_size (f, width, height))
6372 {
6373 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
6374 longjmp (mgr.setjmp_buffer, 2);
6375 }
6376
6377 /* Create X image and pixmap. */
6378 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
6379 longjmp (mgr.setjmp_buffer, 2);
6380
6381 /* Allocate colors. When color quantization is used,
6382 cinfo.actual_number_of_colors has been set with the number of
6383 colors generated, and cinfo.colormap is a two-dimensional array
6384 of color indices in the range 0..cinfo.actual_number_of_colors.
6385 No more than 255 colors will be generated. */
6386 {
6387 int i, ir, ig, ib;
6388
6389 if (cinfo.out_color_components > 2)
6390 ir = 0, ig = 1, ib = 2;
6391 else if (cinfo.out_color_components > 1)
6392 ir = 0, ig = 1, ib = 0;
6393 else
6394 ir = 0, ig = 0, ib = 0;
6395
6396 /* Use the color table mechanism because it handles colors that
6397 cannot be allocated nicely. Such colors will be replaced with
6398 a default color, and we don't have to care about which colors
6399 can be freed safely, and which can't. */
6400 init_color_table ();
6401 colors = (unsigned long *) alloca (cinfo.actual_number_of_colors
6402 * sizeof *colors);
6403
6404 for (i = 0; i < cinfo.actual_number_of_colors; ++i)
6405 {
6406 /* Multiply RGB values with 255 because X expects RGB values
6407 in the range 0..0xffff. */
6408 int r = cinfo.colormap[ir][i] << 8;
6409 int g = cinfo.colormap[ig][i] << 8;
6410 int b = cinfo.colormap[ib][i] << 8;
6411 colors[i] = lookup_rgb_color (f, r, g, b);
6412 }
6413
6414 #ifdef COLOR_TABLE_SUPPORT
6415 /* Remember those colors actually allocated. */
6416 img->colors = colors_in_color_table (&img->ncolors);
6417 free_color_table ();
6418 #endif /* COLOR_TABLE_SUPPORT */
6419 }
6420
6421 /* Read pixels. */
6422 row_stride = width * cinfo.output_components;
6423 buffer = cinfo.mem->alloc_sarray ((j_common_ptr) &cinfo, JPOOL_IMAGE,
6424 row_stride, 1);
6425 for (y = 0; y < height; ++y)
6426 {
6427 fn_jpeg_read_scanlines (&cinfo, buffer, 1);
6428 for (x = 0; x < cinfo.output_width; ++x)
6429 XPutPixel (ximg, x, y, colors[buffer[0][x]]);
6430 }
6431
6432 /* Clean up. */
6433 fn_jpeg_finish_decompress (&cinfo);
6434 fn_jpeg_destroy_decompress (&cinfo);
6435 if (fp)
6436 fclose ((FILE *) fp);
6437
6438 /* Maybe fill in the background field while we have ximg handy. */
6439 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6440 /* Casting avoids a GCC warning. */
6441 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6442
6443 /* Put the image into the pixmap. */
6444 x_put_x_image (f, ximg, img->pixmap, width, height);
6445 x_destroy_x_image (ximg);
6446 return 1;
6447 }
6448
6449 #else /* HAVE_JPEG */
6450
6451 #ifdef HAVE_NS
6452 static int
6453 jpeg_load (struct frame *f, struct image *img)
6454 {
6455 return ns_load_image (f, img,
6456 image_spec_value (img->spec, QCfile, NULL),
6457 image_spec_value (img->spec, QCdata, NULL));
6458 }
6459 #endif /* HAVE_NS */
6460
6461 #endif /* !HAVE_JPEG */
6462
6463
6464 \f
6465 /***********************************************************************
6466 TIFF
6467 ***********************************************************************/
6468
6469 #if defined (HAVE_TIFF) || defined (HAVE_NS)
6470
6471 static int tiff_image_p (Lisp_Object object);
6472 static int tiff_load (struct frame *f, struct image *img);
6473
6474 /* The symbol `tiff' identifying images of this type. */
6475
6476 static Lisp_Object Qtiff;
6477
6478 /* Indices of image specification fields in tiff_format, below. */
6479
6480 enum tiff_keyword_index
6481 {
6482 TIFF_TYPE,
6483 TIFF_DATA,
6484 TIFF_FILE,
6485 TIFF_ASCENT,
6486 TIFF_MARGIN,
6487 TIFF_RELIEF,
6488 TIFF_ALGORITHM,
6489 TIFF_HEURISTIC_MASK,
6490 TIFF_MASK,
6491 TIFF_BACKGROUND,
6492 TIFF_INDEX,
6493 TIFF_LAST
6494 };
6495
6496 /* Vector of image_keyword structures describing the format
6497 of valid user-defined image specifications. */
6498
6499 static const struct image_keyword tiff_format[TIFF_LAST] =
6500 {
6501 {":type", IMAGE_SYMBOL_VALUE, 1},
6502 {":data", IMAGE_STRING_VALUE, 0},
6503 {":file", IMAGE_STRING_VALUE, 0},
6504 {":ascent", IMAGE_ASCENT_VALUE, 0},
6505 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6506 {":relief", IMAGE_INTEGER_VALUE, 0},
6507 {":conversions", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6508 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6509 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6510 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
6511 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0}
6512 };
6513
6514 /* Structure describing the image type `tiff'. */
6515
6516 static struct image_type tiff_type =
6517 {
6518 &Qtiff,
6519 tiff_image_p,
6520 tiff_load,
6521 x_clear_image,
6522 NULL
6523 };
6524
6525 /* Return non-zero if OBJECT is a valid TIFF image specification. */
6526
6527 static int
6528 tiff_image_p (Lisp_Object object)
6529 {
6530 struct image_keyword fmt[TIFF_LAST];
6531 memcpy (fmt, tiff_format, sizeof fmt);
6532
6533 if (!parse_image_spec (object, fmt, TIFF_LAST, Qtiff))
6534 return 0;
6535
6536 /* Must specify either the :data or :file keyword. */
6537 return fmt[TIFF_FILE].count + fmt[TIFF_DATA].count == 1;
6538 }
6539
6540 #endif /* HAVE_TIFF || HAVE_NS */
6541
6542 #ifdef HAVE_TIFF
6543
6544 #include <tiffio.h>
6545
6546 #ifdef HAVE_NTGUI
6547
6548 /* TIFF library details. */
6549 DEF_IMGLIB_FN (TIFFErrorHandler, TIFFSetErrorHandler, (TIFFErrorHandler));
6550 DEF_IMGLIB_FN (TIFFErrorHandler, TIFFSetWarningHandler, (TIFFErrorHandler));
6551 DEF_IMGLIB_FN (TIFF *, TIFFOpen, (const char *, const char *));
6552 DEF_IMGLIB_FN (TIFF *, TIFFClientOpen, (const char *, const char *, thandle_t,
6553 TIFFReadWriteProc, TIFFReadWriteProc,
6554 TIFFSeekProc, TIFFCloseProc, TIFFSizeProc,
6555 TIFFMapFileProc, TIFFUnmapFileProc));
6556 DEF_IMGLIB_FN (int, TIFFGetField, (TIFF *, ttag_t, ...));
6557 DEF_IMGLIB_FN (int, TIFFReadRGBAImage, (TIFF *, uint32, uint32, uint32 *, int));
6558 DEF_IMGLIB_FN (void, TIFFClose, (TIFF *));
6559 DEF_IMGLIB_FN (int, TIFFSetDirectory, (TIFF *, tdir_t));
6560
6561 static int
6562 init_tiff_functions (Lisp_Object libraries)
6563 {
6564 HMODULE library;
6565
6566 if (!(library = w32_delayed_load (libraries, Qtiff)))
6567 return 0;
6568
6569 LOAD_IMGLIB_FN (library, TIFFSetErrorHandler);
6570 LOAD_IMGLIB_FN (library, TIFFSetWarningHandler);
6571 LOAD_IMGLIB_FN (library, TIFFOpen);
6572 LOAD_IMGLIB_FN (library, TIFFClientOpen);
6573 LOAD_IMGLIB_FN (library, TIFFGetField);
6574 LOAD_IMGLIB_FN (library, TIFFReadRGBAImage);
6575 LOAD_IMGLIB_FN (library, TIFFClose);
6576 LOAD_IMGLIB_FN (library, TIFFSetDirectory);
6577 return 1;
6578 }
6579
6580 #else
6581
6582 #define fn_TIFFSetErrorHandler TIFFSetErrorHandler
6583 #define fn_TIFFSetWarningHandler TIFFSetWarningHandler
6584 #define fn_TIFFOpen TIFFOpen
6585 #define fn_TIFFClientOpen TIFFClientOpen
6586 #define fn_TIFFGetField TIFFGetField
6587 #define fn_TIFFReadRGBAImage TIFFReadRGBAImage
6588 #define fn_TIFFClose TIFFClose
6589 #define fn_TIFFSetDirectory TIFFSetDirectory
6590 #endif /* HAVE_NTGUI */
6591
6592
6593 /* Reading from a memory buffer for TIFF images Based on the PNG
6594 memory source, but we have to provide a lot of extra functions.
6595 Blah.
6596
6597 We really only need to implement read and seek, but I am not
6598 convinced that the TIFF library is smart enough not to destroy
6599 itself if we only hand it the function pointers we need to
6600 override. */
6601
6602 typedef struct
6603 {
6604 unsigned char *bytes;
6605 size_t len;
6606 int index;
6607 }
6608 tiff_memory_source;
6609
6610 static size_t
6611 tiff_read_from_memory (thandle_t data, tdata_t buf, tsize_t size)
6612 {
6613 tiff_memory_source *src = (tiff_memory_source *) data;
6614
6615 if (size > src->len - src->index)
6616 return (size_t) -1;
6617 memcpy (buf, src->bytes + src->index, size);
6618 src->index += size;
6619 return size;
6620 }
6621
6622 static size_t
6623 tiff_write_from_memory (thandle_t data, tdata_t buf, tsize_t size)
6624 {
6625 return (size_t) -1;
6626 }
6627
6628 static toff_t
6629 tiff_seek_in_memory (thandle_t data, toff_t off, int whence)
6630 {
6631 tiff_memory_source *src = (tiff_memory_source *) data;
6632 int idx;
6633
6634 switch (whence)
6635 {
6636 case SEEK_SET: /* Go from beginning of source. */
6637 idx = off;
6638 break;
6639
6640 case SEEK_END: /* Go from end of source. */
6641 idx = src->len + off;
6642 break;
6643
6644 case SEEK_CUR: /* Go from current position. */
6645 idx = src->index + off;
6646 break;
6647
6648 default: /* Invalid `whence'. */
6649 return -1;
6650 }
6651
6652 if (idx > src->len || idx < 0)
6653 return -1;
6654
6655 src->index = idx;
6656 return src->index;
6657 }
6658
6659 static int
6660 tiff_close_memory (thandle_t data)
6661 {
6662 /* NOOP */
6663 return 0;
6664 }
6665
6666 static int
6667 tiff_mmap_memory (thandle_t data, tdata_t *pbase, toff_t *psize)
6668 {
6669 /* It is already _IN_ memory. */
6670 return 0;
6671 }
6672
6673 static void
6674 tiff_unmap_memory (thandle_t data, tdata_t base, toff_t size)
6675 {
6676 /* We don't need to do this. */
6677 }
6678
6679 static toff_t
6680 tiff_size_of_memory (thandle_t data)
6681 {
6682 return ((tiff_memory_source *) data)->len;
6683 }
6684
6685
6686 static void tiff_error_handler (const char *, const char *, va_list)
6687 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6688 static void
6689 tiff_error_handler (const char *title, const char *format, va_list ap)
6690 {
6691 char buf[512];
6692 int len;
6693
6694 len = sprintf (buf, "TIFF error: %s ", title);
6695 vsprintf (buf + len, format, ap);
6696 add_to_log (buf, Qnil, Qnil);
6697 }
6698
6699
6700 static void tiff_warning_handler (const char *, const char *, va_list)
6701 ATTRIBUTE_FORMAT_PRINTF (2, 0);
6702 static void
6703 tiff_warning_handler (const char *title, const char *format, va_list ap)
6704 {
6705 char buf[512];
6706 int len;
6707
6708 len = sprintf (buf, "TIFF warning: %s ", title);
6709 vsprintf (buf + len, format, ap);
6710 add_to_log (buf, Qnil, Qnil);
6711 }
6712
6713
6714 /* Load TIFF image IMG for use on frame F. Value is non-zero if
6715 successful. */
6716
6717 static int
6718 tiff_load (struct frame *f, struct image *img)
6719 {
6720 Lisp_Object file, specified_file;
6721 Lisp_Object specified_data;
6722 TIFF *tiff;
6723 int width, height, x, y, count;
6724 uint32 *buf;
6725 int rc;
6726 XImagePtr ximg;
6727 tiff_memory_source memsrc;
6728 Lisp_Object image;
6729
6730 specified_file = image_spec_value (img->spec, QCfile, NULL);
6731 specified_data = image_spec_value (img->spec, QCdata, NULL);
6732
6733 fn_TIFFSetErrorHandler ((TIFFErrorHandler) tiff_error_handler);
6734 fn_TIFFSetWarningHandler ((TIFFErrorHandler) tiff_warning_handler);
6735
6736 if (NILP (specified_data))
6737 {
6738 /* Read from a file */
6739 file = x_find_image_file (specified_file);
6740 if (!STRINGP (file))
6741 {
6742 image_error ("Cannot find image file `%s'", specified_file, Qnil);
6743 return 0;
6744 }
6745
6746 /* Try to open the image file. */
6747 tiff = fn_TIFFOpen (SSDATA (file), "r");
6748 if (tiff == NULL)
6749 {
6750 image_error ("Cannot open `%s'", file, Qnil);
6751 return 0;
6752 }
6753 }
6754 else
6755 {
6756 if (!STRINGP (specified_data))
6757 {
6758 image_error ("Invalid image data `%s'", specified_data, Qnil);
6759 return 0;
6760 }
6761
6762 /* Memory source! */
6763 memsrc.bytes = SDATA (specified_data);
6764 memsrc.len = SBYTES (specified_data);
6765 memsrc.index = 0;
6766
6767 tiff = fn_TIFFClientOpen ("memory_source", "r", (thandle_t)&memsrc,
6768 (TIFFReadWriteProc) tiff_read_from_memory,
6769 (TIFFReadWriteProc) tiff_write_from_memory,
6770 tiff_seek_in_memory,
6771 tiff_close_memory,
6772 tiff_size_of_memory,
6773 tiff_mmap_memory,
6774 tiff_unmap_memory);
6775
6776 if (!tiff)
6777 {
6778 image_error ("Cannot open memory source for `%s'", img->spec, Qnil);
6779 return 0;
6780 }
6781 }
6782
6783 image = image_spec_value (img->spec, QCindex, NULL);
6784 if (INTEGERP (image))
6785 {
6786 int ino = XFASTINT (image);
6787 if (!fn_TIFFSetDirectory (tiff, ino))
6788 {
6789 image_error ("Invalid image number `%s' in image `%s'",
6790 image, img->spec);
6791 fn_TIFFClose (tiff);
6792 return 0;
6793 }
6794 }
6795
6796 /* Get width and height of the image, and allocate a raster buffer
6797 of width x height 32-bit values. */
6798 fn_TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &width);
6799 fn_TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &height);
6800
6801 if (!check_image_size (f, width, height))
6802 {
6803 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
6804 fn_TIFFClose (tiff);
6805 return 0;
6806 }
6807
6808 buf = (uint32 *) xmalloc (width * height * sizeof *buf);
6809
6810 rc = fn_TIFFReadRGBAImage (tiff, width, height, buf, 0);
6811
6812 /* Count the number of images in the file. */
6813 for (count = 1; fn_TIFFSetDirectory (tiff, count); count++)
6814 continue;
6815
6816 if (count > 1)
6817 img->lisp_data = Fcons (Qcount,
6818 Fcons (make_number (count),
6819 img->lisp_data));
6820
6821 fn_TIFFClose (tiff);
6822 if (!rc)
6823 {
6824 image_error ("Error reading TIFF image `%s'", img->spec, Qnil);
6825 xfree (buf);
6826 return 0;
6827 }
6828
6829 /* Create the X image and pixmap. */
6830 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
6831 {
6832 xfree (buf);
6833 return 0;
6834 }
6835
6836 /* Initialize the color table. */
6837 init_color_table ();
6838
6839 /* Process the pixel raster. Origin is in the lower-left corner. */
6840 for (y = 0; y < height; ++y)
6841 {
6842 uint32 *row = buf + y * width;
6843
6844 for (x = 0; x < width; ++x)
6845 {
6846 uint32 abgr = row[x];
6847 int r = TIFFGetR (abgr) << 8;
6848 int g = TIFFGetG (abgr) << 8;
6849 int b = TIFFGetB (abgr) << 8;
6850 XPutPixel (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b));
6851 }
6852 }
6853
6854 #ifdef COLOR_TABLE_SUPPORT
6855 /* Remember the colors allocated for the image. Free the color table. */
6856 img->colors = colors_in_color_table (&img->ncolors);
6857 free_color_table ();
6858 #endif /* COLOR_TABLE_SUPPORT */
6859
6860 img->width = width;
6861 img->height = height;
6862
6863 /* Maybe fill in the background field while we have ximg handy. */
6864 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
6865 /* Casting avoids a GCC warning on W32. */
6866 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
6867
6868 /* Put the image into the pixmap, then free the X image and its buffer. */
6869 x_put_x_image (f, ximg, img->pixmap, width, height);
6870 x_destroy_x_image (ximg);
6871 xfree (buf);
6872
6873 return 1;
6874 }
6875
6876 #else /* HAVE_TIFF */
6877
6878 #ifdef HAVE_NS
6879 static int
6880 tiff_load (struct frame *f, struct image *img)
6881 {
6882 return ns_load_image (f, img,
6883 image_spec_value (img->spec, QCfile, NULL),
6884 image_spec_value (img->spec, QCdata, NULL));
6885 }
6886 #endif /* HAVE_NS */
6887
6888 #endif /* !HAVE_TIFF */
6889
6890
6891 \f
6892 /***********************************************************************
6893 GIF
6894 ***********************************************************************/
6895
6896 #if defined (HAVE_GIF) || defined (HAVE_NS)
6897
6898 static int gif_image_p (Lisp_Object object);
6899 static int gif_load (struct frame *f, struct image *img);
6900 static void gif_clear_image (struct frame *f, struct image *img);
6901
6902 /* The symbol `gif' identifying images of this type. */
6903
6904 static Lisp_Object Qgif;
6905
6906 /* Indices of image specification fields in gif_format, below. */
6907
6908 enum gif_keyword_index
6909 {
6910 GIF_TYPE,
6911 GIF_DATA,
6912 GIF_FILE,
6913 GIF_ASCENT,
6914 GIF_MARGIN,
6915 GIF_RELIEF,
6916 GIF_ALGORITHM,
6917 GIF_HEURISTIC_MASK,
6918 GIF_MASK,
6919 GIF_IMAGE,
6920 GIF_BACKGROUND,
6921 GIF_LAST
6922 };
6923
6924 /* Vector of image_keyword structures describing the format
6925 of valid user-defined image specifications. */
6926
6927 static const struct image_keyword gif_format[GIF_LAST] =
6928 {
6929 {":type", IMAGE_SYMBOL_VALUE, 1},
6930 {":data", IMAGE_STRING_VALUE, 0},
6931 {":file", IMAGE_STRING_VALUE, 0},
6932 {":ascent", IMAGE_ASCENT_VALUE, 0},
6933 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
6934 {":relief", IMAGE_INTEGER_VALUE, 0},
6935 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6936 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6937 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
6938 {":index", IMAGE_NON_NEGATIVE_INTEGER_VALUE, 0},
6939 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
6940 };
6941
6942 /* Structure describing the image type `gif'. */
6943
6944 static struct image_type gif_type =
6945 {
6946 &Qgif,
6947 gif_image_p,
6948 gif_load,
6949 gif_clear_image,
6950 NULL
6951 };
6952
6953 /* Free X resources of GIF image IMG which is used on frame F. */
6954
6955 static void
6956 gif_clear_image (struct frame *f, struct image *img)
6957 {
6958 img->lisp_data = Qnil;
6959 x_clear_image (f, img);
6960 }
6961
6962 /* Return non-zero if OBJECT is a valid GIF image specification. */
6963
6964 static int
6965 gif_image_p (Lisp_Object object)
6966 {
6967 struct image_keyword fmt[GIF_LAST];
6968 memcpy (fmt, gif_format, sizeof fmt);
6969
6970 if (!parse_image_spec (object, fmt, GIF_LAST, Qgif))
6971 return 0;
6972
6973 /* Must specify either the :data or :file keyword. */
6974 return fmt[GIF_FILE].count + fmt[GIF_DATA].count == 1;
6975 }
6976
6977 #endif /* HAVE_GIF */
6978
6979 #ifdef HAVE_GIF
6980
6981 #if defined (HAVE_NTGUI)
6982 /* winuser.h might define DrawText to DrawTextA or DrawTextW.
6983 Undefine before redefining to avoid a preprocessor warning. */
6984 #ifdef DrawText
6985 #undef DrawText
6986 #endif
6987 /* avoid conflict with QuickdrawText.h */
6988 #define DrawText gif_DrawText
6989 #include <gif_lib.h>
6990 #undef DrawText
6991
6992 #else /* HAVE_NTGUI */
6993
6994 #include <gif_lib.h>
6995
6996 #endif /* HAVE_NTGUI */
6997
6998
6999 #ifdef HAVE_NTGUI
7000
7001 /* GIF library details. */
7002 DEF_IMGLIB_FN (int, DGifCloseFile, (GifFileType *));
7003 DEF_IMGLIB_FN (int, DGifSlurp, (GifFileType *));
7004 DEF_IMGLIB_FN (GifFileType *, DGifOpen, (void *, InputFunc));
7005 DEF_IMGLIB_FN (GifFileType *, DGifOpenFileName, (const char *));
7006
7007 static int
7008 init_gif_functions (Lisp_Object libraries)
7009 {
7010 HMODULE library;
7011
7012 if (!(library = w32_delayed_load (libraries, Qgif)))
7013 return 0;
7014
7015 LOAD_IMGLIB_FN (library, DGifCloseFile);
7016 LOAD_IMGLIB_FN (library, DGifSlurp);
7017 LOAD_IMGLIB_FN (library, DGifOpen);
7018 LOAD_IMGLIB_FN (library, DGifOpenFileName);
7019 return 1;
7020 }
7021
7022 #else
7023
7024 #define fn_DGifCloseFile DGifCloseFile
7025 #define fn_DGifSlurp DGifSlurp
7026 #define fn_DGifOpen DGifOpen
7027 #define fn_DGifOpenFileName DGifOpenFileName
7028
7029 #endif /* HAVE_NTGUI */
7030
7031 /* Reading a GIF image from memory
7032 Based on the PNG memory stuff to a certain extent. */
7033
7034 typedef struct
7035 {
7036 unsigned char *bytes;
7037 size_t len;
7038 int index;
7039 }
7040 gif_memory_source;
7041
7042 /* Make the current memory source available to gif_read_from_memory.
7043 It's done this way because not all versions of libungif support
7044 a UserData field in the GifFileType structure. */
7045 static gif_memory_source *current_gif_memory_src;
7046
7047 static int
7048 gif_read_from_memory (GifFileType *file, GifByteType *buf, int len)
7049 {
7050 gif_memory_source *src = current_gif_memory_src;
7051
7052 if (len > src->len - src->index)
7053 return -1;
7054
7055 memcpy (buf, src->bytes + src->index, len);
7056 src->index += len;
7057 return len;
7058 }
7059
7060
7061 /* Load GIF image IMG for use on frame F. Value is non-zero if
7062 successful. */
7063
7064 static const int interlace_start[] = {0, 4, 2, 1};
7065 static const int interlace_increment[] = {8, 8, 4, 2};
7066
7067 #define GIF_LOCAL_DESCRIPTOR_EXTENSION 249
7068
7069 static int
7070 gif_load (struct frame *f, struct image *img)
7071 {
7072 Lisp_Object file;
7073 int rc, width, height, x, y, i, j;
7074 XImagePtr ximg;
7075 ColorMapObject *gif_color_map;
7076 unsigned long pixel_colors[256];
7077 GifFileType *gif;
7078 int image_height, image_width;
7079 gif_memory_source memsrc;
7080 Lisp_Object specified_bg = image_spec_value (img->spec, QCbackground, NULL);
7081 Lisp_Object specified_file = image_spec_value (img->spec, QCfile, NULL);
7082 Lisp_Object specified_data = image_spec_value (img->spec, QCdata, NULL);
7083 unsigned long bgcolor = 0;
7084 int idx;
7085
7086 if (NILP (specified_data))
7087 {
7088 file = x_find_image_file (specified_file);
7089 if (!STRINGP (file))
7090 {
7091 image_error ("Cannot find image file `%s'", specified_file, Qnil);
7092 return 0;
7093 }
7094
7095 /* Open the GIF file. */
7096 gif = fn_DGifOpenFileName (SSDATA (file));
7097 if (gif == NULL)
7098 {
7099 image_error ("Cannot open `%s'", file, Qnil);
7100 return 0;
7101 }
7102 }
7103 else
7104 {
7105 if (!STRINGP (specified_data))
7106 {
7107 image_error ("Invalid image data `%s'", specified_data, Qnil);
7108 return 0;
7109 }
7110
7111 /* Read from memory! */
7112 current_gif_memory_src = &memsrc;
7113 memsrc.bytes = SDATA (specified_data);
7114 memsrc.len = SBYTES (specified_data);
7115 memsrc.index = 0;
7116
7117 gif = fn_DGifOpen (&memsrc, gif_read_from_memory);
7118 if (!gif)
7119 {
7120 image_error ("Cannot open memory source `%s'", img->spec, Qnil);
7121 return 0;
7122 }
7123 }
7124
7125 /* Before reading entire contents, check the declared image size. */
7126 if (!check_image_size (f, gif->SWidth, gif->SHeight))
7127 {
7128 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7129 fn_DGifCloseFile (gif);
7130 return 0;
7131 }
7132
7133 /* Read entire contents. */
7134 rc = fn_DGifSlurp (gif);
7135 if (rc == GIF_ERROR || gif->ImageCount <= 0)
7136 {
7137 image_error ("Error reading `%s'", img->spec, Qnil);
7138 fn_DGifCloseFile (gif);
7139 return 0;
7140 }
7141
7142 /* Which sub-image are we to display? */
7143 {
7144 Lisp_Object image_number = image_spec_value (img->spec, QCindex, NULL);
7145 idx = INTEGERP (image_number) ? XFASTINT (image_number) : 0;
7146 if (idx < 0 || idx >= gif->ImageCount)
7147 {
7148 image_error ("Invalid image number `%s' in image `%s'",
7149 image_number, img->spec);
7150 fn_DGifCloseFile (gif);
7151 return 0;
7152 }
7153 }
7154
7155 img->corners[TOP_CORNER] = gif->SavedImages[idx].ImageDesc.Top;
7156 img->corners[LEFT_CORNER] = gif->SavedImages[idx].ImageDesc.Left;
7157 image_height = gif->SavedImages[idx].ImageDesc.Height;
7158 img->corners[BOT_CORNER] = img->corners[TOP_CORNER] + image_height;
7159 image_width = gif->SavedImages[idx].ImageDesc.Width;
7160 img->corners[RIGHT_CORNER] = img->corners[LEFT_CORNER] + image_width;
7161
7162 width = img->width = max (gif->SWidth,
7163 max (gif->Image.Left + gif->Image.Width,
7164 img->corners[RIGHT_CORNER]));
7165 height = img->height = max (gif->SHeight,
7166 max (gif->Image.Top + gif->Image.Height,
7167 img->corners[BOT_CORNER]));
7168
7169 if (!check_image_size (f, width, height))
7170 {
7171 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7172 fn_DGifCloseFile (gif);
7173 return 0;
7174 }
7175
7176 /* Create the X image and pixmap. */
7177 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
7178 {
7179 fn_DGifCloseFile (gif);
7180 return 0;
7181 }
7182
7183 /* Clear the part of the screen image not covered by the image.
7184 Full animated GIF support requires more here (see the gif89 spec,
7185 disposal methods). Let's simply assume that the part not covered
7186 by a sub-image is in the frame's background color. */
7187 for (y = 0; y < img->corners[TOP_CORNER]; ++y)
7188 for (x = 0; x < width; ++x)
7189 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7190
7191 for (y = img->corners[BOT_CORNER]; y < height; ++y)
7192 for (x = 0; x < width; ++x)
7193 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7194
7195 for (y = img->corners[TOP_CORNER]; y < img->corners[BOT_CORNER]; ++y)
7196 {
7197 for (x = 0; x < img->corners[LEFT_CORNER]; ++x)
7198 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7199 for (x = img->corners[RIGHT_CORNER]; x < width; ++x)
7200 XPutPixel (ximg, x, y, FRAME_BACKGROUND_PIXEL (f));
7201 }
7202
7203 /* Read the GIF image into the X image. */
7204
7205 /* FIXME: With the current implementation, loading an animated gif
7206 is quadratic in the number of animation frames, since each frame
7207 is a separate struct image. We must provide a way for a single
7208 gif_load call to construct and save all animation frames. */
7209
7210 init_color_table ();
7211 if (STRINGP (specified_bg))
7212 bgcolor = x_alloc_image_color (f, img, specified_bg,
7213 FRAME_BACKGROUND_PIXEL (f));
7214 for (j = 0; j <= idx; ++j)
7215 {
7216 /* We use a local variable `raster' here because RasterBits is a
7217 char *, which invites problems with bytes >= 0x80. */
7218 struct SavedImage *subimage = gif->SavedImages + j;
7219 unsigned char *raster = (unsigned char *) subimage->RasterBits;
7220 int transparency_color_index = -1;
7221 int disposal = 0;
7222
7223 /* Find the Graphic Control Extension block for this sub-image.
7224 Extract the disposal method and transparency color. */
7225 for (i = 0; i < subimage->ExtensionBlockCount; i++)
7226 {
7227 ExtensionBlock *extblock = subimage->ExtensionBlocks + i;
7228
7229 if ((extblock->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION)
7230 && extblock->ByteCount == 4
7231 && extblock->Bytes[0] & 1)
7232 {
7233 /* From gif89a spec: 1 = "keep in place", 2 = "restore
7234 to background". Treat any other value like 2. */
7235 disposal = (extblock->Bytes[0] >> 2) & 7;
7236 transparency_color_index = (unsigned char) extblock->Bytes[3];
7237 break;
7238 }
7239 }
7240
7241 /* We can't "keep in place" the first subimage. */
7242 if (j == 0)
7243 disposal = 2;
7244
7245 /* Allocate subimage colors. */
7246 memset (pixel_colors, 0, sizeof pixel_colors);
7247 gif_color_map = subimage->ImageDesc.ColorMap;
7248 if (!gif_color_map)
7249 gif_color_map = gif->SColorMap;
7250
7251 if (gif_color_map)
7252 for (i = 0; i < gif_color_map->ColorCount; ++i)
7253 {
7254 if (transparency_color_index == i)
7255 pixel_colors[i] = STRINGP (specified_bg)
7256 ? bgcolor : FRAME_BACKGROUND_PIXEL (f);
7257 else
7258 {
7259 int r = gif_color_map->Colors[i].Red << 8;
7260 int g = gif_color_map->Colors[i].Green << 8;
7261 int b = gif_color_map->Colors[i].Blue << 8;
7262 pixel_colors[i] = lookup_rgb_color (f, r, g, b);
7263 }
7264 }
7265
7266 /* Apply the pixel values. */
7267 if (gif->SavedImages[j].ImageDesc.Interlace)
7268 {
7269 int row, pass;
7270
7271 for (y = 0, row = interlace_start[0], pass = 0;
7272 y < image_height;
7273 y++, row += interlace_increment[pass])
7274 {
7275 if (row >= image_height)
7276 {
7277 row = interlace_start[++pass];
7278 while (row >= image_height)
7279 row = interlace_start[++pass];
7280 }
7281
7282 for (x = 0; x < image_width; x++)
7283 {
7284 int c = raster[y * image_width + x];
7285 if (transparency_color_index != c || disposal != 1)
7286 XPutPixel (ximg, x + img->corners[LEFT_CORNER],
7287 row + img->corners[TOP_CORNER], pixel_colors[c]);
7288 }
7289 }
7290 }
7291 else
7292 {
7293 for (y = 0; y < image_height; ++y)
7294 for (x = 0; x < image_width; ++x)
7295 {
7296 int c = raster[y * image_width + x];
7297 if (transparency_color_index != c || disposal != 1)
7298 XPutPixel (ximg, x + img->corners[LEFT_CORNER],
7299 y + img->corners[TOP_CORNER], pixel_colors[c]);
7300 }
7301 }
7302 }
7303
7304 #ifdef COLOR_TABLE_SUPPORT
7305 img->colors = colors_in_color_table (&img->ncolors);
7306 free_color_table ();
7307 #endif /* COLOR_TABLE_SUPPORT */
7308
7309 /* Save GIF image extension data for `image-metadata'.
7310 Format is (count IMAGES extension-data (FUNCTION "BYTES" ...)). */
7311 img->lisp_data = Qnil;
7312 if (gif->SavedImages[idx].ExtensionBlockCount > 0)
7313 {
7314 unsigned int delay = 0;
7315 ExtensionBlock *ext = gif->SavedImages[idx].ExtensionBlocks;
7316 for (i = 0; i < gif->SavedImages[idx].ExtensionBlockCount; i++, ext++)
7317 /* Append (... FUNCTION "BYTES") */
7318 {
7319 img->lisp_data
7320 = Fcons (make_number (ext->Function),
7321 Fcons (make_unibyte_string (ext->Bytes, ext->ByteCount),
7322 img->lisp_data));
7323 if (ext->Function == GIF_LOCAL_DESCRIPTOR_EXTENSION
7324 && ext->ByteCount == 4)
7325 {
7326 delay = ext->Bytes[2] << CHAR_BIT;
7327 delay |= ext->Bytes[1];
7328 }
7329 }
7330 img->lisp_data = Fcons (Qextension_data,
7331 Fcons (img->lisp_data, Qnil));
7332 if (delay)
7333 img->lisp_data
7334 = Fcons (Qdelay,
7335 Fcons (make_float (((double) delay) * 0.01),
7336 img->lisp_data));
7337 }
7338
7339 if (gif->ImageCount > 1)
7340 img->lisp_data = Fcons (Qcount,
7341 Fcons (make_number (gif->ImageCount),
7342 img->lisp_data));
7343
7344 fn_DGifCloseFile (gif);
7345
7346 /* Maybe fill in the background field while we have ximg handy. */
7347 if (NILP (image_spec_value (img->spec, QCbackground, NULL)))
7348 /* Casting avoids a GCC warning. */
7349 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
7350
7351 /* Put the image into the pixmap, then free the X image and its buffer. */
7352 x_put_x_image (f, ximg, img->pixmap, width, height);
7353 x_destroy_x_image (ximg);
7354
7355 return 1;
7356 }
7357
7358 #else /* !HAVE_GIF */
7359
7360 #ifdef HAVE_NS
7361 static int
7362 gif_load (struct frame *f, struct image *img)
7363 {
7364 return ns_load_image (f, img,
7365 image_spec_value (img->spec, QCfile, NULL),
7366 image_spec_value (img->spec, QCdata, NULL));
7367 }
7368 #endif /* HAVE_NS */
7369
7370 #endif /* HAVE_GIF */
7371
7372
7373 /***********************************************************************
7374 ImageMagick
7375 ***********************************************************************/
7376 #if defined (HAVE_IMAGEMAGICK)
7377
7378 static Lisp_Object Qimagemagick;
7379
7380 static int imagemagick_image_p (Lisp_Object);
7381 static int imagemagick_load (struct frame *, struct image *);
7382 static void imagemagick_clear_image (struct frame *, struct image *);
7383
7384 /* Indices of image specification fields in imagemagick_format. */
7385
7386 enum imagemagick_keyword_index
7387 {
7388 IMAGEMAGICK_TYPE,
7389 IMAGEMAGICK_DATA,
7390 IMAGEMAGICK_FILE,
7391 IMAGEMAGICK_ASCENT,
7392 IMAGEMAGICK_MARGIN,
7393 IMAGEMAGICK_RELIEF,
7394 IMAGEMAGICK_ALGORITHM,
7395 IMAGEMAGICK_HEURISTIC_MASK,
7396 IMAGEMAGICK_MASK,
7397 IMAGEMAGICK_BACKGROUND,
7398 IMAGEMAGICK_HEIGHT,
7399 IMAGEMAGICK_WIDTH,
7400 IMAGEMAGICK_ROTATION,
7401 IMAGEMAGICK_CROP,
7402 IMAGEMAGICK_LAST
7403 };
7404
7405 /* Vector of image_keyword structures describing the format
7406 of valid user-defined image specifications. */
7407
7408 static struct image_keyword imagemagick_format[IMAGEMAGICK_LAST] =
7409 {
7410 {":type", IMAGE_SYMBOL_VALUE, 1},
7411 {":data", IMAGE_STRING_VALUE, 0},
7412 {":file", IMAGE_STRING_VALUE, 0},
7413 {":ascent", IMAGE_ASCENT_VALUE, 0},
7414 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7415 {":relief", IMAGE_INTEGER_VALUE, 0},
7416 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7417 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7418 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7419 {":background", IMAGE_STRING_OR_NIL_VALUE, 0},
7420 {":height", IMAGE_INTEGER_VALUE, 0},
7421 {":width", IMAGE_INTEGER_VALUE, 0},
7422 {":rotation", IMAGE_NUMBER_VALUE, 0},
7423 {":crop", IMAGE_DONT_CHECK_VALUE_TYPE, 0}
7424 };
7425
7426 /* Structure describing the image type for any image handled via
7427 ImageMagick. */
7428
7429 static struct image_type imagemagick_type =
7430 {
7431 &Qimagemagick,
7432 imagemagick_image_p,
7433 imagemagick_load,
7434 imagemagick_clear_image,
7435 NULL
7436 };
7437
7438 /* Free X resources of imagemagick image IMG which is used on frame F. */
7439
7440 static void
7441 imagemagick_clear_image (struct frame *f,
7442 struct image *img)
7443 {
7444 x_clear_image (f, img);
7445 }
7446
7447 /* Return non-zero if OBJECT is a valid IMAGEMAGICK image specification. Do
7448 this by calling parse_image_spec and supplying the keywords that
7449 identify the IMAGEMAGICK format. */
7450
7451 static int
7452 imagemagick_image_p (Lisp_Object object)
7453 {
7454 struct image_keyword fmt[IMAGEMAGICK_LAST];
7455 memcpy (fmt, imagemagick_format, sizeof fmt);
7456
7457 if (!parse_image_spec (object, fmt, IMAGEMAGICK_LAST, Qimagemagick))
7458 return 0;
7459
7460 /* Must specify either the :data or :file keyword. */
7461 return fmt[IMAGEMAGICK_FILE].count + fmt[IMAGEMAGICK_DATA].count == 1;
7462 }
7463
7464 /* The GIF library also defines DrawRectangle, but its never used in Emacs.
7465 Therefore rename the function so it doesnt collide with ImageMagick. */
7466 #define DrawRectangle DrawRectangleGif
7467 #include <wand/MagickWand.h>
7468
7469 /* ImageMagick 6.5.3 through 6.6.5 hid PixelGetMagickColor for some reason.
7470 Emacs seems to work fine with the hidden version, so unhide it. */
7471 #include <magick/version.h>
7472 #if 0x653 <= MagickLibVersion && MagickLibVersion <= 0x665
7473 extern WandExport void PixelGetMagickColor (const PixelWand *,
7474 MagickPixelPacket *);
7475 #endif
7476
7477 /* Helper function for imagemagick_load, which does the actual loading
7478 given contents and size, apart from frame and image structures,
7479 passed from imagemagick_load. Uses librimagemagick to do most of
7480 the image processing.
7481
7482 F is a pointer to the Emacs frame; IMG to the image structure to
7483 prepare; CONTENTS is the string containing the IMAGEMAGICK data to
7484 be parsed; SIZE is the number of bytes of data; and FILENAME is
7485 either the file name or the image data.
7486
7487 Return non-zero if successful. */
7488
7489 static int
7490 imagemagick_load_image (struct frame *f, struct image *img,
7491 unsigned char *contents, unsigned int size,
7492 char *filename)
7493 {
7494 size_t width;
7495 size_t height;
7496
7497 MagickBooleanType status;
7498
7499 XImagePtr ximg;
7500 int x;
7501 int y;
7502
7503 MagickWand *image_wand;
7504 MagickWand *ping_wand;
7505 PixelIterator *iterator;
7506 PixelWand **pixels;
7507 MagickPixelPacket pixel;
7508 Lisp_Object image;
7509 Lisp_Object value;
7510 Lisp_Object crop;
7511 long ino;
7512 int desired_width, desired_height;
7513 double rotation;
7514 int imagemagick_rendermethod;
7515 int pixelwidth;
7516 ImageInfo *image_info;
7517 ExceptionInfo *exception;
7518 Image * im_image;
7519
7520
7521 /* Handle image index for image types who can contain more than one image.
7522 Interface :index is same as for GIF. First we "ping" the image to see how
7523 many sub-images it contains. Pinging is faster than loading the image to
7524 find out things about it. */
7525
7526 /* Initialize the imagemagick environment. */
7527 MagickWandGenesis ();
7528 image = image_spec_value (img->spec, QCindex, NULL);
7529 ino = INTEGERP (image) ? XFASTINT (image) : 0;
7530 ping_wand = NewMagickWand ();
7531 MagickSetResolution (ping_wand, 2, 2);
7532 if (filename != NULL)
7533 {
7534 status = MagickPingImage (ping_wand, filename);
7535 }
7536 else
7537 {
7538 status = MagickPingImageBlob (ping_wand, contents, size);
7539 }
7540
7541 if (ino >= MagickGetNumberImages (ping_wand))
7542 {
7543 image_error ("Invalid image number `%s' in image `%s'",
7544 image, img->spec);
7545 DestroyMagickWand (ping_wand);
7546 return 0;
7547 }
7548
7549 if (MagickGetNumberImages(ping_wand) > 1)
7550 img->lisp_data =
7551 Fcons (Qcount,
7552 Fcons (make_number (MagickGetNumberImages (ping_wand)),
7553 img->lisp_data));
7554
7555 DestroyMagickWand (ping_wand);
7556
7557 /* Now we know how many images are inside the file. If it's not a
7558 bundle, the number is one. */
7559
7560 if (filename != NULL)
7561 {
7562 image_info = CloneImageInfo ((ImageInfo *) NULL);
7563 (void) strcpy (image_info->filename, filename);
7564 image_info->number_scenes = 1;
7565 image_info->scene = ino;
7566 exception = AcquireExceptionInfo ();
7567
7568 im_image = ReadImage (image_info, exception);
7569 DestroyExceptionInfo (exception);
7570
7571 if (im_image == NULL)
7572 goto imagemagick_no_wand;
7573 image_wand = NewMagickWandFromImage (im_image);
7574 DestroyImage(im_image);
7575 }
7576 else
7577 {
7578 image_wand = NewMagickWand ();
7579 if (MagickReadImageBlob (image_wand, contents, size) == MagickFalse)
7580 goto imagemagick_error;
7581 }
7582
7583 /* If width and/or height is set in the display spec assume we want
7584 to scale to those values. If either h or w is unspecified, the
7585 unspecified should be calculated from the specified to preserve
7586 aspect ratio. */
7587
7588 value = image_spec_value (img->spec, QCwidth, NULL);
7589 desired_width = (INTEGERP (value) ? XFASTINT (value) : -1);
7590 value = image_spec_value (img->spec, QCheight, NULL);
7591 desired_height = (INTEGERP (value) ? XFASTINT (value) : -1);
7592
7593 height = MagickGetImageHeight (image_wand);
7594 width = MagickGetImageWidth (image_wand);
7595
7596 if (desired_width != -1 && desired_height == -1)
7597 /* w known, calculate h. */
7598 desired_height = (double) desired_width / width * height;
7599 if (desired_width == -1 && desired_height != -1)
7600 /* h known, calculate w. */
7601 desired_width = (double) desired_height / height * width;
7602 if (desired_width != -1 && desired_height != -1)
7603 {
7604 status = MagickScaleImage (image_wand, desired_width, desired_height);
7605 if (status == MagickFalse)
7606 {
7607 image_error ("Imagemagick scale failed", Qnil, Qnil);
7608 goto imagemagick_error;
7609 }
7610 }
7611
7612 /* crop behaves similar to image slicing in Emacs but is more memory
7613 efficient. */
7614 crop = image_spec_value (img->spec, QCcrop, NULL);
7615
7616 if (CONSP (crop) && INTEGERP (XCAR (crop)))
7617 {
7618 /* After some testing, it seems MagickCropImage is the fastest crop
7619 function in ImageMagick. This crop function seems to do less copying
7620 than the alternatives, but it still reads the entire image into memory
7621 before croping, which is aparently difficult to avoid when using
7622 imagemagick. */
7623 int w, h;
7624 w = XFASTINT (XCAR (crop));
7625 crop = XCDR (crop);
7626 if (CONSP (crop) && INTEGERP (XCAR (crop)))
7627 {
7628 h = XFASTINT (XCAR (crop));
7629 crop = XCDR (crop);
7630 if (CONSP (crop) && INTEGERP (XCAR (crop)))
7631 {
7632 x = XFASTINT (XCAR (crop));
7633 crop = XCDR (crop);
7634 if (CONSP (crop) && INTEGERP (XCAR (crop)))
7635 {
7636 y = XFASTINT (XCAR (crop));
7637 MagickCropImage (image_wand, w, h, x, y);
7638 }
7639 }
7640 }
7641 }
7642
7643 /* Furthermore :rotation. we need background color and angle for
7644 rotation. */
7645 /*
7646 TODO background handling for rotation specified_bg =
7647 image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
7648 (specified_bg). */
7649 value = image_spec_value (img->spec, QCrotation, NULL);
7650 if (FLOATP (value))
7651 {
7652 PixelWand* background = NewPixelWand ();
7653 PixelSetColor (background, "#ffffff");/*TODO remove hardcode*/
7654
7655 rotation = extract_float (value);
7656
7657 status = MagickRotateImage (image_wand, background, rotation);
7658 DestroyPixelWand (background);
7659 if (status == MagickFalse)
7660 {
7661 image_error ("Imagemagick image rotate failed", Qnil, Qnil);
7662 goto imagemagick_error;
7663 }
7664 }
7665
7666 /* Finally we are done manipulating the image. Figure out the
7667 resulting width/height and transfer ownerwship to Emacs. */
7668 height = MagickGetImageHeight (image_wand);
7669 width = MagickGetImageWidth (image_wand);
7670
7671 if (! check_image_size (f, width, height))
7672 {
7673 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
7674 goto imagemagick_error;
7675 }
7676
7677 /* We can now get a valid pixel buffer from the imagemagick file, if all
7678 went ok. */
7679
7680 init_color_table ();
7681 imagemagick_rendermethod = (INTEGERP (Vimagemagick_render_type)
7682 ? XFASTINT (Vimagemagick_render_type) : 0);
7683 if (imagemagick_rendermethod == 0)
7684 {
7685 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7686 if (!x_create_x_image_and_pixmap (f, width, height, 0,
7687 &ximg, &img->pixmap))
7688 {
7689 #ifdef COLOR_TABLE_SUPPORT
7690 free_color_table ();
7691 #endif
7692 image_error("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7693 goto imagemagick_error;
7694 }
7695
7696 /* Copy imagegmagick image to x with primitive yet robust pixel
7697 pusher loop. This has been tested a lot with many different
7698 images. */
7699
7700 /* Copy pixels from the imagemagick image structure to the x image map. */
7701 iterator = NewPixelIterator (image_wand);
7702 if (iterator == (PixelIterator *) NULL)
7703 {
7704 #ifdef COLOR_TABLE_SUPPORT
7705 free_color_table ();
7706 #endif
7707 x_destroy_x_image (ximg);
7708 image_error ("Imagemagick pixel iterator creation failed",
7709 Qnil, Qnil);
7710 goto imagemagick_error;
7711 }
7712
7713 for (y = 0; y < (long) MagickGetImageHeight (image_wand); y++)
7714 {
7715 pixels = PixelGetNextIteratorRow (iterator, &width);
7716 if (pixels == (PixelWand **) NULL)
7717 break;
7718 for (x = 0; x < (long) width; x++)
7719 {
7720 PixelGetMagickColor (pixels[x], &pixel);
7721 XPutPixel (ximg, x, y,
7722 lookup_rgb_color (f,
7723 pixel.red,
7724 pixel.green,
7725 pixel.blue));
7726 }
7727 }
7728 DestroyPixelIterator (iterator);
7729 }
7730
7731 if (imagemagick_rendermethod == 1)
7732 {
7733 /* Magicexportimage is normaly faster than pixelpushing. This
7734 method is also well tested. Some aspects of this method are
7735 ad-hoc and needs to be more researched. */
7736 int imagedepth = 24;/*MagickGetImageDepth(image_wand);*/
7737 const char *exportdepth = imagedepth <= 8 ? "I" : "BGRP";/*"RGBP";*/
7738 /* Try to create a x pixmap to hold the imagemagick pixmap. */
7739 if (!x_create_x_image_and_pixmap (f, width, height, imagedepth,
7740 &ximg, &img->pixmap))
7741 {
7742 #ifdef COLOR_TABLE_SUPPORT
7743 free_color_table ();
7744 #endif
7745 image_error("Imagemagick X bitmap allocation failure", Qnil, Qnil);
7746 goto imagemagick_error;
7747 }
7748
7749
7750 /* Oddly, the below code doesnt seem to work:*/
7751 /* switch(ximg->bitmap_unit){ */
7752 /* case 8: */
7753 /* pixelwidth=CharPixel; */
7754 /* break; */
7755 /* case 16: */
7756 /* pixelwidth=ShortPixel; */
7757 /* break; */
7758 /* case 32: */
7759 /* pixelwidth=LongPixel; */
7760 /* break; */
7761 /* } */
7762 /*
7763 Here im just guessing the format of the bitmap.
7764 happens to work fine for:
7765 - bw djvu images
7766 on rgb display.
7767 seems about 3 times as fast as pixel pushing(not carefully measured)
7768 */
7769 pixelwidth = CharPixel;/*??? TODO figure out*/
7770 #ifdef HAVE_MAGICKEXPORTIMAGEPIXELS
7771 MagickExportImagePixels (image_wand,
7772 0, 0,
7773 width, height,
7774 exportdepth,
7775 pixelwidth,
7776 /*&(img->pixmap));*/
7777 ximg->data);
7778 #else
7779 image_error ("You dont have MagickExportImagePixels, upgrade ImageMagick!",
7780 Qnil, Qnil);
7781 #endif
7782 }
7783
7784
7785 #ifdef COLOR_TABLE_SUPPORT
7786 /* Remember colors allocated for this image. */
7787 img->colors = colors_in_color_table (&img->ncolors);
7788 free_color_table ();
7789 #endif /* COLOR_TABLE_SUPPORT */
7790
7791
7792 img->width = width;
7793 img->height = height;
7794
7795 /* Put the image into the pixmap, then free the X image and its
7796 buffer. */
7797 x_put_x_image (f, ximg, img->pixmap, width, height);
7798 x_destroy_x_image (ximg);
7799
7800
7801 /* Final cleanup. image_wand should be the only resource left. */
7802 DestroyMagickWand (image_wand);
7803 /* `MagickWandTerminus' terminates the imagemagick environment. */
7804 MagickWandTerminus ();
7805
7806 return 1;
7807
7808 imagemagick_error:
7809 DestroyMagickWand (image_wand);
7810 imagemagick_no_wand:
7811 MagickWandTerminus ();
7812 /* TODO more cleanup. */
7813 image_error ("Error parsing IMAGEMAGICK image `%s'", img->spec, Qnil);
7814 return 0;
7815 }
7816
7817
7818 /* Load IMAGEMAGICK image IMG for use on frame F. Value is non-zero if
7819 successful. this function will go into the imagemagick_type structure, and
7820 the prototype thus needs to be compatible with that structure. */
7821
7822 static int
7823 imagemagick_load (struct frame *f, struct image *img)
7824 {
7825 int success_p = 0;
7826 Lisp_Object file_name;
7827
7828 /* If IMG->spec specifies a file name, create a non-file spec from it. */
7829 file_name = image_spec_value (img->spec, QCfile, NULL);
7830 if (STRINGP (file_name))
7831 {
7832 Lisp_Object file;
7833
7834 file = x_find_image_file (file_name);
7835 if (!STRINGP (file))
7836 {
7837 image_error ("Cannot find image file `%s'", file_name, Qnil);
7838 return 0;
7839 }
7840 success_p = imagemagick_load_image (f, img, 0, 0, SSDATA (file));
7841 }
7842 /* Else its not a file, its a lisp object. Load the image from a
7843 lisp object rather than a file. */
7844 else
7845 {
7846 Lisp_Object data;
7847
7848 data = image_spec_value (img->spec, QCdata, NULL);
7849 if (!STRINGP (data))
7850 {
7851 image_error ("Invalid image data `%s'", data, Qnil);
7852 return 0;
7853 }
7854 success_p = imagemagick_load_image (f, img, SDATA (data),
7855 SBYTES (data), NULL);
7856 }
7857
7858 return success_p;
7859 }
7860
7861 DEFUN ("imagemagick-types", Fimagemagick_types, Simagemagick_types, 0, 0, 0,
7862 doc: /* Return a list of image types supported by ImageMagick.
7863 Each entry in this list is a symbol named after an ImageMagick format
7864 tag. See the ImageMagick manual for a list of ImageMagick formats and
7865 their descriptions (http://www.imagemagick.org/script/formats.php).
7866
7867 Note that ImageMagick recognizes many file-types that Emacs does not
7868 recognize as images, such as C. See `imagemagick-types-inhibit'. */)
7869 (void)
7870 {
7871 Lisp_Object typelist = Qnil;
7872 size_t numf = 0;
7873 ExceptionInfo ex;
7874 char **imtypes = GetMagickList ("*", &numf, &ex);
7875 int i;
7876 Lisp_Object Qimagemagicktype;
7877 for (i = 0; i < numf; i++)
7878 {
7879 Qimagemagicktype = intern (imtypes[i]);
7880 typelist = Fcons (Qimagemagicktype, typelist);
7881 }
7882 return typelist;
7883 }
7884
7885 #endif /* defined (HAVE_IMAGEMAGICK) */
7886
7887
7888 \f
7889 /***********************************************************************
7890 SVG
7891 ***********************************************************************/
7892
7893 #if defined (HAVE_RSVG)
7894
7895 /* Function prototypes. */
7896
7897 static int svg_image_p (Lisp_Object object);
7898 static int svg_load (struct frame *f, struct image *img);
7899
7900 static int svg_load_image (struct frame *, struct image *,
7901 unsigned char *, ptrdiff_t);
7902
7903 /* The symbol `svg' identifying images of this type. */
7904
7905 static Lisp_Object Qsvg;
7906
7907 /* Indices of image specification fields in svg_format, below. */
7908
7909 enum svg_keyword_index
7910 {
7911 SVG_TYPE,
7912 SVG_DATA,
7913 SVG_FILE,
7914 SVG_ASCENT,
7915 SVG_MARGIN,
7916 SVG_RELIEF,
7917 SVG_ALGORITHM,
7918 SVG_HEURISTIC_MASK,
7919 SVG_MASK,
7920 SVG_BACKGROUND,
7921 SVG_LAST
7922 };
7923
7924 /* Vector of image_keyword structures describing the format
7925 of valid user-defined image specifications. */
7926
7927 static const struct image_keyword svg_format[SVG_LAST] =
7928 {
7929 {":type", IMAGE_SYMBOL_VALUE, 1},
7930 {":data", IMAGE_STRING_VALUE, 0},
7931 {":file", IMAGE_STRING_VALUE, 0},
7932 {":ascent", IMAGE_ASCENT_VALUE, 0},
7933 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
7934 {":relief", IMAGE_INTEGER_VALUE, 0},
7935 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7936 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7937 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
7938 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
7939 };
7940
7941 /* Structure describing the image type `svg'. Its the same type of
7942 structure defined for all image formats, handled by emacs image
7943 functions. See struct image_type in dispextern.h. */
7944
7945 static struct image_type svg_type =
7946 {
7947 /* An identifier showing that this is an image structure for the SVG format. */
7948 &Qsvg,
7949 /* Handle to a function that can be used to identify a SVG file. */
7950 svg_image_p,
7951 /* Handle to function used to load a SVG file. */
7952 svg_load,
7953 /* Handle to function to free sresources for SVG. */
7954 x_clear_image,
7955 /* An internal field to link to the next image type in a list of
7956 image types, will be filled in when registering the format. */
7957 NULL
7958 };
7959
7960
7961 /* Return non-zero if OBJECT is a valid SVG image specification. Do
7962 this by calling parse_image_spec and supplying the keywords that
7963 identify the SVG format. */
7964
7965 static int
7966 svg_image_p (Lisp_Object object)
7967 {
7968 struct image_keyword fmt[SVG_LAST];
7969 memcpy (fmt, svg_format, sizeof fmt);
7970
7971 if (!parse_image_spec (object, fmt, SVG_LAST, Qsvg))
7972 return 0;
7973
7974 /* Must specify either the :data or :file keyword. */
7975 return fmt[SVG_FILE].count + fmt[SVG_DATA].count == 1;
7976 }
7977
7978 #include <librsvg/rsvg.h>
7979
7980 #ifdef HAVE_NTGUI
7981
7982 /* SVG library functions. */
7983 DEF_IMGLIB_FN (RsvgHandle *, rsvg_handle_new);
7984 DEF_IMGLIB_FN (void, rsvg_handle_get_dimensions);
7985 DEF_IMGLIB_FN (gboolean, rsvg_handle_write);
7986 DEF_IMGLIB_FN (gboolean, rsvg_handle_close);
7987 DEF_IMGLIB_FN (GdkPixbuf *, rsvg_handle_get_pixbuf);
7988
7989 DEF_IMGLIB_FN (int, gdk_pixbuf_get_width);
7990 DEF_IMGLIB_FN (int, gdk_pixbuf_get_height);
7991 DEF_IMGLIB_FN (guchar *, gdk_pixbuf_get_pixels);
7992 DEF_IMGLIB_FN (int, gdk_pixbuf_get_rowstride);
7993 DEF_IMGLIB_FN (GdkColorspace, gdk_pixbuf_get_colorspace);
7994 DEF_IMGLIB_FN (int, gdk_pixbuf_get_n_channels);
7995 DEF_IMGLIB_FN (gboolean, gdk_pixbuf_get_has_alpha);
7996 DEF_IMGLIB_FN (int, gdk_pixbuf_get_bits_per_sample);
7997
7998 DEF_IMGLIB_FN (void, g_type_init);
7999 DEF_IMGLIB_FN (void, g_object_unref);
8000 DEF_IMGLIB_FN (void, g_error_free);
8001
8002 Lisp_Object Qgdk_pixbuf, Qglib, Qgobject;
8003
8004 static int
8005 init_svg_functions (Lisp_Object libraries)
8006 {
8007 HMODULE library, gdklib, glib, gobject;
8008
8009 if (!(glib = w32_delayed_load (libraries, Qglib))
8010 || !(gobject = w32_delayed_load (libraries, Qgobject))
8011 || !(gdklib = w32_delayed_load (libraries, Qgdk_pixbuf))
8012 || !(library = w32_delayed_load (libraries, Qsvg)))
8013 return 0;
8014
8015 LOAD_IMGLIB_FN (library, rsvg_handle_new);
8016 LOAD_IMGLIB_FN (library, rsvg_handle_get_dimensions);
8017 LOAD_IMGLIB_FN (library, rsvg_handle_write);
8018 LOAD_IMGLIB_FN (library, rsvg_handle_close);
8019 LOAD_IMGLIB_FN (library, rsvg_handle_get_pixbuf);
8020
8021 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_width);
8022 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_height);
8023 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_pixels);
8024 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_rowstride);
8025 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_colorspace);
8026 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_n_channels);
8027 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_has_alpha);
8028 LOAD_IMGLIB_FN (gdklib, gdk_pixbuf_get_bits_per_sample);
8029
8030 LOAD_IMGLIB_FN (gobject, g_type_init);
8031 LOAD_IMGLIB_FN (gobject, g_object_unref);
8032 LOAD_IMGLIB_FN (glib, g_error_free);
8033
8034 return 1;
8035 }
8036
8037 #else
8038 /* The following aliases for library functions allow dynamic loading
8039 to be used on some platforms. */
8040 #define fn_rsvg_handle_new rsvg_handle_new
8041 #define fn_rsvg_handle_get_dimensions rsvg_handle_get_dimensions
8042 #define fn_rsvg_handle_write rsvg_handle_write
8043 #define fn_rsvg_handle_close rsvg_handle_close
8044 #define fn_rsvg_handle_get_pixbuf rsvg_handle_get_pixbuf
8045
8046 #define fn_gdk_pixbuf_get_width gdk_pixbuf_get_width
8047 #define fn_gdk_pixbuf_get_height gdk_pixbuf_get_height
8048 #define fn_gdk_pixbuf_get_pixels gdk_pixbuf_get_pixels
8049 #define fn_gdk_pixbuf_get_rowstride gdk_pixbuf_get_rowstride
8050 #define fn_gdk_pixbuf_get_colorspace gdk_pixbuf_get_colorspace
8051 #define fn_gdk_pixbuf_get_n_channels gdk_pixbuf_get_n_channels
8052 #define fn_gdk_pixbuf_get_has_alpha gdk_pixbuf_get_has_alpha
8053 #define fn_gdk_pixbuf_get_bits_per_sample gdk_pixbuf_get_bits_per_sample
8054
8055 #define fn_g_type_init g_type_init
8056 #define fn_g_object_unref g_object_unref
8057 #define fn_g_error_free g_error_free
8058 #endif /* !HAVE_NTGUI */
8059
8060 /* Load SVG image IMG for use on frame F. Value is non-zero if
8061 successful. this function will go into the svg_type structure, and
8062 the prototype thus needs to be compatible with that structure. */
8063
8064 static int
8065 svg_load (struct frame *f, struct image *img)
8066 {
8067 int success_p = 0;
8068 Lisp_Object file_name;
8069
8070 /* If IMG->spec specifies a file name, create a non-file spec from it. */
8071 file_name = image_spec_value (img->spec, QCfile, NULL);
8072 if (STRINGP (file_name))
8073 {
8074 Lisp_Object file;
8075 unsigned char *contents;
8076 ptrdiff_t size;
8077
8078 file = x_find_image_file (file_name);
8079 if (!STRINGP (file))
8080 {
8081 image_error ("Cannot find image file `%s'", file_name, Qnil);
8082 return 0;
8083 }
8084
8085 /* Read the entire file into memory. */
8086 contents = slurp_file (SSDATA (file), &size);
8087 if (contents == NULL)
8088 {
8089 image_error ("Error loading SVG image `%s'", img->spec, Qnil);
8090 return 0;
8091 }
8092 /* If the file was slurped into memory properly, parse it. */
8093 success_p = svg_load_image (f, img, contents, size);
8094 xfree (contents);
8095 }
8096 /* Else its not a file, its a lisp object. Load the image from a
8097 lisp object rather than a file. */
8098 else
8099 {
8100 Lisp_Object data;
8101
8102 data = image_spec_value (img->spec, QCdata, NULL);
8103 if (!STRINGP (data))
8104 {
8105 image_error ("Invalid image data `%s'", data, Qnil);
8106 return 0;
8107 }
8108 success_p = svg_load_image (f, img, SDATA (data), SBYTES (data));
8109 }
8110
8111 return success_p;
8112 }
8113
8114 /* svg_load_image is a helper function for svg_load, which does the
8115 actual loading given contents and size, apart from frame and image
8116 structures, passed from svg_load.
8117
8118 Uses librsvg to do most of the image processing.
8119
8120 Returns non-zero when successful. */
8121 static int
8122 svg_load_image (struct frame *f, /* Pointer to emacs frame structure. */
8123 struct image *img, /* Pointer to emacs image structure. */
8124 unsigned char *contents, /* String containing the SVG XML data to be parsed. */
8125 ptrdiff_t size) /* Size of data in bytes. */
8126 {
8127 RsvgHandle *rsvg_handle;
8128 RsvgDimensionData dimension_data;
8129 GError *err = NULL;
8130 GdkPixbuf *pixbuf;
8131 int width;
8132 int height;
8133 const guint8 *pixels;
8134 int rowstride;
8135 XImagePtr ximg;
8136 Lisp_Object specified_bg;
8137 XColor background;
8138 int x;
8139 int y;
8140
8141 /* g_type_init is a glib function that must be called prior to using
8142 gnome type library functions. */
8143 fn_g_type_init ();
8144 /* Make a handle to a new rsvg object. */
8145 rsvg_handle = fn_rsvg_handle_new ();
8146
8147 /* Parse the contents argument and fill in the rsvg_handle. */
8148 fn_rsvg_handle_write (rsvg_handle, contents, size, &err);
8149 if (err) goto rsvg_error;
8150
8151 /* The parsing is complete, rsvg_handle is ready to used, close it
8152 for further writes. */
8153 fn_rsvg_handle_close (rsvg_handle, &err);
8154 if (err) goto rsvg_error;
8155
8156 fn_rsvg_handle_get_dimensions (rsvg_handle, &dimension_data);
8157 if (! check_image_size (f, dimension_data.width, dimension_data.height))
8158 {
8159 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8160 goto rsvg_error;
8161 }
8162
8163 /* We can now get a valid pixel buffer from the svg file, if all
8164 went ok. */
8165 pixbuf = fn_rsvg_handle_get_pixbuf (rsvg_handle);
8166 if (!pixbuf) goto rsvg_error;
8167 fn_g_object_unref (rsvg_handle);
8168
8169 /* Extract some meta data from the svg handle. */
8170 width = fn_gdk_pixbuf_get_width (pixbuf);
8171 height = fn_gdk_pixbuf_get_height (pixbuf);
8172 pixels = fn_gdk_pixbuf_get_pixels (pixbuf);
8173 rowstride = fn_gdk_pixbuf_get_rowstride (pixbuf);
8174
8175 /* Validate the svg meta data. */
8176 eassert (fn_gdk_pixbuf_get_colorspace (pixbuf) == GDK_COLORSPACE_RGB);
8177 eassert (fn_gdk_pixbuf_get_n_channels (pixbuf) == 4);
8178 eassert (fn_gdk_pixbuf_get_has_alpha (pixbuf));
8179 eassert (fn_gdk_pixbuf_get_bits_per_sample (pixbuf) == 8);
8180
8181 /* Try to create a x pixmap to hold the svg pixmap. */
8182 if (!x_create_x_image_and_pixmap (f, width, height, 0, &ximg, &img->pixmap))
8183 {
8184 fn_g_object_unref (pixbuf);
8185 return 0;
8186 }
8187
8188 init_color_table ();
8189
8190 /* Handle alpha channel by combining the image with a background
8191 color. */
8192 specified_bg = image_spec_value (img->spec, QCbackground, NULL);
8193 if (!STRINGP (specified_bg)
8194 || !x_defined_color (f, SSDATA (specified_bg), &background, 0))
8195 {
8196 #ifndef HAVE_NS
8197 background.pixel = FRAME_BACKGROUND_PIXEL (f);
8198 x_query_color (f, &background);
8199 #else
8200 ns_query_color (FRAME_BACKGROUND_COLOR (f), &background, 1);
8201 #endif
8202 }
8203
8204 /* SVG pixmaps specify transparency in the last byte, so right
8205 shift 8 bits to get rid of it, since emacs doesn't support
8206 transparency. */
8207 background.red >>= 8;
8208 background.green >>= 8;
8209 background.blue >>= 8;
8210
8211 /* This loop handles opacity values, since Emacs assumes
8212 non-transparent images. Each pixel must be "flattened" by
8213 calculating the resulting color, given the transparency of the
8214 pixel, and the image background color. */
8215 for (y = 0; y < height; ++y)
8216 {
8217 for (x = 0; x < width; ++x)
8218 {
8219 unsigned red;
8220 unsigned green;
8221 unsigned blue;
8222 unsigned opacity;
8223
8224 red = *pixels++;
8225 green = *pixels++;
8226 blue = *pixels++;
8227 opacity = *pixels++;
8228
8229 red = ((red * opacity)
8230 + (background.red * ((1 << 8) - opacity)));
8231 green = ((green * opacity)
8232 + (background.green * ((1 << 8) - opacity)));
8233 blue = ((blue * opacity)
8234 + (background.blue * ((1 << 8) - opacity)));
8235
8236 XPutPixel (ximg, x, y, lookup_rgb_color (f, red, green, blue));
8237 }
8238
8239 pixels += rowstride - 4 * width;
8240 }
8241
8242 #ifdef COLOR_TABLE_SUPPORT
8243 /* Remember colors allocated for this image. */
8244 img->colors = colors_in_color_table (&img->ncolors);
8245 free_color_table ();
8246 #endif /* COLOR_TABLE_SUPPORT */
8247
8248 fn_g_object_unref (pixbuf);
8249
8250 img->width = width;
8251 img->height = height;
8252
8253 /* Maybe fill in the background field while we have ximg handy.
8254 Casting avoids a GCC warning. */
8255 IMAGE_BACKGROUND (img, f, (XImagePtr_or_DC)ximg);
8256
8257 /* Put the image into the pixmap, then free the X image and its
8258 buffer. */
8259 x_put_x_image (f, ximg, img->pixmap, width, height);
8260 x_destroy_x_image (ximg);
8261
8262 return 1;
8263
8264 rsvg_error:
8265 fn_g_object_unref (rsvg_handle);
8266 /* FIXME: Use error->message so the user knows what is the actual
8267 problem with the image. */
8268 image_error ("Error parsing SVG image `%s'", img->spec, Qnil);
8269 fn_g_error_free (err);
8270 return 0;
8271 }
8272
8273 #endif /* defined (HAVE_RSVG) */
8274
8275
8276
8277 \f
8278 /***********************************************************************
8279 Ghostscript
8280 ***********************************************************************/
8281
8282 #ifdef HAVE_X_WINDOWS
8283 #define HAVE_GHOSTSCRIPT 1
8284 #endif /* HAVE_X_WINDOWS */
8285
8286 #ifdef HAVE_GHOSTSCRIPT
8287
8288 static int gs_image_p (Lisp_Object object);
8289 static int gs_load (struct frame *f, struct image *img);
8290 static void gs_clear_image (struct frame *f, struct image *img);
8291
8292 /* Keyword symbols. */
8293
8294 static Lisp_Object QCloader, QCbounding_box, QCpt_width, QCpt_height;
8295
8296 /* Indices of image specification fields in gs_format, below. */
8297
8298 enum gs_keyword_index
8299 {
8300 GS_TYPE,
8301 GS_PT_WIDTH,
8302 GS_PT_HEIGHT,
8303 GS_FILE,
8304 GS_LOADER,
8305 GS_BOUNDING_BOX,
8306 GS_ASCENT,
8307 GS_MARGIN,
8308 GS_RELIEF,
8309 GS_ALGORITHM,
8310 GS_HEURISTIC_MASK,
8311 GS_MASK,
8312 GS_BACKGROUND,
8313 GS_LAST
8314 };
8315
8316 /* Vector of image_keyword structures describing the format
8317 of valid user-defined image specifications. */
8318
8319 static const struct image_keyword gs_format[GS_LAST] =
8320 {
8321 {":type", IMAGE_SYMBOL_VALUE, 1},
8322 {":pt-width", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8323 {":pt-height", IMAGE_POSITIVE_INTEGER_VALUE, 1},
8324 {":file", IMAGE_STRING_VALUE, 1},
8325 {":loader", IMAGE_FUNCTION_VALUE, 0},
8326 {":bounding-box", IMAGE_DONT_CHECK_VALUE_TYPE, 1},
8327 {":ascent", IMAGE_ASCENT_VALUE, 0},
8328 {":margin", IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, 0},
8329 {":relief", IMAGE_INTEGER_VALUE, 0},
8330 {":conversion", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8331 {":heuristic-mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8332 {":mask", IMAGE_DONT_CHECK_VALUE_TYPE, 0},
8333 {":background", IMAGE_STRING_OR_NIL_VALUE, 0}
8334 };
8335
8336 /* Structure describing the image type `ghostscript'. */
8337
8338 static struct image_type gs_type =
8339 {
8340 &Qpostscript,
8341 gs_image_p,
8342 gs_load,
8343 gs_clear_image,
8344 NULL
8345 };
8346
8347
8348 /* Free X resources of Ghostscript image IMG which is used on frame F. */
8349
8350 static void
8351 gs_clear_image (struct frame *f, struct image *img)
8352 {
8353 x_clear_image (f, img);
8354 }
8355
8356
8357 /* Return non-zero if OBJECT is a valid Ghostscript image
8358 specification. */
8359
8360 static int
8361 gs_image_p (Lisp_Object object)
8362 {
8363 struct image_keyword fmt[GS_LAST];
8364 Lisp_Object tem;
8365 int i;
8366
8367 memcpy (fmt, gs_format, sizeof fmt);
8368
8369 if (!parse_image_spec (object, fmt, GS_LAST, Qpostscript))
8370 return 0;
8371
8372 /* Bounding box must be a list or vector containing 4 integers. */
8373 tem = fmt[GS_BOUNDING_BOX].value;
8374 if (CONSP (tem))
8375 {
8376 for (i = 0; i < 4; ++i, tem = XCDR (tem))
8377 if (!CONSP (tem) || !INTEGERP (XCAR (tem)))
8378 return 0;
8379 if (!NILP (tem))
8380 return 0;
8381 }
8382 else if (VECTORP (tem))
8383 {
8384 if (ASIZE (tem) != 4)
8385 return 0;
8386 for (i = 0; i < 4; ++i)
8387 if (!INTEGERP (XVECTOR (tem)->contents[i]))
8388 return 0;
8389 }
8390 else
8391 return 0;
8392
8393 return 1;
8394 }
8395
8396
8397 /* Load Ghostscript image IMG for use on frame F. Value is non-zero
8398 if successful. */
8399
8400 static int
8401 gs_load (struct frame *f, struct image *img)
8402 {
8403 char buffer[100];
8404 Lisp_Object window_and_pixmap_id = Qnil, loader, pt_height, pt_width;
8405 Lisp_Object frame;
8406 double in_width, in_height;
8407 Lisp_Object pixel_colors = Qnil;
8408
8409 /* Compute pixel size of pixmap needed from the given size in the
8410 image specification. Sizes in the specification are in pt. 1 pt
8411 = 1/72 in, xdpi and ydpi are stored in the frame's X display
8412 info. */
8413 pt_width = image_spec_value (img->spec, QCpt_width, NULL);
8414 in_width = INTEGERP (pt_width) ? XFASTINT (pt_width) / 72.0 : 0;
8415 img->width = in_width * FRAME_X_DISPLAY_INFO (f)->resx;
8416 pt_height = image_spec_value (img->spec, QCpt_height, NULL);
8417 in_height = INTEGERP (pt_height) ? XFASTINT (pt_height) / 72.0 : 0;
8418 img->height = in_height * FRAME_X_DISPLAY_INFO (f)->resy;
8419
8420 if (!check_image_size (f, img->width, img->height))
8421 {
8422 image_error ("Invalid image size (see `max-image-size')", Qnil, Qnil);
8423 return 0;
8424 }
8425
8426 /* Create the pixmap. */
8427 xassert (img->pixmap == NO_PIXMAP);
8428
8429 /* Only W32 version did BLOCK_INPUT here. ++kfs */
8430 BLOCK_INPUT;
8431 img->pixmap = XCreatePixmap (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f),
8432 img->width, img->height,
8433 DefaultDepthOfScreen (FRAME_X_SCREEN (f)));
8434 UNBLOCK_INPUT;
8435
8436 if (!img->pixmap)
8437 {
8438 image_error ("Unable to create pixmap for `%s'", img->spec, Qnil);
8439 return 0;
8440 }
8441
8442 /* Call the loader to fill the pixmap. It returns a process object
8443 if successful. We do not record_unwind_protect here because
8444 other places in redisplay like calling window scroll functions
8445 don't either. Let the Lisp loader use `unwind-protect' instead. */
8446 sprintf (buffer, "%lu %lu",
8447 (unsigned long) FRAME_X_WINDOW (f),
8448 (unsigned long) img->pixmap);
8449 window_and_pixmap_id = build_string (buffer);
8450
8451 sprintf (buffer, "%lu %lu",
8452 FRAME_FOREGROUND_PIXEL (f),
8453 FRAME_BACKGROUND_PIXEL (f));
8454 pixel_colors = build_string (buffer);
8455
8456 XSETFRAME (frame, f);
8457 loader = image_spec_value (img->spec, QCloader, NULL);
8458 if (NILP (loader))
8459 loader = intern ("gs-load-image");
8460
8461 img->lisp_data = call6 (loader, frame, img->spec,
8462 make_number (img->width),
8463 make_number (img->height),
8464 window_and_pixmap_id,
8465 pixel_colors);
8466 return PROCESSP (img->lisp_data);
8467 }
8468
8469
8470 /* Kill the Ghostscript process that was started to fill PIXMAP on
8471 frame F. Called from XTread_socket when receiving an event
8472 telling Emacs that Ghostscript has finished drawing. */
8473
8474 void
8475 x_kill_gs_process (Pixmap pixmap, struct frame *f)
8476 {
8477 struct image_cache *c = FRAME_IMAGE_CACHE (f);
8478 int class, i;
8479 struct image *img;
8480
8481 /* Find the image containing PIXMAP. */
8482 for (i = 0; i < c->used; ++i)
8483 if (c->images[i]->pixmap == pixmap)
8484 break;
8485
8486 /* Should someone in between have cleared the image cache, for
8487 instance, give up. */
8488 if (i == c->used)
8489 return;
8490
8491 /* Kill the GS process. We should have found PIXMAP in the image
8492 cache and its image should contain a process object. */
8493 img = c->images[i];
8494 xassert (PROCESSP (img->lisp_data));
8495 Fkill_process (img->lisp_data, Qnil);
8496 img->lisp_data = Qnil;
8497
8498 #if defined (HAVE_X_WINDOWS)
8499
8500 /* On displays with a mutable colormap, figure out the colors
8501 allocated for the image by looking at the pixels of an XImage for
8502 img->pixmap. */
8503 class = FRAME_X_VISUAL (f)->class;
8504 if (class != StaticColor && class != StaticGray && class != TrueColor)
8505 {
8506 XImagePtr ximg;
8507
8508 BLOCK_INPUT;
8509
8510 /* Try to get an XImage for img->pixmep. */
8511 ximg = XGetImage (FRAME_X_DISPLAY (f), img->pixmap,
8512 0, 0, img->width, img->height, ~0, ZPixmap);
8513 if (ximg)
8514 {
8515 int x, y;
8516
8517 /* Initialize the color table. */
8518 init_color_table ();
8519
8520 /* For each pixel of the image, look its color up in the
8521 color table. After having done so, the color table will
8522 contain an entry for each color used by the image. */
8523 for (y = 0; y < img->height; ++y)
8524 for (x = 0; x < img->width; ++x)
8525 {
8526 unsigned long pixel = XGetPixel (ximg, x, y);
8527 lookup_pixel_color (f, pixel);
8528 }
8529
8530 /* Record colors in the image. Free color table and XImage. */
8531 #ifdef COLOR_TABLE_SUPPORT
8532 img->colors = colors_in_color_table (&img->ncolors);
8533 free_color_table ();
8534 #endif
8535 XDestroyImage (ximg);
8536
8537 #if 0 /* This doesn't seem to be the case. If we free the colors
8538 here, we get a BadAccess later in x_clear_image when
8539 freeing the colors. */
8540 /* We have allocated colors once, but Ghostscript has also
8541 allocated colors on behalf of us. So, to get the
8542 reference counts right, free them once. */
8543 if (img->ncolors)
8544 x_free_colors (f, img->colors, img->ncolors);
8545 #endif
8546 }
8547 else
8548 image_error ("Cannot get X image of `%s'; colors will not be freed",
8549 img->spec, Qnil);
8550
8551 UNBLOCK_INPUT;
8552 }
8553 #endif /* HAVE_X_WINDOWS */
8554
8555 /* Now that we have the pixmap, compute mask and transform the
8556 image if requested. */
8557 BLOCK_INPUT;
8558 postprocess_image (f, img);
8559 UNBLOCK_INPUT;
8560 }
8561
8562 #endif /* HAVE_GHOSTSCRIPT */
8563
8564 \f
8565 /***********************************************************************
8566 Tests
8567 ***********************************************************************/
8568
8569 #if GLYPH_DEBUG
8570
8571 DEFUN ("imagep", Fimagep, Simagep, 1, 1, 0,
8572 doc: /* Value is non-nil if SPEC is a valid image specification. */)
8573 (Lisp_Object spec)
8574 {
8575 return valid_image_p (spec) ? Qt : Qnil;
8576 }
8577
8578
8579 DEFUN ("lookup-image", Flookup_image, Slookup_image, 1, 1, 0, "")
8580 (Lisp_Object spec)
8581 {
8582 int id = -1;
8583
8584 if (valid_image_p (spec))
8585 id = lookup_image (SELECTED_FRAME (), spec);
8586
8587 debug_print (spec);
8588 return make_number (id);
8589 }
8590
8591 #endif /* GLYPH_DEBUG != 0 */
8592
8593
8594 /***********************************************************************
8595 Initialization
8596 ***********************************************************************/
8597
8598 #ifdef HAVE_NTGUI
8599 /* Image types that rely on external libraries are loaded dynamically
8600 if the library is available. */
8601 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8602 define_image_type (image_type, init_lib_fn (libraries))
8603 #else
8604 #define CHECK_LIB_AVAILABLE(image_type, init_lib_fn, libraries) \
8605 define_image_type (image_type, 1)
8606 #endif /* HAVE_NTGUI */
8607
8608 DEFUN ("init-image-library", Finit_image_library, Sinit_image_library, 2, 2, 0,
8609 doc: /* Initialize image library implementing image type TYPE.
8610 Return non-nil if TYPE is a supported image type.
8611
8612 Image types pbm and xbm are prebuilt; other types are loaded here.
8613 Libraries to load are specified in alist LIBRARIES (usually, the value
8614 of `dynamic-library-alist', which see). */)
8615 (Lisp_Object type, Lisp_Object libraries)
8616 {
8617 #ifdef HAVE_NTGUI
8618 /* Don't try to reload the library. */
8619 Lisp_Object tested = Fassq (type, Vlibrary_cache);
8620 if (CONSP (tested))
8621 return XCDR (tested);
8622 #endif
8623
8624 /* Types pbm and xbm are built-in and always available. */
8625 if (EQ (type, Qpbm) || EQ (type, Qxbm))
8626 return Qt;
8627
8628 #if defined (HAVE_XPM) || defined (HAVE_NS)
8629 if (EQ (type, Qxpm))
8630 return CHECK_LIB_AVAILABLE (&xpm_type, init_xpm_functions, libraries);
8631 #endif
8632
8633 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8634 if (EQ (type, Qjpeg))
8635 return CHECK_LIB_AVAILABLE (&jpeg_type, init_jpeg_functions, libraries);
8636 #endif
8637
8638 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8639 if (EQ (type, Qtiff))
8640 return CHECK_LIB_AVAILABLE (&tiff_type, init_tiff_functions, libraries);
8641 #endif
8642
8643 #if defined (HAVE_GIF) || defined (HAVE_NS)
8644 if (EQ (type, Qgif))
8645 return CHECK_LIB_AVAILABLE (&gif_type, init_gif_functions, libraries);
8646 #endif
8647
8648 #if defined (HAVE_PNG) || defined (HAVE_NS)
8649 if (EQ (type, Qpng))
8650 return CHECK_LIB_AVAILABLE (&png_type, init_png_functions, libraries);
8651 #endif
8652
8653 #if defined (HAVE_RSVG)
8654 if (EQ (type, Qsvg))
8655 return CHECK_LIB_AVAILABLE (&svg_type, init_svg_functions, libraries);
8656 #endif
8657
8658 #if defined (HAVE_IMAGEMAGICK)
8659 if (EQ (type, Qimagemagick))
8660 return CHECK_LIB_AVAILABLE (&imagemagick_type, init_imagemagick_functions,
8661 libraries);
8662 #endif
8663
8664 #ifdef HAVE_GHOSTSCRIPT
8665 if (EQ (type, Qpostscript))
8666 return CHECK_LIB_AVAILABLE (&gs_type, init_gs_functions, libraries);
8667 #endif
8668
8669 /* If the type is not recognized, avoid testing it ever again. */
8670 CACHE_IMAGE_TYPE (type, Qnil);
8671 return Qnil;
8672 }
8673
8674 void
8675 syms_of_image (void)
8676 {
8677 /* Initialize this only once, since that's what we do with Vimage_types
8678 and they are supposed to be in sync. Initializing here gives correct
8679 operation on GNU/Linux of calling dump-emacs after loading some images. */
8680 image_types = NULL;
8681
8682 /* Must be defined now becase we're going to update it below, while
8683 defining the supported image types. */
8684 DEFVAR_LISP ("image-types", Vimage_types,
8685 doc: /* List of potentially supported image types.
8686 Each element of the list is a symbol for an image type, like 'jpeg or 'png.
8687 To check whether it is really supported, use `image-type-available-p'. */);
8688 Vimage_types = Qnil;
8689
8690 DEFVAR_LISP ("max-image-size", Vmax_image_size,
8691 doc: /* Maximum size of images.
8692 Emacs will not load an image into memory if its pixel width or
8693 pixel height exceeds this limit.
8694
8695 If the value is an integer, it directly specifies the maximum
8696 image height and width, measured in pixels. If it is a floating
8697 point number, it specifies the maximum image height and width
8698 as a ratio to the frame height and width. If the value is
8699 non-numeric, there is no explicit limit on the size of images. */);
8700 Vmax_image_size = make_float (MAX_IMAGE_SIZE);
8701
8702 DEFSYM (Qpbm, "pbm");
8703 ADD_IMAGE_TYPE (Qpbm);
8704
8705 DEFSYM (Qxbm, "xbm");
8706 ADD_IMAGE_TYPE (Qxbm);
8707
8708 define_image_type (&xbm_type, 1);
8709 define_image_type (&pbm_type, 1);
8710
8711 DEFSYM (Qcount, "count");
8712 DEFSYM (Qextension_data, "extension-data");
8713 DEFSYM (Qdelay, "delay");
8714
8715 DEFSYM (QCascent, ":ascent");
8716 DEFSYM (QCmargin, ":margin");
8717 DEFSYM (QCrelief, ":relief");
8718 DEFSYM (QCconversion, ":conversion");
8719 DEFSYM (QCcolor_symbols, ":color-symbols");
8720 DEFSYM (QCheuristic_mask, ":heuristic-mask");
8721 DEFSYM (QCindex, ":index");
8722 DEFSYM (QCgeometry, ":geometry");
8723 DEFSYM (QCcrop, ":crop");
8724 DEFSYM (QCrotation, ":rotation");
8725 DEFSYM (QCmatrix, ":matrix");
8726 DEFSYM (QCcolor_adjustment, ":color-adjustment");
8727 DEFSYM (QCmask, ":mask");
8728
8729 DEFSYM (Qlaplace, "laplace");
8730 DEFSYM (Qemboss, "emboss");
8731 DEFSYM (Qedge_detection, "edge-detection");
8732 DEFSYM (Qheuristic, "heuristic");
8733
8734 DEFSYM (Qpostscript, "postscript");
8735 #ifdef HAVE_GHOSTSCRIPT
8736 ADD_IMAGE_TYPE (Qpostscript);
8737 DEFSYM (QCloader, ":loader");
8738 DEFSYM (QCbounding_box, ":bounding-box");
8739 DEFSYM (QCpt_width, ":pt-width");
8740 DEFSYM (QCpt_height, ":pt-height");
8741 #endif /* HAVE_GHOSTSCRIPT */
8742
8743 #ifdef HAVE_NTGUI
8744 DEFSYM (Qlibpng_version, "libpng-version");
8745 Fset (Qlibpng_version,
8746 #if HAVE_PNG
8747 make_number (PNG_LIBPNG_VER)
8748 #else
8749 make_number (-1)
8750 #endif
8751 );
8752 #endif
8753
8754 #if defined (HAVE_XPM) || defined (HAVE_NS)
8755 DEFSYM (Qxpm, "xpm");
8756 ADD_IMAGE_TYPE (Qxpm);
8757 #endif
8758
8759 #if defined (HAVE_JPEG) || defined (HAVE_NS)
8760 DEFSYM (Qjpeg, "jpeg");
8761 ADD_IMAGE_TYPE (Qjpeg);
8762 #endif
8763
8764 #if defined (HAVE_TIFF) || defined (HAVE_NS)
8765 DEFSYM (Qtiff, "tiff");
8766 ADD_IMAGE_TYPE (Qtiff);
8767 #endif
8768
8769 #if defined (HAVE_GIF) || defined (HAVE_NS)
8770 DEFSYM (Qgif, "gif");
8771 ADD_IMAGE_TYPE (Qgif);
8772 #endif
8773
8774 #if defined (HAVE_PNG) || defined (HAVE_NS)
8775 DEFSYM (Qpng, "png");
8776 ADD_IMAGE_TYPE (Qpng);
8777 #endif
8778
8779 #if defined (HAVE_IMAGEMAGICK)
8780 DEFSYM (Qimagemagick, "imagemagick");
8781 ADD_IMAGE_TYPE (Qimagemagick);
8782 #endif
8783
8784 #if defined (HAVE_RSVG)
8785 DEFSYM (Qsvg, "svg");
8786 ADD_IMAGE_TYPE (Qsvg);
8787 #ifdef HAVE_NTGUI
8788 /* Other libraries used directly by svg code. */
8789 DEFSYM (Qgdk_pixbuf, "gdk-pixbuf");
8790 DEFSYM (Qglib, "glib");
8791 DEFSYM (Qgobject, "gobject");
8792 #endif /* HAVE_NTGUI */
8793 #endif /* HAVE_RSVG */
8794
8795 defsubr (&Sinit_image_library);
8796 #ifdef HAVE_IMAGEMAGICK
8797 defsubr (&Simagemagick_types);
8798 #endif
8799 defsubr (&Sclear_image_cache);
8800 defsubr (&Simage_flush);
8801 defsubr (&Simage_size);
8802 defsubr (&Simage_mask_p);
8803 defsubr (&Simage_metadata);
8804
8805 #if GLYPH_DEBUG
8806 defsubr (&Simagep);
8807 defsubr (&Slookup_image);
8808 #endif
8809
8810 DEFVAR_BOOL ("cross-disabled-images", cross_disabled_images,
8811 doc: /* Non-nil means always draw a cross over disabled images.
8812 Disabled images are those having a `:conversion disabled' property.
8813 A cross is always drawn on black & white displays. */);
8814 cross_disabled_images = 0;
8815
8816 DEFVAR_LISP ("x-bitmap-file-path", Vx_bitmap_file_path,
8817 doc: /* List of directories to search for window system bitmap files. */);
8818 Vx_bitmap_file_path = decode_env_path ((char *) 0, PATH_BITMAPS);
8819
8820 DEFVAR_LISP ("image-cache-eviction-delay", Vimage_cache_eviction_delay,
8821 doc: /* Maximum time after which images are removed from the cache.
8822 When an image has not been displayed this many seconds, Emacs
8823 automatically removes it from the image cache. If the cache contains
8824 a large number of images, the actual eviction time may be shorter.
8825 The value can also be nil, meaning the cache is never cleared.
8826
8827 The function `clear-image-cache' disregards this variable. */);
8828 Vimage_cache_eviction_delay = make_number (300);
8829 #ifdef HAVE_IMAGEMAGICK
8830 DEFVAR_LISP ("imagemagick-render-type", Vimagemagick_render_type,
8831 doc: /* Choose between ImageMagick render methods. */);
8832 #endif
8833
8834 }
8835
8836 void
8837 init_image (void)
8838 {
8839 }