home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSEPSImageRep.h < prev    next >
Text File  |  1994-09-29  |  733b  |  35 lines

  1. /*
  2.     NXEPSImageRep.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSImageRep.h"
  8. #import <objc/List.h>
  9. #import <streams/streams.h>
  10. #import <objc/zone.h>
  11.  
  12. @interface NSEPSImageRep : NSImageRep
  13. {
  14.     char               *_fileName;
  15.     NSPoint             _bBoxOrigin;
  16.     char               *_memory;
  17.     int                 _epsLen;
  18.     short               _epsOffset;
  19.     short        _reservedShort;
  20.     char               *_otherName;
  21.     int                 _reservedInt;
  22. }
  23.  
  24. + (id)imageRepWithData:(NSData *)tiffData;    /* Convenience of initWithData: */
  25. - (id)initWithData:(NSData *)tiffData;
  26.  
  27. - prepareGState;
  28.  
  29. - (NSData *)EPSRepresentation;
  30.  
  31. - (NSRect)boundingBox;
  32.  
  33. @end
  34.  
  35.