CIDissolveTransition 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
执行 CITransitionFilter 交叉溶解的 。
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public class CIDissolveTransition : CoreImage.CITransitionFilter
type CIDissolveTransition = class
inherit CITransitionFilter
- 继承
- 属性
注解
以下示例演示正在使用的此筛选器
// Create the CIImage from a file
CIImage heron = CIImage.FromCGImage (UIImage.FromFile ("heron.jpg").CGImage);
CIImage clouds = CIImage.FromCGImage (UIImage.FromFile ("clouds.jpg").CGImage);
// Create a CIDissolveTransition filter with the input image
var dissolve_transition = new CIDissolveTransition ()
{
Image = heron,
TargetImage = clouds,
Time = 0.5f
};
// Get the altered image from the filter
var output = dissolve_transition.OutputImage;
// To render the results, we need to create a context, and then
// use one of the context rendering APIs, in this case, we render the
// result into a CoreGraphics image, which is merely a useful representation
//
var context = CIContext.FromOptions (null);
var cgimage = context.CreateCGImage (output, output.Extent);
// The above cgimage can be added to a screen view, for example, this
// would add it to a UIImageView on the screen:
myImageView.Image = UIImage.FromImage (cgimage);
使用以下图像输入:
生成以下输出:
“canon” © 2012 cuatrok77 hernandez,在创意共享Attribution-ShareAlike许可证下使用: https://creativecommons.org/licenses/by-sa/3.0/
“阿特凯森高原附近的日出”© 2012 查尔斯·阿特凯森,在创意共享Attribution-ShareAlike许可证下使用: https://creativecommons.org/licenses/by-sa/3.0/
构造函数
CIDissolveTransition() |
使用默认值创建新的 CIDissolveTransition。 |
CIDissolveTransition(IntPtr) |
创建非托管对象的托管表示形式时使用的构造函数;由运行时调用。 |
CIDissolveTransition(NSCoder) |
从 unarchiver 对象中存储的数据初始化 对象的构造函数。 |
CIDissolveTransition(NSObjectFlag) |
在派生类上调用 的构造函数,以跳过初始化并仅分配 对象。 |
属性
Attributes |
筛选器的可配置属性。 (继承自 CIFilter) |
Class |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |
ClassHandle |
此类的句柄。 (继承自 CIFilter) |
DebugDescription |
此对象的开发人员有意义的说明。 (继承自 NSObject) |
Description |
对象的说明,即 ToString 的 Objective-C 版本。 (继承自 NSObject) |
Handle |
处理指向非托管对象表示形式的 (指针) 。 (继承自 NSObject) |
Image |
获取或设置要筛选的图像。 (继承自 CIFilter) |
InputKeys |
获取一个数组,该数组包含筛选器的输入键的名称。 (继承自 CIFilter) |
IsDirectBinding |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |
IsProxy |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |
Item[NSString] |
获取由 |
Name |
获取筛选器名称。 (继承自 CIFilter) |
OutputImage |
获取将筛选器应用于 Image后得到的图像。 (继承自 CIFilter) |
OutputKeys |
获取一个数组,其中包含筛选器的输出键的名称。 (继承自 CIFilter) |
RetainCount |
返回对象的当前 Objective-C 保留计数。 (继承自 NSObject) |
Self |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |
Superclass |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |
SuperHandle |
用于表示此 NSObject 基类中方法的句柄。 (继承自 NSObject) |
TargetImage |
获取或设置目标图像。 (继承自 CITransitionFilter) |
Time |
获取或设置转换的当前时间。 (继承自 CITransitionFilter) |
Zone |
执行 CITransitionFilter 交叉溶解的 。 (继承自 NSObject) |