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