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