home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume2 / pbm / Part1 / cbmtopbm.c next >
C/C++ Source or Header  |  1991-08-07  |  2KB  |  99 lines

  1. /* cbmtopbm.c - read a compact bitmap and write a portable bitmap
  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.     bit **bits, getbit();
  22.     int rows, cols, row, col;
  23.  
  24.     if ( argc > 2 )
  25.     {
  26.     fprintf( stderr, "usage:  %s [cbmfile]\n", argv[0] );
  27.     exit( 1 );
  28.     }
  29.  
  30.     if ( argc == 2 )
  31.     {
  32.         ifd = fopen( argv[1], "r" );
  33.         if ( ifd == NULL )
  34.         {
  35.         fprintf( stderr, "%s: can't open.\n", argv[1] );
  36.         exit( 1 );
  37.         }
  38.     }
  39.     else
  40.     ifd = stdin;
  41.  
  42.     getinit( ifd, &cols, &rows );
  43.  
  44.     bits = pbm_allocarray( cols, rows );
  45.  
  46.     for ( row = 0; row < rows; row++ )
  47.         for ( col = 0; col < cols; col++ )
  48.         bits[row][col] = getbit( ifd );
  49.  
  50.     if ( ifd != stdin )
  51.     fclose( ifd );
  52.     
  53.     pbm_writepbm( stdout, bits, cols, rows );
  54.  
  55.     exit( 0 );
  56.     }
  57.  
  58.  
  59. int item, bitsperitem, bitshift;
  60.  
  61. getinit( file, colp, rowp )
  62. FILE *file;
  63. int *colp, *rowp;
  64.     {
  65.     if ( getc( file ) != 42 )
  66.     {
  67.     fprintf( stderr, "Bad magic number 1.\n" );
  68.     exit( 1 );
  69.     }
  70.     if ( getc( file ) != 23 )
  71.     {
  72.     fprintf( stderr, "Bad magic number 2.\n" );
  73.     exit( 1 );
  74.     }
  75.     *colp = getc( file ) << 8;
  76.     *colp += getc( file );
  77.     *rowp = getc( file ) << 8;
  78.     *rowp += getc( file );
  79.     bitsperitem = 8;
  80.     }
  81.  
  82. bit
  83. getbit( file )
  84. FILE *file;
  85.     {
  86.     bit b;
  87.  
  88.     if ( bitsperitem == 8 )
  89.     {
  90.     item = getc( file );
  91.     bitsperitem = 0;
  92.     bitshift = 7;
  93.     }
  94.     bitsperitem++;
  95.     b = ( item >> bitshift) & 1;
  96.     bitshift--;
  97.     return ( b );
  98.     }
  99.