Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DrawingExtensions.cs « Custom « Controls « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf87d01ef96b78849e164d9956c1ade3e7271a1c (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using System;
using AppKit;
using CoreGraphics;
using CoreImage;
using ObjCRuntime;
using Xamarin.PropertyEditing.Drawing;

namespace Xamarin.PropertyEditing.Mac
{
	static class DrawingExtensions
	{
		public static CGImage GenerateCheckerboard (CGRect frame, NSColor c0, NSColor c1)
		{
			return GenerateCheckerboard (frame, CIColor.FromCGColor (c0.CGColor), CIColor.FromCGColor (c1.CGColor));
		}

		public static CGImage GenerateCheckerboard (CGRect frame, CIColor c0, CIColor c1)
		{
			using (var board = new CICheckerboardGenerator () {
				Color0 = c0,
				Color1 = c1,
				Width = (float)Math.Min (frame.Height / 2f, 10),
				Center = new CIVector (new nfloat[] { 0, 0 }),
			}) {
				using (var context = new CIContext (null)) {
					return context.CreateCGImage (board.OutputImage, new CGRect (0, 0, frame.Width, frame.Height));
				}
			}
		}

		public static CGColor ToCGColor (this CommonColor color)
			=> new CGColor (color.R / 255f, color.G / 255f, color.B / 255f, color.A / 255f);

		public static NSColor ToNSColor (this CommonColor color)
			=> NSColor.FromRgba (color.R, color.G, color.B, color.A);

		public static CommonColor Blend (this CommonColor a, CommonColor b)
		{
			byte C (byte cb1, byte ab1, byte cb2)
			{
				var c1 = cb1 / 255f;
				var a1 = ab1 / 255f;
				var c2 = cb2 / 255f;

				var c = Math.Max (0, Math.Min (255, (c1 + c2 * (1 - a1)) * 255));
				return (byte)c;
			}

			return new CommonColor (
				C (a.R, a.A, b.R),
				C (a.G, a.A, b.G),
				C (a.B, a.A, b.B),
				C (a.A, a.A, b.A));
		}

		public static CGRect Translate (this CGRect rect, double x, double y)
			=> new CGRect (
				x: rect.X + x,
				y: rect.Y + y,
				width: rect.Width,
				height: rect.Height);

		public static CommonColor UpdateRGB (
			this CommonColor color,
			byte? r = null,
			byte? g = null,
			byte? b = null,
			byte? a = null)
		{
			return new CommonColor (
				r: r ?? color.R,
				g: g ?? color.G,
				b: b ?? color.B,
				a: a ?? color.A);
		}

		public static CommonColor UpdateHSB (
			this CommonColor color,
			double? hue = null,
			double? saturation = null,
			double? brightness = null,
			byte? alpha = null)
		{
			return CommonColor.FromHSB (
				hue: hue ?? color.Hue,
				saturation: saturation ?? color.Saturation,
				brightness: brightness ?? color.Brightness,
				alpha: alpha ?? color.A);
		}

		public static CommonColor UpdateHLS (
			this CommonColor color,
			double? hue = null,
			double? lightness = null,
			double? saturation = null,
			byte? alpha = null)
		{
			return CommonColor.FromHLS (
				hue: hue ?? color.Hue,
				lightness: lightness ?? color.Lightness,
				saturation: saturation ?? color.Saturation,
				alpha: alpha ?? color.A);
		}

		public static CommonColor UpdateCMYK (
			this CommonColor color,
			double? c = null,
			double? m = null,
			double? y = null,
			double? k = null,
			byte? alpha = null)
		{
			return CommonColor.FromCMYK (
				c: c ?? color.C,
				m: m ?? color.M,
				y: y ?? color.Y,
				k: k ?? color.K,
				alpha: alpha ?? color.A);
		}
	}
}