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