Commit | Line | Data |
---|---|---|
02d1d628 AMH |
1 | #include "image.h" |
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", | |
21 | #endif | |
22 | "raw", | |
23 | "pnm", | |
24 | NULL}; | |
25 |