summaryrefslogtreecommitdiff
path: root/dmagick/Color.d
blob: e7fa69070ccb4d2c7d637aaca1b9385bee022266 (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
/**
 * Copyright: Mike Wey 2011
 * License:   To be determined
 * Authors:   Mike Wey
 */

module dmagick.Color;

import std.string;

import dmagick.Exception;
import dmagick.Utils;

import dmagick.c.color;
import dmagick.c.exception;
import dmagick.c.pixel;
import dmagick.c.magickType;

/**
 * A container for the pixel values: red, green, blue and opacity.
 */
class Color
{
	PixelPacket* pixelPacket;

	/** */
	this()
	{
		pixelPacket = new PixelPacket;

		pixelPacket.opacity = TransparentOpacity;
	}

	/**
	 * Create a Color from the specified Quantums.
	 */
	this(Quantum red, Quantum green, Quantum blue)
	{
		this(red, green, blue, 0);
	}

	/**
	 * ditto
	 */
	this(Quantum red, Quantum green, Quantum blue, Quantum opacity)
	{
		this();

		pixelPacket.red     = red;
		pixelPacket.green   = green;
		pixelPacket.blue    = blue;
		pixelPacket.opacity = opacity;
	}

	/**
	 * Create a Color from a X11 color specification string
	 */
	this(string color)
	{
		this();

		ExceptionInfo* exception = AcquireExceptionInfo();
		const(char)* name = toStringz(color);

		QueryColorDatabase(name, pixelPacket, exception);
		DMagickException.throwException(exception);

		DestroyExceptionInfo(exception);
	}

	/**
	 * Create a Color from this PixelPacket.
	 */
	this(PixelPacket packet)
	{
		this();

		pixelPacket.red     = packet.red;
		pixelPacket.green   = packet.green;
		pixelPacket.blue    = packet.blue;
		pixelPacket.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)
	{
		pixelPacket = packet;
	}

	bool opEquals(Color color)
	{
		return *pixelPacket == *(color.pixelPacket);
	}

	override string toString()
	{
		//TODO

		return "none";
	}

	/**
	 * Create a copy of this Color.
	 */
	Color clone()
	{
		return new Color(*pixelPacket);
	}
}