Commit | Line | Data |
---|---|---|
92bda632 | 1 | #include "imager.h" |
02d1d628 AMH |
2 | |
3 | static char *i_format_list[]={ | |
4 | #ifdef HAVE_LIBJPEG | |
5 | "jpeg", | |
6 | #endif | |
7 | #ifdef HAVE_LIBTIFF | |
8 | "tiff", | |
9 | #endif | |
10 | #ifdef HAVE_LIBPNG | |
11 | "png", | |
12 | #endif | |
13 | #ifdef HAVE_LIBGIF | |
14 | "gif", | |
15 | #endif | |
16 | #ifdef HAVE_LIBT1 | |
17 | "t1", | |
18 | #endif | |
19 | #ifdef HAVE_LIBTT | |
20 | "tt", | |
faa9b3e7 TC |
21 | #endif |
22 | #ifdef HAVE_WIN32 | |
23 | "w32", | |
24 | #endif | |
25 | #ifdef HAVE_FT2 | |
26 | "ft2", | |
02d1d628 AMH |
27 | #endif |
28 | "raw", | |
29 | "pnm", | |
d08b8f85 | 30 | "bmp", |
1ec86afa | 31 | "tga", |
b4d8a00b | 32 | "ifs", |
02d1d628 AMH |
33 | NULL}; |
34 |