Last change
on this file since 32 was
2,
checked in by Sam Hocevar, 17 years ago
|
- imported original 0.7.0 tarball
|
File size:
351 bytes
|
Rev | Line | |
---|
[2] | 1 | #ifndef __PCX_READ_HPP__ |
---|
| 2 | #define __PCX_READ_HPP__ |
---|
| 3 | |
---|
| 4 | #include "image.hpp" |
---|
| 5 | #include "image24.hpp" |
---|
| 6 | #include "palette.hpp" |
---|
| 7 | |
---|
| 8 | enum PCX_type { not_PCX, PCX_8, PCX_24 }; |
---|
| 9 | |
---|
| 10 | PCX_type PCX_file_type(char *filename); |
---|
| 11 | image24 *read_PCX24(char *filename); |
---|
| 12 | image *read_PCX(char *filename, palette *&pal); |
---|
| 13 | void write_PCX(image *im, palette *pal,char *filename); |
---|
| 14 | |
---|
| 15 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.