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

  1. /* pnminvert.c - read a portable anymap and invert it
  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 "pnm.h"
  15.  
  16. main( argc, argv )
  17. int argc;
  18. char *argv[];
  19.     {
  20.     FILE *ifd;
  21.     xelval maxval;
  22.     register xel *xelrow, *xP;
  23.     int rows, cols, format, row, col;
  24.  
  25.     pm_progname = argv[0];
  26.  
  27.     if ( argc > 2 )
  28.     pm_usage( "[pnmfile]" );
  29.  
  30.     if ( argc == 2 )
  31.     ifd = pm_openr( argv[1] );
  32.     else
  33.     ifd = stdin;
  34.  
  35.     pnm_readpnminit( ifd, &cols, &rows, &maxval, &format );
  36.     pnm_writepnminit( stdout, cols, rows, maxval, format );
  37.     xelrow = pnm_allocrow( cols );
  38.  
  39.     for ( row = 0; row < rows; row++ )
  40.     {
  41.     pnm_readpnmrow( ifd, xelrow, cols, maxval, format );
  42.         for ( col = 0, xP = xelrow; col < cols; col++, xP++ )
  43.         *xP = pnm_invertxel( *xP, maxval, format );
  44.  
  45.     pnm_writepnmrow( stdout, xelrow, cols, maxval, format );
  46.     }
  47.  
  48.     pm_close( ifd );
  49.  
  50.     exit( 0 );
  51.     }
  52.