home *** CD-ROM | disk | FTP | other *** search
/ swCHIP 1991 January / swCHIP_95-1.bin / demo / wit4711 / lib / help / io / wrimage. / wrimage.bin
Text File  |  1995-12-09  |  2KB  |  37 lines

  1. OPERATOR
  2.  
  3. wrImage --- write a WiT image object in a common format
  4.  
  5.  
  6. DESCRIPTION
  7.  
  8. The wrImage operator takes a WiT image, converts it to a file of a common 
  9. image format and writes it to disk given a file name specified by the fn 
  10. parameter. The object directory is used as the directory to write the file. 
  11. The type parameter specifies the image format. Currently the following formats 
  12. are supported: 
  13.  
  14.    GIF  - Graphics Interchange Format (8-bit)
  15.    PCX  - PC PaintBrush (8-bit)
  16.    PBM  - Portable Bitmap format (PBM, PGM, PPM)
  17.    XBM  - X Bitmap Format
  18.    TIFF - Tag Image File Format
  19. 
  20.  
  21. The dataStorage and bitmap options are only used for PBM formats and will be 
  22. explained below. 
  23.  
  24. For GIF and PCX formats, wrImage does not support 16-bit images. The operator 
  25. converts 16-bit images to 8-bit images before writing to disk. 
  26.  
  27. For PBM formats, wrImage converts a WiT image to bit-mapped (PBM), greyscale 
  28. (PGM) or color (PPM) types depending on the type of the WiT image imported. 
  29. You can specify raw bytes or ASCII text data storage format. If you choose 
  30. yes for the bitmap option, the operator wil convert the imported WiT image to 
  31. a bit-mapped format by converting all non-zero pixels to off and all zero 
  32. pixels to on no matter what the WiT image type is. 
  33.  
  34. For XBM formats, wrImage converts a WiT image to a bitmap by setting all 
  35. non-zero pixels to 0 and all zero pixels to 1 and writes it to disk. 
  36. Color is not supported.
  37.