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

  1. /* rasttopbm.c - read a Sun raster file and produce 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. /* This program compiles only on Suns. */
  17. #include <pixrect/pixrect_hs.h>
  18.  
  19. main( argc, argv )
  20. int argc;
  21. char *argv[];
  22.     {
  23.     FILE *ifd;
  24.     struct rasterfile header;
  25.     struct pixrect *pr, *pr_load_image();
  26.     register bit *bitrow, *bP;
  27.     int rows, cols, row, col, shortcount, mask;
  28.     int linesize;
  29.     short *data;
  30.  
  31.     pm_progname = argv[0];
  32.  
  33.     if ( argc > 2 )
  34.     pm_usage( "[rastfile]" );
  35.  
  36.     if ( argc == 2 )
  37.     ifd = pm_openr( argv[1] );
  38.     else
  39.     ifd = stdin;
  40.  
  41.     /* Read in the raster file.  First the header. */
  42.     if ( pr_load_header( ifd, &header ) != 0 )
  43.     pm_error( "unable to read in raster file header", 0,0,0,0,0 );
  44.  
  45.     /* PBM can only handle monochrome bitmaps. */
  46.     if ( header.ras_depth != 1 )
  47.     pm_error(
  48.         "invalid depth %d - PBM can only handle depth 1",
  49.         header.ras_depth, 0,0,0,0 );
  50.  
  51.     cols = header.ras_width;
  52.     rows = header.ras_height;
  53.     if ( cols <= 0 )
  54.     pm_error( "invalid cols: %d", cols, 0,0,0,0 );
  55.     if ( rows <= 0 )
  56.     pm_error( "invalid rows: %d", rows, 0,0,0,0 );
  57.  
  58.     /* If there is a color map (there shouldn't be), skip over it. */
  59.     if ( header.ras_maptype != RMT_NONE || header.ras_maplength != 0 )
  60.     {
  61.     if (pr_load_colormap(ifd, &header, NULL) != 0)
  62.         pm_error( "unable to skip colormap data", 0,0,0,0,0 );
  63.     }
  64.  
  65.     /* Now load the data.  The pixrect returned is a memory pixrect. */
  66.     if ( (pr = pr_load_image(ifd, &header, NULL)) == NULL )
  67.     pm_error(
  68.         "unable to read in the image from the raster file", 0,0,0,0,0 );
  69.  
  70. #ifdef sun386
  71.     /* Force a flip to 680x0 format. */
  72.     pr_flip( pr );
  73.     ( (struct mpr_data *) pr->pr_data )->md_flags &= ! MP_I386;
  74.     pr_flip( pr );
  75. #endif
  76.  
  77.     linesize = ( (struct mpr_data *) pr->pr_data )->md_linebytes;
  78.     data = ( (struct mpr_data *) pr->pr_data )->md_image;
  79.  
  80.     pm_close( ifd );
  81.  
  82.     /* Now write out the PBM. */
  83.     pbm_writepbminit( stdout, cols, rows );
  84.     bitrow = pbm_allocrow( cols );
  85.  
  86.     for ( row = 0; row < rows; row++ )
  87.     {
  88.     shortcount = 0;
  89.     mask = 0x8000;
  90.     for ( col = 0, bP = bitrow; col < cols; col++, bP++ )
  91.         {
  92.         if ( mask == 0 )
  93.         {
  94.         shortcount++;
  95.         mask = 0x8000;
  96.         }
  97.         *bP = ( *(data + shortcount) & mask ) ? PBM_BLACK : PBM_WHITE;
  98.         mask = mask >> 1;
  99.         }
  100.     data += linesize / sizeof(short);
  101.     pbm_writepbmrow( stdout, bitrow, cols );
  102.     }
  103.  
  104.     exit( 0 );
  105.     }
  106.