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