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