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

  1. /* pbmtoptx.c - read a portable bitmap and produce a Printronix printer 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. #else    SYSV
  17. #include <strings.h>
  18. #endif    SYSV
  19. #include "pbm.h"
  20.  
  21. main( argc, argv )
  22. int argc;
  23. char *argv[];
  24.     {
  25.     FILE *ifd;
  26.     register bit *bitrow, *bP;
  27.     int rows, cols, format, row, col;
  28.     char *usage = "[pbmfile]";
  29.  
  30.     pm_progname = argv[0];
  31.  
  32.     if ( argc > 2 )
  33.     pm_usage( usage );
  34.  
  35.     if ( argc == 2 )
  36.     ifd = pm_openr( argv[1] );
  37.     else
  38.     ifd = stdin;
  39.  
  40.     pbm_readpbminit( ifd, &cols, &rows, &format );
  41.     bitrow = pbm_allocrow( cols );
  42.  
  43.     putinit( );
  44.     for ( row = 0; row < rows; row++ )
  45.     {
  46.     pbm_readpbmrow( ifd, bitrow, cols, format );
  47.         for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  48.         putbit( *bP );
  49.     putrest( );
  50.     putchar( 5 );
  51.     putchar( '\n' );
  52.         }
  53.  
  54.     pm_close( ifd );
  55.     
  56.     exit( 0 );
  57.     }
  58.  
  59.  
  60. char item;
  61. int bitsperitem, bitshift;
  62.  
  63. putinit( )
  64.     {
  65.     bitsperitem = 0;
  66.     item = 64;
  67.     bitshift = 0;
  68.     }
  69.  
  70. putbit( b )
  71. bit b;
  72.     {
  73.     if ( bitsperitem == 6 )
  74.     putitem( );
  75.     if ( b == PBM_BLACK )
  76.     item += 1 << bitshift;
  77.     bitsperitem++;
  78.     bitshift++;
  79.     }
  80.  
  81. putrest( )
  82.     {
  83.     if ( bitsperitem > 0 )
  84.     putitem( );
  85.     }
  86.  
  87. putitem( )
  88.     {
  89.     putchar( item );
  90.     bitsperitem = 0;
  91.     item = 64;
  92.     bitshift = 0;
  93.     }
  94.