CIImage.FromUrl Method

Definition

Overloads

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.

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.

[Foundation.Export("imageWithContentsOfURL:options:")]
public static CoreImage.CIImage FromUrl (Foundation.NSUrl url, Foundation.NSDictionary d);
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

FromUrl(NSUrl)

Creates a new CIImage from url.

[Foundation.Export("imageWithContentsOfURL:")]
public static CoreImage.CIImage FromUrl (Foundation.NSUrl url);
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.

public static CoreImage.CIImage FromUrl (Foundation.NSUrl url, CoreImage.CIImageInitializationOptions options);
static member FromUrl : Foundation.NSUrl * CoreImage.CIImageInitializationOptions -> CoreImage.CIImage

Parameters

url
NSUrl
options
CIImageInitializationOptions

Options to initialize the image with.

Returns

Applies to