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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
/**
* Copyright: Mike Wey 2011
* License: zlib (See accompanying LICENSE file)
* Authors: Mike Wey
*/
module dmagick.Color;
import std.conv;
import std.string;
import dmagick.Exception;
import dmagick.Utils;
import dmagick.c.color;
import dmagick.c.magickType;
import dmagick.c.pixel;
import dmagick.c.quantum;
/**
* A container for the pixel values: red, green, blue and opacity.
*/
class Color
{
PixelPacket* packet;
/** */
this()
{
packet = new PixelPacket;
packet.opacity = OpaqueOpacity;
}
/**
* Create a Color from the specified Quantums.
*/
this(Quantum red, Quantum green, Quantum blue, Quantum opacity = OpaqueOpacity)
{
this();
packet.red = red;
packet.green = green;
packet.blue = blue;
packet.opacity = opacity;
}
/**
* Create a Color from a X11 color specification string
*/
this(string color)
{
this();
const(char)* name = toStringz(color);
QueryColorDatabase(name, packet, DMagickExceptionInfo());
}
/**
* Create a Color from this PixelPacket.
*/
this(PixelPacket packet)
{
this();
this.packet.red = packet.red;
this.packet.green = packet.green;
this.packet.blue = packet.blue;
this.packet.opacity = packet.opacity;
}
/**
* Create a Color and set the internal pointer to this PixelPacket.
* We can use this to change pixels in an image through Color.
*/
this(PixelPacket* packet)
{
this.packet = packet;
}
package PixelPacket pixelPacket() const
{
return *packet;
}
package void pixelPacket(PixelPacket packet)
{
this.packet.red = packet.red;
this.packet.green = packet.green;
this.packet.blue = packet.blue;
this.packet.opacity = packet.opacity;
}
override bool opEquals(Object obj)
{
Color color = cast(Color)obj;
if ( color is null )
return false;
return pixelPacket == color.pixelPacket;
}
override string toString()
{
static if ( MagickQuantumDepth == 8 )
string frm = "%02X";
else static if ( MagickQuantumDepth == 16 )
string frm = "%04X";
else
string frm = "%08X";
if ( packet.opacity == OpaqueOpacity )
return format("#"~frm~frm~frm, packet.red, packet.green, packet.blue);
else
return format("#"~frm~frm~frm~frm, packet.red, packet.green, packet.blue, packet.opacity);
}
unittest
{
Color color = new Color("blue");
static if ( MagickQuantumDepth == 8 )
assert(color.toString() == "#0000FF");
else static if ( MagickQuantumDepth == 16 )
assert(color.toString() == "#00000000FFFF");
else
assert(color.toString() == "#0000000000000000FFFFFFFF");
}
/**
* Support casting between different colors.
* You can also use std.conv.to
*/
T opCast(T : Color)()
{
T color = new T();
color.packet = packet;
return color;
}
/**
* The value for red in the range [0 .. QuantumRange]
*/
void redQuantum(Quantum red)
{
packet.red = red;
}
///ditto
Quantum redQuantum()
{
return packet.red;
}
/**
* The value for green in the range [0 .. QuantumRange]
*/
void greenQuantum(Quantum green)
{
packet.green = green;
}
///ditto
Quantum greenQuantum()
{
return packet.green;
}
/**
* The value for blue in the range [0 .. QuantumRange]
*/
void blueQuantum(Quantum blue)
{
packet.blue = blue;
}
///ditto
Quantum blueQuantum()
{
return packet.blue;
}
/**
* The opacity as a byte. [0 .. 255]
*/
void opacityByte(ubyte opacity)
{
packet.opacity = ScaleCharToQuantum(opacity);
}
///ditto
ubyte opacityByte()
{
return ScaleQuantumToChar(packet.opacity);
}
/**
* The value for opacity in the range [0 .. QuantumRange]
*/
void opacityQuantum(Quantum opacity)
{
packet.opacity = opacity;
}
///ditto
Quantum opacityQuantum()
{
return packet.opacity;
}
/**
* The value for opacity as a double in the range [0.0 .. 1.0]
*/
void opacity(double opacity)
{
packet.opacity = scaleDoubleToQuantum(opacity);
}
///ditto
double opacity()
{
return scaleQuantumToDouble(packet.opacity);
}
/**
* The intensity of this color.
*/
double intensity()
{
//The Constants used here are derived from BT.709 Which standardizes HDTV
return scaleQuantumToDouble(cast(Quantum)(
0.2126*packet.red+0.7152*packet.green+0.0722*packet.blue));
}
/**
* Create a copy of this Color.
*/
Color clone()
{
return new Color(pixelPacket);
}
/**
* Returns the name of the color or the value as a hex string.
*/
string name()
{
size_t numberOfColors;
const(ColorInfo)** colorList;
const(char)* pattern = toStringz("*");
colorList = GetColorInfoList(pattern, &numberOfColors, DMagickExceptionInfo());
for ( int i = 0; i < numberOfColors; i++ )
{
if ( colorList[i].compliance == ComplianceType.UndefinedCompliance )
continue;
MagickPixelPacket color = colorList[i].color;
if ( packet.red == color.red && packet.green == color.green
&& packet.blue == color.blue && packet.opacity == color.opacity )
return to!(string)(colorList[i].name);
}
return toString();
}
unittest
{
Color color = new Color("red");
assert( color.name == "red" );
}
static Quantum scaleDoubleToQuantum(double value)
{
return cast(Quantum)(value*QuantumRange);
}
static double scaleQuantumToDouble(Quantum value)
{
return (cast(double)value)/QuantumRange;
}
}
|