home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Graphics / filter / PBMImageFilter.README < prev    next >
Encoding:
Text File  |  1993-10-15  |  6.9 KB  |  117 lines

  1.  
  2.  
  3. PBMImageFilter
  4. Version 1.0
  5. By Daryll Strauss
  6.  
  7.  
  8. This application is a filter service built upon the Portable BitMap toolkit by Jeff Poskanzer. Basically is uses the PBM+ tools to convert a large number of image formats into PBM formats and then uses pnmtotiff to convert the PBM format into a TIFF. The NXImage class will automatically invoke these filters to convert files and this gives you the ability to transparently open a large number of image files.
  9.  
  10. The PBMImageFilter determines the format of image file by the extension on the file name. The supported formats are:
  11.  
  12.     Sun icon file                                        .icon
  13.     X10 and X11 bitmap file                          .xbm
  14.     MacPaint                                             .macp
  15.     CMU window manager format            .cmuwm
  16.     MGR format                                           .mgr
  17.     Group 3 FAX                                          .g3
  18.     GEM .img format                                      .gem
  19.     Bennet Yee's "face" format                       .ybm
  20.     Atari Degas .pi3 format                          .pi3
  21.     Andrew Toolkit raster object                     .atk
  22.     Xerox doodle brushes                            .brush
  23.     Usenix FaceSaver(tm) file                        .fs
  24.     FITS                                                     .fits
  25.     Lisp Machine bit-array-file                      .lispm
  26.     HIPS                                                    .hips
  27.     GIF                                                    .gif      
  28.     IFF ILBM                                             .iff
  29.     PICT                                                     .pict
  30.     Atari Degas .pi1 format                          .pi1
  31.     XPM (X Window System ASCII pixmaps)    .xpm
  32.     PC Paintbrush .pcx format                        .pcx
  33.     TrueVision Targa file                                .tga
  34.     HP PaintJet format                                   .pj
  35.     Abekas YUV format                                .yuv
  36.     MTV/PRT ray-tracer output                       .mtv
  37.     QRT ray-tracer output                               .qrt
  38.     Img-whatnot file                                    .img
  39.     Xim file                                                .xim
  40.     Atari uncompressed Spectrum                     .spct
  41.     Atari compressed Spectrum                       .sput
  42.     AutoCAD slide format                             .sld
  43.     Sun raster file                                      .rast
  44.     X10/X11 window dump file            .xwd
  45.     Portable Bitmap Files                    .pbm
  46.     Portable Greymap Files                .pgm
  47.     Portable Pixmap Files                .ppm
  48.     JPEG File Interchange Format            .jpg
  49.  
  50. The PBM package has many other conversion utilities. If you want to convert from TIFF into a different format you can run tifftopnm and then one of the converters into the format you want. 
  51.  
  52. Quick Installation:
  53.  
  54. Install the package pbmtools.pkg into /usr/local/bin. Install the package PBMImageFilter into /LocalLibrary/Services. Type make_services at a shell. At this point the program should run. Try to use Preview to open an image file that is in a format listed above.
  55.  
  56. Configuration:
  57.  
  58. There is a configuration file that PBMImageFilter uses. It is called config and is stored in the directory with the Filter. The first line of the file is used to set the general configuration information. First it has the number of image types the config file contains, then it has the directory containing the PBM tools, finally it has the name of the TIFF converter. Each of these is separated by whitespace. The following lines of the file list the extension for a particular type of image and the name of the converter for that type of image. The application starts by knowing about 37 different image types, where the PBM tools live in /usr/local/bin, and uses pnmtotiff as the converter to get to tiff format. There is one "hack" to be aware of. My filter expects to be two stages, one to get into PBM format and one to convert PBM format to TIFF. If you start with a PBM format you don't need the first stage. So, I just use the application "cat" as the first stage. Since cat isn't in the PBM bin directory it is hard coded to mean /bin/cat. This shouldn't cause any harm, but don't try to make a PBM converter that's called 'cat'.
  59.  
  60. The Filter will look for the PBM tool called pnmtotiff in the workspaces path first, then the default directory that you specified. The individual user may add a dwrite 
  61.     PBMImageFilter PathToPBM <path> 
  62. to override this search path. Once it finds this program it assumes that all PBM converters are located in this directory.
  63.  
  64. Building and Installing:
  65.  
  66. The Makefile understands two targets all and install. Make all will build the PBMImageFilter and Make install will install it in ~/Library/Services.  If you would like to install the service more globally, the change the line:
  67.     DSTDIR = $(HOME)/Library/Services/PBMImageFilter.service
  68. to
  69.     DSTDIR = /NextLibrary/Services/PBMImageFilter.service
  70. and the filters will be available to anyone on the machine.
  71.  
  72. Adding PBM Tools:
  73.  
  74. Adding tools is very easy. 
  75.  
  76.     1) Place an application in your PBM directory that converts the new image type into one of the PBM types.
  77.     2) Add one to the integer at the top of the config file.
  78.     3) Add your image extension and converter to the end of the config file.
  79.     4) Add a line to the services file that says:
  80.         Send Type: NXFilenamePboardType:<your extension>
  81.     Notice that you can not have more than 16 Send Types in a single service entry.
  82.     You will need to create a new service entry (to add more)
  83.     5) If PBMImageFilter is already running you will need to kill it.
  84.     
  85. Distribution:
  86.  
  87. There are three distributions to this package. 
  88.  
  89. 1) PBMImageFilter.binaries.tar.Z. This includes one installer package to install the PBMImageFilter and one to install the PBM binaries. This is about 4 megs.
  90.  
  91. 2) PBMImageFilter.sources.tar.Z. This includes just the source to the PBMImageFilter and not the PBM package.  This is about 22k.
  92.  
  93. 3) PBM.sources.tar.Z. This includes the sources to the PBM package. This is about 4 megs.
  94.  
  95. Usage and Licensing:
  96.  
  97.     Source code I have wrriten is
  98.         Copyright  (C) 1993 by Daryll Strauss
  99.     other software, such as the PBM package is copyright by its author, but has
  100.     licensing similar to the following which is used in my source code.
  101.     
  102.     Permission to use, copy, modify, and distribute this software and its
  103.     documentation for any purpose and without fee is hereby granted, provided
  104.     that the above copyright notice appear in all copies and that both that
  105.     copyright notice and this permission notice appear in supporting
  106.     documentation.  This software is provided "as is" without express or
  107.     implied warranty.
  108.  
  109. Donations/TradeWare?
  110.  
  111.     If you think this program is useful and you or your company has a piece of shareware or comercial software available, I'd appreciate it if you'd send me a copy. You are welcome to use this software as licensed above regaurdless of whether or not you donate any software.
  112.     
  113. Contacting Me?
  114.  
  115. If you have any questions or comments about this software, I'll do my best to answer them. Send me mail at  daryll@harlot.rb.ca.us. 
  116.  
  117.