■ ColorConversionExtensions 클래스의 GetDegreeHue 확장 메소드를 사용해 색조 값을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using CommunityToolkit.Maui.Core.Extensions; Color sourceColor = Colors.Red; double hue = sourceColor.GetDegreeHue(); |
※ 색조 값은 0 ~ 360 사이의 값을 갖는다.