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