다음을 통해 공유


CGContext.AsBitmapContext 메서드

정의

CGContext를 CGBitmapContext로 캐스팅합니다.

public CoreGraphics.CGBitmapContext AsBitmapContext ();
member this.AsBitmapContext : unit -> CoreGraphics.CGBitmapContext

반환

설명

CGContext 종류의 다른 종류 (일반, 비트맵 및 PDF)가 있지만 Apple은 이를 구분하는 방법을 지원하지 않습니다. 특정 CGContext 개체는 실제로 몇 가지 상황에서 CGBitmapContext 개체로 알려져 있습니다(또는 BeginImageContextWithOptions(CGSize, Boolean, nfloat)를 사용하여 컨텍스트 BeginImageContext(CGSize) 를 만든 후 호출GetImageFromCurrentImageContext()).

이러한 개체는 실제로 CGBitmapContext 개체이며, 이를 변환하면 애플리케이션 개발자가 해당 개체의 다양한 비트맵 속성에 액세스할 수 있습니다.

UIGraphics.BeginImageContextWithOptions (image.Size, false, UIScreen.MainScreen.Scale);
CGBitmapContext effectInContext = UIGraphics.GetCurrentContext ().AsBitmapContext ()

// Now, you can access some interesting properties like "Data", "Width", 
// "Height", "BytesPerRow" from the underlying bitmap

var effectInBuffer = new vImageBuffer () {
        Data = effectInContext.Data,
        Width = effectInContext.Width,
        Height = effectInContext.Height,
        BytesPerRow = effectInContext.BytesPerRow
};

적용 대상