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

  1. /* pnmenlarge.c - read a portable anymap and enlarge it N times
  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.     register xel *xelrow, *newxelrow, *xP;
  22.     int argn, n, rows, cols, format, row, col, subrow, subcol;
  23.     xelval maxval;
  24.     char *usage = "N [pnmfile]";
  25.  
  26.     pm_progname = argv[0];
  27.  
  28.     argn = 1;
  29.  
  30.     if ( argn == argc )
  31.     pm_usage( usage );
  32.     if ( sscanf( argv[argn], "%d", &n ) != 1 )
  33.     pm_usage( usage );
  34.     if ( n < 2 )
  35.     pm_error( "N must be greater than 1", 0,0,0,0,0 );
  36.     argn++;
  37.  
  38.     if ( argn != argc )
  39.     {
  40.     ifd = pm_openr( argv[argn] );
  41.     argn++;
  42.     }
  43.     else
  44.     ifd = stdin;
  45.  
  46.     if ( argn != argc )
  47.     pm_usage( usage );
  48.  
  49.     pnm_readpnminit( ifd, &cols, &rows, &maxval, &format );
  50.     xelrow = pnm_allocrow( cols );
  51.     pnm_writepnminit( stdout, cols * n, rows * n, maxval, format );
  52.     newxelrow = pnm_allocrow( cols * n );
  53.  
  54.     for ( row = 0; row < rows; row++ )
  55.     {
  56.     pnm_readpnmrow( ifd, xelrow, cols, maxval, format );
  57.     for ( subrow = 0; subrow < n; subrow++ )
  58.         {
  59.         for ( col = 0, xP = xelrow; col < cols; col++, xP++ )
  60.         {
  61.         for ( subcol = 0; subcol < n; subcol++ )
  62.             newxelrow[col * n + subcol] = *xP;
  63.         }
  64.         pnm_writepnmrow( stdout, newxelrow, cols * n, maxval, format );
  65.         }
  66.     }
  67.  
  68.     pm_close( ifd );
  69.  
  70.     exit( 0 );
  71.     }
  72.