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

  1. /* pbmtoxbm.c - read a portable bitmap and produce an X11 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 8. */
  56.     padright = ( ( cols + 7 ) / 8 ) * 8 - cols;
  57.  
  58.     printf( "#define %s_width %d\n", name, cols );
  59.     printf( "#define %s_height %d\n", name, rows );
  60.     printf( "static char %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.     if ( ifd != stdin )
  73.     fclose( ifd );
  74.  
  75.     putrest( );
  76.  
  77.     exit( 0 );
  78.     }
  79.  
  80.  
  81. int item, bitsperitem, bitshift, itemsperline, firstitem;
  82.  
  83. putinit( )
  84.     {
  85.     itemsperline = 0;
  86.     bitsperitem = 0;
  87.     item = 0;
  88.     bitshift = 0;
  89.     firstitem = 1;
  90.     }
  91.  
  92. putbit( b )
  93. bit b;
  94.     {
  95.     if ( bitsperitem == 8 )
  96.     putitem( );
  97.     bitsperitem++;
  98.     if ( b == PBM_BLACK )
  99.     item += 1 << bitshift;
  100.     bitshift++;
  101.     }
  102.  
  103. putrest( )
  104.     {
  105.     if ( bitsperitem > 0 )
  106.     putitem( );
  107.     printf( "};\n" );
  108.     }
  109.  
  110. putitem( )
  111.     {
  112.     if ( firstitem )
  113.     firstitem = 0;
  114.     else
  115.     printf( "," );
  116.     if ( itemsperline == 15 )
  117.     {
  118.     putchar( '\n' );
  119.     itemsperline = 0;
  120.     }
  121.     if ( itemsperline == 0 )
  122.     printf( " " );
  123.     itemsperline++;
  124.     printf( "0x%02x", item );
  125.     bitsperitem = 0;
  126.     item = 0;
  127.     bitshift = 0;
  128.     }
  129.