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