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