home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 309.lha / PBM_PLUS / ppm / ppmcscale.c < prev    next >
C/C++ Source or Header  |  1980-12-04  |  2KB  |  71 lines

  1. /* ppmcscale.c - scale the colors in a portable pixmap
  2. **
  3. ** Copyright (C) 1989 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation.  This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12.  
  13. #include <stdio.h>
  14. #include "ppm.h"
  15.  
  16. main( argc, argv )
  17. int argc;
  18. char *argv[];
  19.     {
  20.     FILE *ifd;
  21.     register pixel *pixelrow, *pP;
  22.     int argn, rows, cols, format, row;
  23.     register int col;
  24.     pixval maxval, newmaxval;
  25.     int i;
  26.     char *usage = "newmaxval [ppmfile]";
  27.  
  28.     pm_progname = argv[0];
  29.  
  30.     argn = 1;
  31.  
  32.     if ( argn == argc )
  33.     pm_usage( usage );
  34.     if ( sscanf( argv[argn], "%d", &i ) != 1 )
  35.     pm_usage( usage );
  36.     newmaxval = i;
  37.     argn++;
  38.     if ( newmaxval < 1 )
  39.     pm_error( "newmaxval must be > 1", 0,0,0,0,0 );
  40.  
  41.     if ( argn != argc )
  42.     {
  43.     ifd = pm_openr( argv[argn] );
  44.     argn++;
  45.     }
  46.     else
  47.     ifd = stdin;
  48.  
  49.     if ( argn != argc )
  50.     pm_usage( usage );
  51.  
  52.     ppm_readppminit( ifd, &cols, &rows, &maxval, &format );
  53.     pixelrow = ppm_allocrow( cols );
  54.  
  55.     ppm_writeppminit( stdout, cols, rows, newmaxval );
  56.  
  57.     for ( row = 0; row < rows; row++ )
  58.     {
  59.     ppm_readppmrow( ifd, pixelrow, cols, maxval, format );
  60.  
  61.     for ( col = 0, pP = pixelrow; col < cols; col++, pP++ )
  62.         PPM_CSCALE( *pP, *pP, maxval, newmaxval );
  63.  
  64.     ppm_writeppmrow( stdout, pixelrow, cols, newmaxval );
  65.     }
  66.  
  67.     pm_close( ifd );
  68.  
  69.     exit( 0 );
  70.     }
  71.