Up
Authors
- Adam Fedor (
fedor@colorado.edu
)
-
Abstract representation of an image.
Copyright: (C) 1996 Free Software Foundation, Inc.
- Declared in:
- AppKit/NSImageRep.h
- Conforms to:
- NSCoding
- NSCopying
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables
Method summary
+ (BOOL) canInitWithData: (NSData*)data;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (BOOL) canInitWithPasteboard: (NSPasteboard*)pasteboard;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageFileTypes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imagePasteboardTypes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (Class) imageRepClassForData: (NSData*)data;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (Class) imageRepClassForFileType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (Class) imageRepClassForPasteboardType: (NSString*)type;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (id) imageRepWithContentsOfFile: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (id) imageRepWithContentsOfURL: (NSURL*)anURL;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (id) imageRepWithPasteboard: (NSPasteboard*)pasteboard;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageRepsWithContentsOfFile: (NSString*)filename;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageRepsWithContentsOfURL: (NSURL*)anURL;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageRepsWithPasteboard: (NSPasteboard*)pasteboard;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageUnfilteredFileTypes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) imageUnfilteredPasteboardTypes;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (void) registerImageRepClass: (Class)imageRepClass;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (NSArray*) registeredImageRepClasses;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
+ (void) unregisterImageRepClass: (Class)imageRepClass;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (int) bitsPerSample;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSString*) colorSpaceName;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) draw;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) drawAtPoint: (NSPoint)aPoint;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) drawInRect: (NSRect)aRect;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) hasAlpha;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (BOOL) isOpaque;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (int) pixelsHigh;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (int) pixelsWide;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setAlpha: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setBitsPerSample: (int)anInt;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setColorSpaceName: (NSString*)aString;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setOpaque: (BOOL)flag;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setPixelsHigh: (int)anInt;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setPixelsWide: (int)anInt;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (void) setSize: (NSSize)aSize;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
- (NSSize) size;
Availability: Not in OpenStep/MacOS-X
Description forthcoming.
Instance Variables for NSImageRep Class
@protected int _bitsPerSample;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSString* _colorSpace;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected BOOL _hasAlpha;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected BOOL _isOpaque;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected int _pixelsHigh;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected int _pixelsWide;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
@protected NSSize _size;
Warning the underscore at the start of the
name of this instance variable indicates that, even
though it is not technically private, it is
intended for internal use within the package, and
you should not use the variable in other code.
Up