CIFlashTransition 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
, CITransitionFilter 呈現類似星環的閃爍。
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public class CIFlashTransition : CoreImage.CITransitionFilter
type CIFlashTransition = 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 CIFlashTransition filter with the input image
var flash_transition = new CIFlashTransition ()
{
Image = heron,
TargetImage = clouds,
Time = 0.8f
};
// Get the altered image from the filter
var output = flash_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,用於 Creative Commons Attribution-ShareAlike 授權: https://creativecommons.org/licenses/by-sa/3.0/
在 Creative Commons Attribution-ShareAlike 授權下使用的「在 Atkeison 附近©,2012 年 Charles Atkeison」 2012 年 https://creativecommons.org/licenses/by-sa/3.0/
建構函式
CIFlashTransition() |
使用預設值建立新的 CIFlashTransition。 |
CIFlashTransition(IntPtr) |
建立 Unmanaged 物件的 Managed 標記法時所使用的建構函式;由執行時間呼叫。 |
CIFlashTransition(NSCoder) |
從儲存在 unarchiver 物件中的資料初始化 物件的建構函式。 |
CIFlashTransition(NSObjectFlag) |
呼叫衍生類別的建構函式,以略過初始化,並只配置 物件。 |
屬性
Attributes |
篩選準則的可設定屬性。 (繼承來源 CIFilter) |
Center |
取得或設定快閃的中心。 |
Class |
, CITransitionFilter 呈現類似星環的閃爍。 (繼承來源 NSObject) |
ClassHandle |
這個類別的控制碼。 (繼承來源 CIFilter) |
Color |
取得或設定閃爍的色彩。 |
DebugDescription |
此物件的開發人員有意義描述。 (繼承來源 NSObject) |
Description |
物件的描述,ToString 的 Objective-C 版本。 (繼承來源 NSObject) |
Extent |
取得或設定代表快閃矩形範圍的表單向量 (x,y,w,h) 。 |
FadeThreshold |
取得或設定快閃開始或停止出現的臨界值。 |
Handle |
處理非受控物件標記法) (指標。 (繼承來源 NSObject) |
Image |
取得或設定要篩選的影像。 (繼承來源 CIFilter) |
InputKeys |
取得陣列,其中包含篩選準則輸入索引鍵的名稱。 (繼承來源 CIFilter) |
IsDirectBinding |
, CITransitionFilter 呈現類似星環的閃爍。 (繼承來源 NSObject) |
IsProxy |
, CITransitionFilter 呈現類似星環的閃爍。 (繼承來源 NSObject) |
Item[NSString] |
取得 所 |
MaxStriationContrast |
取得或設定重試對比。 |
MaxStriationRadius |
取得或設定快閃效果的最大半徑。 |
MaxStriationStrength |
取得或設定快閃中重試的最大強度。 |
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) |