home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / libraries / SurfImage.1.0.README < prev    next >
Encoding:
Text File  |  1995-08-04  |  3.8 KB  |  54 lines

  1. Copyright 1995 by Netsurfer, Inc., All Rights Reserved.
  2.  
  3.  
  4. Introduction
  5.  
  6. The SurfImage library implements a flexible object framework used to decode image files or streams into instances of NXImage.  Currently, SurfImage decodes GIF and JPEG/JFIF images.  The design of the framework is such that it is simple to add support for new image formats.
  7.  
  8. To the incorporating application, all decoding and decoder management tasks are performed through a shared instance of the class SurfImageDecoder.  The shared instance of SurfImageDecoder maintains a database of decoders and the types those decoders can decode.
  9.  
  10. For example, the following code snippet will decode the JPEG/JFIF, GIF, or TIFF image contained in filePath into a newly allocated instance of NXImage.
  11.  
  12. id theNXImage = [[SurfImageDecoder sharedInstance]     decodeFromFile:filePath];
  13.  
  14. In a single threaded environment, the incorporating application can ask the shared instance of SurfImageDecoder to decode an image that is contained in a file or NXStream.  The SurfImageDecoder will automatically determine which decoder can decode the image, decode the image using that decoder, and return an instance of NXImage encapsulating the decoded image.
  15.  
  16. In a multi-threaded environment, an application asks the SurfImageDecoder to return the class of decoder used to decode any particular image format.  Once the class has been determined, it is up to the application to allocate and manage the decoder object.  Since all decoders inherit from SurfDecoder, all decoders provide a concise API.
  17.  
  18. For decoding purposes, the Application does not need any awareness of the subclasses of SurfDecoder (currently SurfGIFDecoder and SurfJPEGDecoder).  The SurfImageDecoder shared instance acts as a Class Controller for the subclasses of SurfDecoder.  A Class Controller is just like a Class Cluster (see the foundation kit intro document for more information), but moves the control into an instance of some class instead of behind a set of class methods.
  19.  
  20. Adding new decoders
  21.  
  22. SurfImageDecoder allows the developer to add new or change the existing  image decoders.  To add or change a decoder, the developer first implements a subclass of SurfDecoder.  Upon application startup, the developer notifies SurfImageDecoder of the availability of the decoder by calling +addDecoderClass:.  
  23.  
  24. Sponsorship
  25.  
  26. NetImageFilter and SurfImage were developed by Bill Bumgarner
  27. <bbum@friday.com> with support from Netsurfer, Inc.  Both are
  28. unsupported products, but sending email to <bbum@friday.com> will
  29. likely result in a response or a new release.
  30.  
  31. Netsurfer, Inc has been kind enough to allow the author to distribute
  32. both SurfImage and NetImageFilter under the MiscKit License-- you
  33. are free to use the source and binaries for any purpose.  The author
  34. asks that you send email to <bbum@friday.com> before redistributing
  35. the code/binaries or before incorporating the code into existing
  36. projects;  it is not a requirement, but would be polite.
  37.  
  38. For their kindness, the author asks that you check out Netsurfer's
  39. most excellent internet resource browser!  Visit http://www.netsurfer.com
  40. or download a demo copy of Netsurfer.app from your nearest archive
  41. site (the latest version can always be found at
  42. ftp://ftp.thoughtport.com/pub/next/Netsurfer).
  43.  
  44. As well, ThoughtPort Authority has kindly provided the author of
  45. these packages with the best internet connection the author has
  46. ever enjoyed using.  No downtime, no problems-- just good connectivity!
  47. Please visit ThoughtPort and give them business so they continue
  48. to support these kinds of development efforts-- http://www.thoughtport.com.
  49.  
  50. It is likely that the latest information in regards to this and
  51. other software packages written or maintained by the author will
  52. be available within the friday.com domain.  Visit http://www.friday.com
  53. for more information.
  54.