MonobjcMonobjc Documented Class Library
FilterWithImageDataOptions Method (data, options)
NamespacesMonobjc.QuartzCoreCIFilterFilterWithImageDataOptions(NSData, NSDictionary)

Returns a CIFilter object initialized with RAW image data supplied to the method.

Original signature is '+ (CIFilter *)filterWithImageData:(NSData *)data options:(NSDictionary *)options'

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static CIFilter FilterWithImageDataOptions(
	NSData data,
	NSDictionary options
)
Public Shared Function FilterWithImageDataOptions ( _
	data As NSData, _
	options As NSDictionary _
) As CIFilter
public:
static CIFilter^ FilterWithImageDataOptions(
	NSData^ data, 
	NSDictionary^ options
)
Parameters
data (NSData)
The RAW image data to initialize the object with.
options (NSDictionary)
A options dictionary. You can pass any of the keys defined in “RAW Image Options” along with the appropriate value. You should provide a source type identifier hint key (kCGImageSourceTypeIdentifierHint) and the appropriate source type value to help the decoder determine the file type. Otherwise it’s possible to obtain incorrect results. See the Discussion for an example
Return Value
A CIFilter object.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)