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