CIImageAccumulator.FromRectangle Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| FromRectangle(CGRect, CIFormat) |
Creates and returns a new image accumulator from the specified rectangle and using the specified format. |
| FromRectangle(CGRect, CIFormat, CGColorSpace) |
Creates and returns a new image accumulator from the specified rectangle and using the specified format and color space. |
FromRectangle(CGRect, CIFormat)
Creates and returns a new image accumulator from the specified rectangle and using the specified format.
[Foundation.Export("imageAccumulatorWithExtent:format:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static CoreImage.CIImageAccumulator? FromRectangle(CoreGraphics.CGRect rect, CoreImage.CIFormat format);
[<Foundation.Export("imageAccumulatorWithExtent:format:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FromRectangle : CoreGraphics.CGRect * CoreImage.CIFormat -> CoreImage.CIImageAccumulator
Parameters
- rect
- CGRect
The rectangle from which to create the accumulator.
- format
- CIFormat
The pixel format for the accumulator.
Returns
- Attributes
Applies to
FromRectangle(CGRect, CIFormat, CGColorSpace)
Creates and returns a new image accumulator from the specified rectangle and using the specified format and color space.
[Foundation.Export("imageAccumulatorWithExtent:format:colorSpace:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static CoreImage.CIImageAccumulator? FromRectangle(CoreGraphics.CGRect extent, CoreImage.CIFormat format, CoreGraphics.CGColorSpace colorSpace);
[<Foundation.Export("imageAccumulatorWithExtent:format:colorSpace:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FromRectangle : CoreGraphics.CGRect * CoreImage.CIFormat * CoreGraphics.CGColorSpace -> CoreImage.CIImageAccumulator
Parameters
- extent
- CGRect
- format
- CIFormat
The pixel format for the accumulator.
- colorSpace
- CGColorSpace
The color space for the accumulator.
Returns
- Attributes