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

  1. /* pbmtox10bm.c - read a portable bitmap and produce an X10 bitmap file
  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. #ifdef    SYSV
  15. #include <string.h>
  16. #define index strchr
  17. #else    SYSV
  18. #include <strings.h>
  19. #endif    SYSV
  20. #include "pbm.h"
  21.  
  22. main( argc, argv )
  23. int argc;
  24. char *argv[];
  25.     {
  26.     FILE *ifd;
  27.     register bit *bitrow, *bP;
  28.     int rows, cols, format, padright, row, col;
  29.     char name[100], *cp;
  30.  
  31.     pm_progname = argv[0];
  32.  
  33.     if ( argc > 2 )
  34.     pm_usage( "[pbmfile]" );
  35.  
  36.     if ( argc == 2 )
  37.     {
  38.     ifd = pm_openr( argv[1] );
  39.     strcpy( name, argv[1] );
  40.     if ( strcmp( name, "-" ) == 0 )
  41.         strcpy( name, "noname" );
  42.  
  43.     if ( ( cp = index( name, '.' ) ) != 0 )
  44.         *cp = '\0';
  45.     }
  46.     else
  47.     {
  48.     ifd = stdin;
  49.     strcpy( name, "noname" );
  50.     }
  51.  
  52.     pbm_readpbminit( ifd, &cols, &rows, &format );
  53.     bitrow = pbm_allocrow( cols );
  54.  
  55.     /* Compute padding to round cols up to the nearest multiple of 16. */
  56.     padright = ( ( cols + 15 ) / 16 ) * 16 - cols;
  57.  
  58.     printf( "#define %s_width %d\n", name, cols );
  59.     printf( "#define %s_height %d\n", name, rows );
  60.     printf( "static short %s_bits[] = {\n", name );
  61.  
  62.     putinit( );
  63.     for ( row = 0; row < rows; row++ )
  64.     {
  65.     pbm_readpbmrow( ifd, bitrow, cols, format );
  66.         for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  67.         putbit( *bP );
  68.     for ( col = 0; col < padright; col++ )
  69.         putbit( 0 );
  70.         }
  71.  
  72.     pm_close( ifd );
  73.     
  74.     putrest( );
  75.  
  76.     exit( 0 );
  77.     }
  78.  
  79.  
  80. int item, bitsperitem, bitshift, itemsperline, firstitem;
  81.  
  82. putinit( )
  83.     {
  84.     itemsperline = 0;
  85.     bitsperitem = 0;
  86.     item = 0;
  87.     bitshift = 0;
  88.     firstitem = 1;
  89.     }
  90.  
  91. putbit( b )
  92. bit b;
  93.     {
  94.     if ( bitsperitem == 16 )
  95.     putitem( );
  96.     bitsperitem++;
  97.     if ( b == PBM_BLACK )
  98.     item += 1 << bitshift;
  99.     bitshift++;
  100.     }
  101.  
  102. putrest( )
  103.     {
  104.     if ( bitsperitem > 0 )
  105.     putitem( );
  106.     printf( "};\n" );
  107.     }
  108.  
  109. putitem( )
  110.     {
  111.     if ( firstitem )
  112.     firstitem = 0;
  113.     else
  114.     printf( "," );
  115.     if ( itemsperline == 11 )
  116.     {
  117.     putchar( '\n' );
  118.     itemsperline = 0;
  119.     }
  120.     if ( itemsperline == 0 )
  121.     printf( " " );
  122.     itemsperline++;
  123.     printf( "0x%04x", item );
  124.     bitsperitem = 0;
  125.     item = 0;
  126.     bitshift = 0;
  127.     }
  128.