/* libppm1.c - ppm utility library part 1 ** ** Copyright (C) 1989 by Jef Poskanzer. ** ** Permission to use, copy, modify, and distribute this software and its ** documentation for any purpose and without fee is hereby granted, provided ** that the above copyright notice appear in all copies and that both that ** copyright notice and this permission notice appear in supporting ** documentation. This software is provided "as is" without express or ** implied warranty. */ /* See libpbm.c for the complicated explanation of this 32/64 bit file offset stuff. */ #define _FILE_OFFSET_BITS 64 #define _LARGE_FILES #include #include #include #include "ppm.h" #include "libppm.h" #include "pgm.h" #include "libpgm.h" #include "pbm.h" #include "libpbm.h" #include "fileio.h" void ppm_init( argcP, argv ) int* argcP; char* argv[]; { pgm_init( argcP, argv ); } void ppm_nextimage(FILE *file, int * const eofP) { pm_nextimage(file, eofP); } void ppm_readppminitrest(FILE * const file, int * const colsP, int * const rowsP, pixval * const maxvalP ) { unsigned int maxval; /* Read size. */ *colsP = (int)pm_getuint( file ); *rowsP = (int)pm_getuint( file ); /* Read maxval. */ maxval = pm_getuint( file ); if ( maxval > PPM_OVERALLMAXVAL ) pm_error("maxval (%d) is too large.\n" "The maximum allowed by the PPM is %d.", maxval, PPM_OVERALLMAXVAL); *maxvalP = maxval; } void ppm_readppminit( file, colsP, rowsP, maxvalP, formatP ) FILE* file; int* colsP; int* rowsP; int* formatP; pixval* maxvalP; { /* Check magic number. */ *formatP = pm_readmagicnumber( file ); switch ( PPM_FORMAT_TYPE(*formatP) ) { case PPM_TYPE: ppm_readppminitrest( file, colsP, rowsP, maxvalP ); break; case PGM_TYPE: pgm_readpgminitrest( file, colsP, rowsP, maxvalP ); break; case PBM_TYPE: pbm_readpbminitrest( file, colsP, rowsP ); *maxvalP = 1; break; default: pm_error( "bad magic number - not a ppm, pgm, or pbm file" ); } } void ppm_readppmrow(FILE* const file, pixel* const pixelrow, int const cols, pixval const maxval, int const format) { int col; pixel* pP; pixval r, g, b; gray* grayrow; gray* gP; bit* bitrow; bit* bP; switch ( format ) { case PPM_FORMAT: for ( col = 0, pP = pixelrow; col < cols; ++col, ++pP ) { r = pm_getuint( file ); #ifdef DEBUG if ( r > maxval ) pm_error( "r value out of bounds (%u > %u)", r, maxval ); #endif /*DEBUG*/ g = pm_getuint( file ); #ifdef DEBUG if ( g > maxval ) pm_error( "g value out of bounds (%u > %u)", g, maxval ); #endif /*DEBUG*/ b = pm_getuint( file ); #ifdef DEBUG if ( b > maxval ) pm_error( "b value out of bounds (%u > %u)", b, maxval ); #endif /*DEBUG*/ PPM_ASSIGN( *pP, r, g, b ); } break; case RPPM_FORMAT: for ( col = 0; col < cols; ++col ) { r = pgm_getrawsample( file, maxval ); #ifdef DEBUG if ( r > maxval ) pm_error( "r value out of bounds (%u > %u)", r, maxval ); #endif /*DEBUG*/ g = pgm_getrawsample( file, maxval ); #ifdef DEBUG if ( g > maxval ) pm_error( "g value out of bounds (%u > %u)", g, maxval ); #endif /*DEBUG*/ b = pgm_getrawsample( file, maxval ); #ifdef DEBUG if ( b > maxval ) pm_error( "b value out of bounds (%u > %u)", b, maxval ); #endif /*DEBUG*/ PPM_ASSIGN( pixelrow[col], r, g, b ); } break; case PGM_FORMAT: case RPGM_FORMAT: grayrow = pgm_allocrow( cols ); pgm_readpgmrow( file, grayrow, cols, maxval, format ); for ( col = 0, gP = grayrow, pP = pixelrow; col < cols; ++col, ++gP, ++pP ) { r = *gP; PPM_ASSIGN( *pP, r, r, r ); } pgm_freerow( grayrow ); break; case PBM_FORMAT: case RPBM_FORMAT: bitrow = pbm_allocrow( cols ); pbm_readpbmrow( file, bitrow, cols, format ); for ( col = 0, bP = bitrow, pP = pixelrow; col < cols; ++col, ++bP, ++pP ) { r = ( *bP == PBM_WHITE ) ? maxval : 0; PPM_ASSIGN( *pP, r, r, r ); } pbm_freerow( bitrow ); break; default: pm_error( "can't happen" ); } } pixel** ppm_readppm( file, colsP, rowsP, maxvalP ) FILE* file; int* colsP; int* rowsP; pixval* maxvalP; { pixel** pixels; int row; int format; ppm_readppminit( file, colsP, rowsP, maxvalP, &format ); pixels = ppm_allocarray( *colsP, *rowsP ); for ( row = 0; row < *rowsP; ++row ) ppm_readppmrow( file, pixels[row], *colsP, *maxvalP, format ); return pixels; } void ppm_check(FILE * file, const enum pm_check_type check_type, const int format, const int cols, const int rows, const int maxval, enum pm_check_code * const retval_p) { if (rows < 0) pm_error("Invalid number of rows passed to ppm_check(): %d", rows); if (cols < 0) pm_error("Invalid number of columns passed to ppm_check(): %d", cols); if (check_type != PM_CHECK_BASIC) { if (retval_p) *retval_p = PM_CHECK_UNKNOWN_TYPE; } else if (PPM_FORMAT_TYPE(format) == PBM_TYPE) { pbm_check(file, check_type, format, cols, rows, retval_p); } else if (PPM_FORMAT_TYPE(format) == PGM_TYPE) { pgm_check(file, check_type, format, cols, rows, maxval, retval_p); } else if (format != RPPM_FORMAT) { if (retval_p) *retval_p = PM_CHECK_UNCHECKABLE; } else { pm_filepos const bytes_per_row = cols * 3 * (maxval > 255 ? 2 : 1); pm_filepos const need_raster_size = rows * bytes_per_row; pm_check(file, check_type, need_raster_size, retval_p); } }