UIImage.FromImage 方法

定义

重载

FromImage(CIImage, nfloat, UIImageOrientation)

静态工厂方法,用于创建 UIImage 由指定 、按指定缩放和定向的 。

FromImage(CGImage, nfloat, UIImageOrientation)

静态工厂方法,用于创建 UIImage 由指定 、按指定缩放和定向的 。

FromImage(CGImage)

从石英图像创建新的图像 oject。

FromImage(CIImage)

从核心映像 CIImage创建 UIImage 的工厂方法。

FromImage(CIImage, nfloat, UIImageOrientation)

静态工厂方法,用于创建 UIImage 由指定 、按指定缩放和定向的 。

[Foundation.Export("imageWithCIImage:scale:orientation:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
[ObjCRuntime.ThreadSafe]
public static UIKit.UIImage FromImage (CoreImage.CIImage ciImage, nfloat scale, UIKit.UIImageOrientation orientation);
static member FromImage : CoreImage.CIImage * nfloat * UIKit.UIImageOrientation -> UIKit.UIImage

参数

ciImage
CIImage
scale
nfloat
orientation
UIImageOrientation

返回

属性

注解

(即将推出有关此节点的更多文档)

这可以从后台线程使用。

适用于

FromImage(CGImage, nfloat, UIImageOrientation)

静态工厂方法,用于创建 UIImage 由指定 、按指定缩放和定向的 。

[Foundation.Export("imageWithCGImage:scale:orientation:")]
[ObjCRuntime.ThreadSafe]
public static UIKit.UIImage FromImage (CoreGraphics.CGImage image, nfloat scale, UIKit.UIImageOrientation orientation);
static member FromImage : CoreGraphics.CGImage * nfloat * UIKit.UIImageOrientation -> UIKit.UIImage

参数

image
CGImage
scale
nfloat
orientation
UIImageOrientation

返回

属性

注解

(即将推出有关此节点的更多文档)

这可以从后台线程使用。

适用于

FromImage(CGImage)

从石英图像创建新的图像 oject。

[Foundation.Export("imageWithCGImage:")]
[ObjCRuntime.ThreadSafe]
public static UIKit.UIImage FromImage (CoreGraphics.CGImage image);
static member FromImage : CoreGraphics.CGImage -> UIKit.UIImage

参数

image
CGImage

包含要使用的 Quartz 图像。

返回

一个新的图像对象; null 如果无法创建映像,则为 。

属性

注解

这可以从后台线程使用。

适用于

FromImage(CIImage)

从核心映像 CIImage创建 UIImage 的工厂方法。

[Foundation.Export("imageWithCIImage:")]
[ObjCRuntime.ThreadSafe]
public static UIKit.UIImage FromImage (CoreImage.CIImage image);
static member FromImage : CoreImage.CIImage -> UIKit.UIImage

参数

image
CIImage

包含要使用的 Quartz 图像。

返回

一个新的图像对象; null 如果无法创建映像,则为 。

属性

注解

(即将推出有关此节点的更多文档)

这可以从后台线程使用。

适用于