home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / dcom / fax / 1586 < prev    next >
Encoding:
Text File  |  1992-08-29  |  1.0 KB  |  31 lines

  1. Newsgroups: comp.dcom.fax
  2. Path: sparky!uunet!sarto!jhpb
  3. From: jhpb@sarto.budd-lake.nj.us (Joseph H. Buehler)
  4. Subject: Re: Needed: Fax2gif
  5. In-Reply-To: cmbecker@casbah.acns.nwu.edu's message of Thu, 27 Aug 1992 22:19:28 GMT
  6. Message-ID: <JHPB.92Aug29015716@sarto.budd-lake.nj.us>
  7. Sender: jhpb@sarto.budd-lake.nj.us (Joseph H Buehler)
  8. Organization: none
  9. References: <1992Aug27.221928.792@news.acns.nwu.edu>
  10. Date: Sat, 29 Aug 1992 06:57:16 GMT
  11. Lines: 18
  12.  
  13. In article <1992Aug27.221928.792@news.acns.nwu.edu> cmbecker@casbah.acns.nwu.edu (Canton Becker) writes:
  14.  
  15.     I'm having a terrible time trying to get received faxes from the
  16.     Trufax package to print or display...  Does anyone know how I can
  17.     convert raw fax files to gif format?  (I need to look at these on
  18.     a Sun, if there are any other ideas.)
  19.  
  20. If by "raw fax" you mean G3 data, get the pbmplus package from the net
  21. and use the following shell script, modified to your taste:
  22.  
  23. #
  24. # convert g3 fax to gif that I can look at
  25. #
  26.  
  27. g3topbm -reversebits $1 |
  28. pnmscale -xsize 700 |
  29. pgmtoppm rgbi:1/1/1 |
  30. ppmtogif
  31.