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

  1. /* pbmtoascii.c - read a portable bitmap and produce ASCII graphics
  2. **
  3. ** Copyright (C) 1988 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 "pbm.h"
  15.  
  16. main( argc, argv )
  17. int argc;
  18. char *argv[];
  19.     {
  20.     FILE *ifd;
  21.     register bit **bits, *bP, *b1P;
  22.     int rows, cols, row, col, lastcol;
  23.  
  24.     pm_progname = argv[0];
  25.  
  26.     if ( argc > 2 )
  27.     pm_usage( "[pbmfile]" );
  28.  
  29.     if ( argc == 2 )
  30.     ifd = pm_openr( argv[1] );
  31.     else
  32.     ifd = stdin;
  33.  
  34.     bits = pbm_readpbm( ifd, &cols, &rows );
  35.  
  36.     pm_close( ifd );
  37.     
  38.     /* Write out rows by twos. */
  39.     for ( row = 0; row < rows; row += 2 )
  40.     {
  41.     /* Find end of lines. */
  42.     for ( lastcol = cols-1; lastcol > 0; lastcol-- )
  43.         {
  44.         if ( bits[row][lastcol] == PBM_BLACK )
  45.         break;
  46.         if ( row+1 < rows && bits[row+1][lastcol] == PBM_BLACK )
  47.         break;
  48.         }
  49.         for ( col = 0, bP = bits[row], b1P = bits[row+1]; col <= lastcol; col++, bP++, b1P++ )
  50.         {
  51.         if ( *bP == PBM_WHITE )
  52.         {
  53.         if ( row+1 >= rows || *b1P == PBM_WHITE )
  54.             putchar( ' ' );
  55.         else
  56.             putchar( 'o' );
  57.         }
  58.         else
  59.         {
  60.         if ( row+1 >= rows || *b1P == PBM_WHITE )
  61.             putchar( '"' );
  62.         else
  63.             putchar( '$' );
  64.         }
  65.         }
  66.     putchar( '\n' );
  67.         }
  68.  
  69.     exit( 0 );
  70.     }
  71.