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