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

  1. /* brushtopbm.c - read a doodle brush file 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.     register bit *bitrow, *bP;
  22.     bit getbit();
  23.     int rows, cols, padright, row, col;
  24.  
  25.     pm_progname = argv[0];
  26.  
  27.     if ( argc > 2 )
  28.     pm_usage( "[brushfile]" );
  29.  
  30.     if ( argc == 2 )
  31.     ifd = pm_openr( argv[1] );
  32.     else
  33.     ifd = stdin;
  34.  
  35.     getinit( ifd, &cols, &rows );
  36.  
  37.     pbm_writepbminit( stdout, cols, rows );
  38.     bitrow = pbm_allocrow( cols );
  39.  
  40.     /* Compute padding to round cols up to the next multiple of 16. */
  41.     padright = ( ( cols + 15 ) / 16 ) * 16 - cols;
  42.  
  43.     for ( row = 0; row < rows; row++ )
  44.     {
  45.     /* Get data. */
  46.         for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  47.         *bP = getbit( ifd );
  48.     /* Discard line padding. */
  49.         for ( col = 0; col < padright; col++ )
  50.         (void) getbit( ifd );
  51.     /* Write row. */
  52.     pbm_writepbmrow( stdout, bitrow, cols );
  53.     }
  54.  
  55.     pm_close( ifd );
  56.     
  57.     exit( 0 );
  58.     }
  59.  
  60.  
  61. int item, bitsperitem, bitshift;
  62.  
  63. getinit( file, colp, rowp )
  64. FILE *file;
  65. int *colp, *rowp;
  66.     {
  67.     int i;
  68.  
  69.     if ( getc( file ) != 1 )
  70.     pm_error( "bad magic number 1", 0,0,0,0,0 );
  71.     if ( getc( file ) != 0 )
  72.     pm_error( "bad magic number 2", 0,0,0,0,0 );
  73.     *colp = getc( file ) << 8;
  74.     *colp += getc( file );
  75.     *rowp = getc( file ) << 8;
  76.     *rowp += getc( file );
  77.     bitsperitem = 8;
  78.  
  79.     /* Junk rest of header. */
  80.     for ( i = 0; i < 10; i++ )  /* 10 is just a guess at the header size */
  81.     (void) getc( file );
  82.     }
  83.  
  84. bit
  85. getbit( file )
  86. FILE *file;
  87.     {
  88.     bit b;
  89.  
  90.     if ( bitsperitem == 8 )
  91.     {
  92.     item = getc( file );
  93.     bitsperitem = 0;
  94.     bitshift = 7;
  95.     }
  96.     bitsperitem++;
  97.     b = ( ( item >> bitshift) & 1 ) ? PBM_WHITE : PBM_BLACK;
  98.     bitshift--;
  99.     return b;
  100.     }
  101.