| Inherits from | |
| Conforms to | |
| Framework | Library/Frameworks/QuartzCore.framework |
| Availability | Mac OS X v10.5 and later
|
| Declared in | CIFilterGenerator.h |
| Companion guides |
The CIFilterGenerator class provides methods for creating a CIFilter object by chaining together existing CIFilter objects to create complex effects. (A filter chain refers to the CIFilter objects that are connected in the CIFilterGenerator object.) The complex effect can be encapsulated as a CIFilterGenerator object and saved as a file so that it can be used again. The filter generator file contains an archived instance of all the CIFilter objects that are chained together.
Any filter generator files that you copy to /Library/Graphics/Image Units/ are loaded when any of the loading methods provided by the CIPlugIn class are invoked. A CIFilterGenerator object is registered by its filename or, if present, by a class attribute that you supply in its description.
You can create a CIFilterGenerator object programmatically, using the methods provided by the CIFilterGenerator class, or by using the editor view provided by Core Image (see CIFilter Image Kit Additions).
– exportedKeys
– exportKey:fromObject:withName:
– removeExportedKey:
– setAttributes:forExportedKey:
Creates and returns an empty filter generator object.
+ (CIFilterGenerator *)filterGenerator
A CIFilterGenerator object.
You use the returned object to connect two or more CIFilter objects and input images. It is also valid to have only one CIFilter object in a filter generator.
CIFilterGenerator.hCreates and returns a filter generator object and initializes it with the contents of a filter generator file.
+ (CIFilterGenerator *)filterGeneratorWithContentsOfURL:(NSURL *)aURL
The location of a filter generator file.
A CIFilterGenerator object; returns nil if the file can’t be read.
CIFilterGenerator.hRetrieves the class attributes associated with a filter.
- (NSDictionary *)classAttributes
An NSDictionary object that contains the class attributes for a filter, or nil if attributes are not set for the filter.
For more information about class attributes for a filter, see Core Image Programming Guide and the filter attributes key constants defined in CIFilter Class Reference.
CIFilterGenerator.hAdds an object to the filter chain.
- (void)connectObject:(id)sourceObject withKey:(NSString *)sourceKey toObject:(id)targetObject withKey:(NSString *)targetKey
A CIFilter object, a CIImage object, or a the path (an NSString or NSURL object) to an image.
The key that specifies the source object. For example, if the source is the output image of a filter, pass the outputImage key. Pass nil if the source object is used directly.
The object that to link the source object to.
The key that specifies the target for the source. For example, if you are connecting the source to the input image of a CIFilter object, you would pass the inputImage key.
CIFilterGenerator.hRemoves the connection between two objects in the filter chain.
- (void)disconnectObject:(id)sourceObject withKey:(NSString *)key toObject:(id)targetObject withKey:(NSString *)targetKey
A CIFilter object, a CIImage object, or a the path (an NSString or NSURL object) to an image.
The key that specifies the source object. Pass nil if the source object is used directly.
The object that you want to disconnect the source object from.
The key that specifies the target that the source object is currently connected to.
CIFilterGenerator.hReturns an array of the exported keys.
- (NSDictionary *)exportedKeys
An array of dictionaries that describe the exported key and target object. See kCIFilterGeneratorExportedKey, kCIFilterGeneratorExportedKeyTargetObject, and kCIFilterGeneratorExportedKey for keys used in the dictionary.
This method returns the keys that you exported using the exportKey:fromObject:withName: method or that were exported before being written to the file from which you read the filter chain.
CIFilterGenerator.hExports an input or output key of an object in the filter chain.
- (void)exportKey:(NSString *)key fromObject:(id)targetObject withName:(NSString *)exportedKeyName
The key to export from the target object (for example, inputImage).
The object associated with the key (for example, the filter).
A unique name to use for the exported key. Pass nil to use the original key name.
When you create a CIFilter object from a CIFilterGenerator object, you might want the filter client to be able to set some of the parameters associated with the filter chain. You can make a parameter settable by exporting the key associated with the parameter. If the exported key represents an input parameter of the filter, the key is exported as an input key. If the key represents an output parameter, it is exported as an output key.
CIFilterGenerator.hCreates a filter object based on the filter chain.
- (CIFilter *)filter
A CIFilter object.
The topology of the filter chain is immutable, meaning that any changes you make to the filter chain are not reflected in the filter. The returned filer has the input an output keys that are exported.
CIFilterGenerator.hInitializes a filter generator object with the contents of a filter generator file.
- (id)initWithContentsOfURL:(NSURL *)aURL
The location of a filter generator file.
The initialized CIFilterGenerator object. Returns nil if the file can’t be read.
CIFilterGenerator.hRegisters the name associated with a filter chain.
- (void)registerFilterName:(NSString *)name
A unique name for the filter chain you want to register.
This method allows you to register the filter chain as a named filter in the Core Image filter repository. You can then create a CIFilter object from it using the the filterWithName: method of the CIFilter class.
CIFilterGenerator.hRemoves a key that was previously exported.
- (void)removeExportedKey:(NSString *)exportedKeyName
The name of the key you want to remove.
CIFilterGenerator.hSets a dictionary of attributes for an exported key.
- (void)setAttributes:(NSDictionary *)attributes forExportedKey:(NSString *)key
A dictionary that describes the attributes associated with the specified key.
The exported key whose attributes you want to set.
By default, the exported key inherits the attributes from its original key and target object. You can use this method to change one or more of the existing attributes for the key, such as the default value or maximum value. For more information on attributes, see CIFilter Class Reference and Core Image Programming Guide.
CIFilterGenerator.hSeta the class attributes for a filter.
- (void)setClassAttributes:(NSDictionary *)attributes
An NSDictionary object that contains the class attributes for a filter For information on the required attributes, see CIFilter Class Reference and Core Image Programming Guide.
CIFilterGenerator.hArchives a filter generator object to a filter generator file.
- (BOOL)writeToURL:(NSURL *)aURL atomically:(BOOL)flag
A location for the file generator file.
Pass true to specify that Core Image should create an interim file to avoid overwriting an existing file.
Returns true if the the object is successfully archived to the file.
Use this method to save your filter chain to a file for later use.
CIFilterGenerator.hKeys for the exported parameters of a filter generator object.
extern NSString *const kCIFilterGeneratorExportedKey; extern NSString *const kCIFilterGeneratorExportedKeyTargetObject; extern NSString *const kCIFilterGeneratorExportedKeyName;
kCIFilterGeneratorExportedKeyNameThe key (CIFilterGeneratorExportedKeyName) for the name used to export the CIFilterGenerator object. The associated value is a string that specifies a unique name for the filter generator object.
Available in Mac OS X v10.5 and later.
kCIFilterGeneratorExportedKeyThe key (CIFilterGeneratorExportedKey) for the exported parameter. The associated value is the key name of the parameter you are exporting, such as inputRadius.
kCIFilterGeneratorExportedKeyTargetObjectThe target object (CIFilterGeneratorExportedKeyTargetObject) for the exported key. The associated value is the name of the object, such as CIMotionBlur.
CIFilterGenerator.h
Last updated: 2006-12-05