home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: OtherApp / OtherApp.zip / wincam.zip / winc_src.zip / pnm.h < prev    next >
Text File  |  1997-02-28  |  1KB  |  31 lines

  1. /*
  2.  *
  3.  * header file for the PNM/PGM output routines
  4.  *
  5.  * Copyright (C) 1996, Paul G. Fox
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2 of the License, or (at your
  10.  * option) any later version.
  11.  * 
  12.  * This program is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License along
  18.  * with this program; if not, write to the Free Software Foundation, Inc.,
  19.  * 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  *
  21.  * $Header: E:/winc/RCS/pnm.h 1.1 1997/03/01 03:44:14 Derek Exp Derek $
  22.  */
  23.  
  24. int winc_pnm_output( unsigned char *image, int rows, int cols,
  25.     int maxgrey, FILE *out);
  26. int winc_pgm_output( unsigned char *image, int rows, int cols,
  27.     int maxgrey, FILE *out);
  28. int winc_pbm_output( unsigned char *image, unsigned char *outimage,
  29.     int rows, int cols, int cutoff, FILE *out);
  30.  
  31.