Commit | Line | Data |
---|---|---|
1 | #include "imager.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 | #ifdef HAVE_WIN32 | |
23 | "w32", | |
24 | #endif | |
25 | #ifdef HAVE_FT2 | |
26 | "ft2", | |
27 | #endif | |
28 | "raw", | |
29 | "pnm", | |
30 | "bmp", | |
31 | "tga", | |
32 | "ifs", | |
33 | NULL}; | |
34 |