Share via


CIImage.FromUrl Method

Definition

Overloads

Name Description
FromUrl(NSUrl)

Creates a new CIImage from url.

FromUrl(NSUrl, CIImageInitializationOptions)

Creates a new CIImage from url by using the the specified options.

FromUrl(NSUrl, NSDictionary)

Creates a new CIImage from url by using the options that are specified in d.

FromUrl(NSUrl)

Creates a new CIImage from url.

[Foundation.Export("imageWithContentsOfURL:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static CoreImage.CIImage? FromUrl(Foundation.NSUrl url);
[<Foundation.Export("imageWithContentsOfURL:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FromUrl : Foundation.NSUrl -> CoreImage.CIImage

Parameters

url
NSUrl

Returns

Attributes

Applies to

FromUrl(NSUrl, CIImageInitializationOptions)

Creates a new CIImage from url by using the the specified options.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static CoreImage.CIImage? FromUrl(Foundation.NSUrl url, CoreImage.CIImageInitializationOptions? options);
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FromUrl : Foundation.NSUrl * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage

Parameters

url
NSUrl
options
CIImageInitializationOptions

Options to initialize the image with.

Returns

Attributes

Applies to

FromUrl(NSUrl, NSDictionary)

Creates a new CIImage from url by using the options that are specified in d.

[Foundation.Export("imageWithContentsOfURL:options:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public static CoreImage.CIImage? FromUrl(Foundation.NSUrl url, Foundation.NSDictionary? d);
[<Foundation.Export("imageWithContentsOfURL:options:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
static member FromUrl : Foundation.NSUrl * Foundation.NSDictionary -> CoreImage.CIImage

Parameters

url
NSUrl
d
NSDictionary

Extra configuration options, as an NSDictionary.

This parameter can be null.

Returns

Attributes

Applies to