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