다음을 통해 공유


CGBlendMode 열거형

정의

컴퍼지션 중에 사용되는 혼합 모드입니다.

public enum CGBlendMode
type CGBlendMode = 
상속
CGBlendMode

필드

Name Description
Normal 0
Multiply 1
Screen 2
Overlay 3
Darken 4
Lighten 5
ColorDodge 6
ColorBurn 7
SoftLight 8
HardLight 9
Difference 10
Exclusion 11
Hue 12
Saturation 13
Color 14
Luminosity 15
Clear 16

대상을 지우고 투명하게 만듭니다(R=0).

Copy 17

알파를 사용하여 원본 색을 대상에 복사합니다(R=S).

SourceIn 18
SourceOut 19
SourceAtop 20
DestinationOver 21
DestinationIn 22
DestinationOut 23
DestinationAtop 24
XOR 25
PlusDarker 26
PlusLighter 27

설명

혼합 모드는 이미지를 작성할 때 사용되며, 작업은 색 데이터를 알파 채널과 결합합니다. 연산을 Porter-Duff 혼합 작업이라고 합니다.

자세한 설명은 PDF 참조 설명서를 참조하세요.

아래 설명에서 다음 변수가 사용됩니다.

용어설명
R미리 곱한 결과 색
S원본 색
D대상 색
Sa원본 알파 값
Da대상 알파 값

적용 대상