MonobjcMonobjc Documented Class Library
ImageAccumulatorWithExtentFormat Method (r, f)
NamespacesMonobjc.QuartzCoreCIImageAccumulatorImageAccumulatorWithExtentFormat(CGRect, Int32)

Creates an image accumulator with the specified extent and pixel format.

Original signature is '+ (CIImageAccumulator *)imageAccumulatorWithExtent:(CGRect)r format:(CIFormat)f'

Available in 4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static CIImageAccumulator ImageAccumulatorWithExtentFormat(
	CGRect r,
	int f
)
Public Shared Function ImageAccumulatorWithExtentFormat ( _
	r As CGRect, _
	f As Integer _
) As CIImageAccumulator
public:
static CIImageAccumulator^ ImageAccumulatorWithExtentFormat(
	CGRect r, 
	int f
)
Parameters
r (CGRect)
A rectangle that specifies the x-value of the rectangle origin, the y-value of the rectangle origin, and the width and height.
f (Int32)
The format and size of each pixel. You must supply a pixel format constant, such as kCIFormatARGB8 (32 bit-per-pixel, fixed-point pixel format) or kCIFormatRGBAf (128 bit-per-pixel, floating-point pixel format). See CIImage Class Reference for more information about pixel format constants.
Return Value
The image accumulator 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)