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

  1. /* mtvtoppm.c - read an MTV ray-tracer output file and produce 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 rows, cols, row, col;
  23.     pixval maxval;
  24.     unsigned char buf[3];
  25.  
  26.     pm_progname = argv[0];
  27.  
  28.     if ( argc > 2 )
  29.     pm_usage( "[mtvfile]" );
  30.  
  31.     if ( argc == 2 )
  32.     ifd = pm_openr( argv[1] );
  33.     else
  34.     ifd = stdin;
  35.  
  36.     /* Read in the MTV file.  First the header. */
  37.     if ( fscanf( ifd, "%d%d\n", &cols, &rows ) != 2 )
  38.     pm_error( "unable to read MTV file header", 0,0,0,0,0 );
  39.  
  40.     if ( cols <= 0 || rows <= 0 )
  41.     pm_error( "invalid size: %d %d", cols, rows, 0,0,0 );
  42.     maxval = 255;
  43.  
  44.     ppm_writeppminit( stdout, cols, rows, maxval );
  45.     pixelrow = ppm_allocrow( cols );
  46.  
  47.     for ( row = 0; row < rows; row++ )
  48.     {
  49.     for ( col = 0, pP = pixelrow; col < cols; col++, pP++ )
  50.         {
  51.         if ( fread( buf, sizeof(buf), 1, ifd ) != 1 )
  52.         pm_error( "premature EOF", 0,0,0,0,0 );
  53.         PPM_ASSIGN( *pP, buf[0], buf[1], buf[2] );
  54.         }
  55.     ppm_writeppmrow( stdout, pixelrow, cols, maxval );
  56.     }
  57.  
  58.     pm_close( ifd );
  59.  
  60.     exit( 0 );
  61.     }
  62.