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