55 bool LeerImagenPPM (
const char nombre[],
int& filas,
int& columnas,
unsigned char buffer[]);
68 bool EscribirImagenPPM (
const char nombre[],
const unsigned char datos[],
int f,
int c);
82 bool LeerImagenPGM (
const char nombre[],
int& filas,
int& columnas,
unsigned char buffer[]);
95 bool EscribirImagenPGM (
const char nombre[],
const unsigned char datos[],
int f,
int c);
bool EscribirImagenPPM(const char nombre[], const unsigned char datos[], int f, int c)
Escribe una imagen de tipo PPM.
bool LeerImagenPPM(const char nombre[], int &filas, int &columnas, unsigned char buffer[])
Lee una imagen de tipo PPM sobre memoria reservada.
TipoImagen LeerTipoImagen(const char nombre[], int &filas, int &columnas)
Consulta el tipo de imagen del archivo y sus dimensiones.
bool LeerImagenPGM(const char nombre[], int &filas, int &columnas, unsigned char buffer[])
Lee una imagen de tipo PGM sobre memoria reservada.
TipoImagen
Tipo de imagen.
@ IMG_PPM
Imagen tipo PPM.
@ IMG_DESCONOCIDO
Tipo de imagen desconocido.
@ IMG_PGM
Imagen tipo PGM.
bool EscribirImagenPGM(const char nombre[], const unsigned char datos[], int f, int c)
Escribe una imagen de tipo PGM.