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