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

  1. /* pbmtocmuwm.c - read a portable bitmap and produce a CMU window manager bitmap
  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 "pbm.h"
  15. #include "cmuwm.h"
  16.  
  17. main( argc, argv )
  18. int argc;
  19. char *argv[];
  20.     {
  21.     FILE *ifd;
  22.     register bit *bitrow, *bP;
  23.     int rows, cols, format, padright, row, col;
  24.  
  25.     pm_progname = argv[0];
  26.  
  27.     if ( argc > 2 )
  28.     pm_usage( "[pbmfile]" );
  29.  
  30.     if ( argc == 2 )
  31.     ifd = pm_openr( argv[1] );
  32.     else
  33.     ifd = stdin;
  34.  
  35.     pbm_readpbminit( ifd, &cols, &rows, &format );
  36.     bitrow = pbm_allocrow( cols );
  37.     
  38.     /* Round cols up to the nearest multiple of 8. */
  39.     padright = ( ( cols + 7 ) / 8 ) * 8 - cols;
  40.  
  41.     putinit( rows, cols );
  42.     for ( row = 0; row < rows; row++ )
  43.     {
  44.     pbm_readpbmrow( ifd, bitrow, cols, format );
  45.         for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  46.         putbit( *bP );
  47.     for ( col = 0; col < padright; col++ )
  48.         putbit( 0 );
  49.         }
  50.  
  51.     pm_close( ifd );
  52.  
  53.     putrest( );
  54.  
  55.     exit( 0 );
  56.     }
  57.  
  58.  
  59. unsigned char item;
  60. int bitsperitem, bitshift;
  61.  
  62. putinit( rows, cols )
  63. int rows, cols;
  64.     {
  65.     put_big_long( stdout, CMUWM_MAGIC );
  66.     put_big_long( stdout, cols );
  67.     put_big_long( stdout, rows );
  68.     put_big_short( stdout, 1 );
  69.  
  70.     item = 0;
  71.     bitsperitem = 0;
  72.     bitshift = 7;
  73.     }
  74.  
  75. putbit( b )
  76. bit b;
  77.     {
  78.     if ( bitsperitem == 8 )
  79.     putitem( );
  80.     if ( b == PBM_WHITE )
  81.     item += 1 << bitshift;
  82.     bitsperitem++;
  83.     bitshift--;
  84.     }
  85.  
  86. putrest( )
  87.     {
  88.     if ( bitsperitem > 0 )
  89.     putitem( );
  90.     }
  91.  
  92. putitem( )
  93.     {
  94.     put_byte( stdout, item );
  95.     item = 0;
  96.     bitsperitem = 0;
  97.     bitshift = 7;
  98.     }
  99.  
  100.  
  101. put_byte( f, b )
  102. FILE *f;
  103. unsigned char b;
  104.     {
  105.     if ( putc( b, f ) == EOF )
  106.     {
  107.     perror( "put_byte" );
  108.     exit( 1 );
  109.     }
  110.     }
  111.  
  112. put_big_short( f, s )
  113. FILE *f;
  114. short s;
  115.     {
  116.     put_byte( f, s >> 8 );
  117.     put_byte( f, s & 0xff );
  118.     }
  119.  
  120. put_big_long( f, l )
  121. FILE *f;
  122. long l;
  123.     {
  124.     put_byte( f, l >> 24 );
  125.     put_byte( f, ( l >> 16 ) & 0xff );
  126.     put_byte( f, ( l >> 8 ) & 0xff );
  127.     put_byte( f, l & 0xff );
  128.     }
  129.