Framework | System/Library/Frameworks/Quartz.framework/ImageKit.framework |
Availability | Available in Mac OS X v10.5 and later. |
Declared in | IKImageEditPanel.h |
The IKImageEditPanelDataSource
informal protocol describes the methods that an IKImageEditPanel
object uses to access the contents of its data source object.
Returns an image.
- (CGImageRef)image;
An image.
Your data source must implement this method.
IKImageEditPanel.h
Returns a dictionary of the image properties associated with the image in the image edit panel.
- (NSDictionary*)imageProperties;
A dictionary that contains the properties of the image.
This method is optional.
IKImageEditPanel.h
Sets an image with the specified properties.
- (void)setImage: (CGImageRef)image imageProperties: (NSDictionary*)metaData;
Your data source must implement this method.
IKImageEditPanel.h
Returns a thumbnail image whose size is no larger than the specified size.
- (CGImageRef)thumbnailWithMaximumSize: (NSSize)size;
An image.
This method is optional.
IKImageEditPanel.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-12-06)