blob: 5896260550e922418a6c9321d7e5a82d16443c1f (
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
|
module dmagick.Options;
import dmagick.c.draw;
import dmagick.c.image;
import dmagick.c.magickType;
import dmagick.c.memory;
import dmagick.c.quantize;
class Options
{
ImageInfo* imageInfo;
QuantizeInfo* quantizeInfo;
DrawInfo* drawInfo;
this()
{
imageInfo = cast(ImageInfo*)AcquireMagickMemory(ImageInfo.sizeof);
quantizeInfo = cast(QuantizeInfo*)AcquireMagickMemory(QuantizeInfo.sizeof);
drawInfo = cast(DrawInfo*)AcquireMagickMemory(DrawInfo.sizeof);
}
this(const(ImageInfo)* imageInfo, const(QuantizeInfo)* quantizeInfo, const(DrawInfo)* drawInfo)
{
this.imageInfo = CloneImageInfo(imageInfo);
this.quantizeInfo = CloneQuantizeInfo(quantizeInfo);
this.drawInfo = CloneDrawInfo(imageInfo, drawInfo);
}
~this()
{
imageInfo = DestroyImageInfo(imageInfo);
quantizeInfo = DestroyQuantizeInfo(quantizeInfo);
drawInfo = DestroyDrawInfo(drawInfo);
}
private void copyString(ref char[MaxTextExtent] field, string str)
{
if ( str.length >= MaxTextExtent )
throw new Exception("text is to long"); //TODO: a proper exception.
field[0 .. str.length] = str;
field[str.length] = '\0';
}
}
|