/* NSEPSImageRep.h Application Kit Copyright (c) 1994-2012, Apple Inc. All rights reserved. */ #import @class NSPDFImageRep; @interface NSEPSImageRep : NSImageRep { /*All instance variables are private*/ NSPoint _bBoxOrigin; NSData *_epsData; NSPDFImageRep* _pdfImageRep; } + (id)imageRepWithData:(NSData *)epsData; /* Convenience of initWithData: */ - (id)initWithData:(NSData *)epsData; - (void)prepareGState; - (NSData *)EPSRepresentation; - (NSRect)boundingBox; @end