일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- core data
- struct
- Apple Developer Academy
- 동시성
- SwiftUI
- IOS
- 인프런
- decode
- 비동기
- Swift
- Codable
- Linked List
- 100 days of SwiftUI
- 앨런
- UserDefaults
- 알고리즘
- 프로세스 스케줄링
- 동기화
- forEach
- 데드락
- Algorithm
- 운영체제
- 오브젝트
- 상호배제
- 가상 메모리
- async
- COLOR
- deadlock
- @state
- scrollview
Archives
- Today
- Total
목록multiply (1)
기어가더라도 제대로
[SwiftUI-기초] BlendMode - 색상 혼합
ZStack { Image("Example") Rectangle() .fill(.red) .blendMode(.normal) } .frame(width: 400, height: 500) .clipped() .blendMode(.normal) 기본적인 전략으로 색상이 섞이지 않음 .blendMode(.multiply) 각 픽셀마다 이미지가 가지고 있는 원래 색상 X 색상 프레임이 가지고 있는 도착지 픽셀의 색상 0...1 * 0...1 = 0...1 Image("Example") .colorMultiply(.red) ZStack 을 사용하지 않고도 적용 가능 .blendMode(.screen) 원래 색상의 역을 곱해서 나온 값의 역 (1 - (0...1)) * (1 - (0...1)) = a screen ..
SwiftUI - 기초
2022. 11. 20. 09:24