(informal protocol)
| Adopted by | |
| Framework | Library/Frameworks/QuartzCore.framework |
| Declared in | QuartzCore/CIImageProvider.h |
| Availability | Available in Mac OS X v10.4 and later
|
| Companion guide |
The CIImageProvider informal protocol defines methods for supplying bitmap data to create or initialize a CIImage object.
Supplies data to a CIImage object.
- (void)provideImageData:(void *)data bytesPerRow:(size_t)rowbytes origin:(size_t) x:(size_t)y size:(size_t)width:(size_t)height userInfo:(id)info
A pointer to image data. Note that data[0] refers to the first byte of the requested subimage, not the larger image buffer.
The number of bytes per row.
The x origin of the image data.
The y origin of the image data.
The width of the image data.
The height of the image data.
User supplied data, which is optional.
You can supply the image provider to these methods of the CIImage class:
imageWithImageProvider:size::format:colorSpace:options: to create a CIImage object from image data
initWithImageProvider:size::format:colorSpace:options: to initialize an existing CIImage with data
You initialize the given bitmap with the subregion specified by the arguments x, y, width, and height. The subregion uses the local coordinate space of the image, with the origin at the upper-left corner of the image. If you change the virtual memory mapping of the buffer specified by the data argument (such as by using vm_copy to modify it), the behavior is undefined.
That this callback always requests the full image data regardless of what is actually visible. All of the image is loaded or none of it is. The exception is when you create a tiled image by specifying the kCIImageProviderTileSize option. In this case, only the needed tiles are requested.
Keys for the options dictionary of an image provider.
extern NSString *kCIImageProviderTileSize; extern NSString *kCIImageProviderUserInfo;
kCIImageProviderTileSizeA key for the image tiles size. The associated value is an NSArray that containsNSNumber objects for the dimensions of the image tiles requested from the image provider.
kCIImageProviderUserInfoA key for data needed by the image provider. The associated value is an object that contains the needed data.
You can use these options when you create or initialize an image provider with such methods as imageWithImageProvider:size::format:colorSpace:options: or initWithImageProvider:size::format:colorSpace:options:.
CIImageProvider.h
Last updated: 2006-12-05