CIImageAccumulator.FromRectangle 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FromRectangle(CGRect, CIFormat) |
使用指定的格式,從指定的矩形建立並傳回新的影像累積器。 |
FromRectangle(CGRect, Int32) |
已淘汰.
|
FromRectangle(CGRect, CIFormat, CGColorSpace) |
使用指定的格式和色彩空間,從指定的矩形建立並傳回新的影像累積器。 |
FromRectangle(CGRect, CIFormat)
使用指定的格式,從指定的矩形建立並傳回新的影像累積器。
[Foundation.Export("imageAccumulatorWithExtent:format:")]
public static CoreImage.CIImageAccumulator FromRectangle (CoreGraphics.CGRect rect, CoreImage.CIFormat format);
static member FromRectangle : CoreGraphics.CGRect * CoreImage.CIFormat -> CoreImage.CIImageAccumulator
參數
- rect
- CGRect
要從中建立累積器的矩形。
- format
- CIFormat
累積器的像素格式。
傳回
- 屬性
適用於
FromRectangle(CGRect, Int32)
警告
Use the overload acceping a 'CIFormat' enum instead of an 'int'.
[System.Obsolete("Use the overload acceping a 'CIFormat' enum instead of an 'int'.", false)]
public static CoreImage.CIImageAccumulator FromRectangle (CoreGraphics.CGRect rect, int ciImageFormat);
static member FromRectangle : CoreGraphics.CGRect * int -> CoreImage.CIImageAccumulator
參數
- rect
- CGRect
- ciImageFormat
- Int32
傳回
- 屬性
適用於
FromRectangle(CGRect, CIFormat, CGColorSpace)
使用指定的格式和色彩空間,從指定的矩形建立並傳回新的影像累積器。
[Foundation.Export("imageAccumulatorWithExtent:format:colorSpace:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImageAccumulator FromRectangle (CoreGraphics.CGRect extent, CoreImage.CIFormat format, CoreGraphics.CGColorSpace colorSpace);
static member FromRectangle : CoreGraphics.CGRect * CoreImage.CIFormat * CoreGraphics.CGColorSpace -> CoreImage.CIImageAccumulator
參數
- extent
- CGRect
- format
- CIFormat
累積器的像素格式。
- colorSpace
- CGColorSpace
累積器的色彩空間。
傳回
- 屬性