CIImage.FromImageBuffer 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
FromImageBuffer(CVImageBuffer) |
Creates a new CIImage based on the data in the |
FromImageBuffer(CVPixelBuffer) |
Creates a new image from the data that is contained in |
FromImageBuffer(CVImageBuffer, CIImageInitializationOptions) |
Creates a new CIImage based on the data in the |
FromImageBuffer(CVImageBuffer, NSDictionary) | |
FromImageBuffer(CVImageBuffer, NSDictionary<NSString,NSObject>) |
Creates a new CIImage based on the data in |
FromImageBuffer(CVPixelBuffer, CIImageInitializationOptions) |
Creates a new image from the data that is contained in |
FromImageBuffer(CVPixelBuffer, NSDictionary) |
Creates a new image from the data that is contained in |
FromImageBuffer(CVImageBuffer)
Creates a new CIImage based on the data in the imageBuffer
.
[Foundation.Export("imageWithCVImageBuffer:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer);
static member FromImageBuffer : CoreVideo.CVImageBuffer -> CoreImage.CIImage
Parameters
- imageBuffer
- CVImageBuffer
The source of the image.
Returns
- Attributes
Applies to
FromImageBuffer(CVPixelBuffer)
Creates a new image from the data that is contained in buffer
.
[Foundation.Export("imageWithCVPixelBuffer:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer);
static member FromImageBuffer : CoreVideo.CVPixelBuffer -> CoreImage.CIImage
Parameters
- buffer
- CVPixelBuffer
Returns
- Attributes
Applies to
FromImageBuffer(CVImageBuffer, CIImageInitializationOptions)
Creates a new CIImage based on the data in the imageBuffer
and with the specified options
.
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, CoreImage.CIImageInitializationOptions options);
static member FromImageBuffer : CoreVideo.CVImageBuffer * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage
Parameters
- imageBuffer
- CVImageBuffer
- options
- CIImageInitializationOptions
Returns
- Attributes
Applies to
FromImageBuffer(CVImageBuffer, NSDictionary)
[Foundation.Export("imageWithCVImageBuffer:options:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, Foundation.NSDictionary dict);
static member FromImageBuffer : CoreVideo.CVImageBuffer * Foundation.NSDictionary -> CoreImage.CIImage
Parameters
- imageBuffer
- CVImageBuffer
- dict
- NSDictionary
Returns
- Attributes
Applies to
FromImageBuffer(CVImageBuffer, NSDictionary<NSString,NSObject>)
Creates a new CIImage based on the data in imageBuffer
and applying the options in dict
.
[Foundation.Export("imageWithCVImageBuffer:options:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 9, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVImageBuffer imageBuffer, Foundation.NSDictionary<Foundation.NSString,Foundation.NSObject> dict);
static member FromImageBuffer : CoreVideo.CVImageBuffer * Foundation.NSDictionary<Foundation.NSString, Foundation.NSObject> -> CoreImage.CIImage
Parameters
- imageBuffer
- CVImageBuffer
Source of the data for the image.
- dict
- NSDictionary<NSString,NSObject>
A dictionary of strings to objects, holding the options for image creation.
This parameter can be null
.
Returns
- Attributes
Applies to
FromImageBuffer(CVPixelBuffer, CIImageInitializationOptions)
Creates a new image from the data that is contained in buffer
by using the specified options
.
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer, CoreImage.CIImageInitializationOptions options);
static member FromImageBuffer : CoreVideo.CVPixelBuffer * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage
Parameters
- buffer
- CVPixelBuffer
- options
- CIImageInitializationOptions
Options to initialize the image with.
Returns
Applies to
FromImageBuffer(CVPixelBuffer, NSDictionary)
Creates a new image from the data that is contained in buffer
by using the options that are specified in dict
.
[Foundation.Export("imageWithCVPixelBuffer:options:")]
public static CoreImage.CIImage FromImageBuffer (CoreVideo.CVPixelBuffer buffer, Foundation.NSDictionary dict);
static member FromImageBuffer : CoreVideo.CVPixelBuffer * Foundation.NSDictionary -> CoreImage.CIImage
Parameters
- buffer
- CVPixelBuffer
Returns
- Attributes