summaryrefslogtreecommitdiff
path: root/dmagick/c/property.d
blob: 90ffd9f5d8ffceb3e664c56e87771688d178da28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module dmagick.c.property;

import dmagick.c.image;
import dmagick.c.magickType;

extern(C)
{
	char* GetNextImageProperty(const(Image)*);
	char* InterpretImageProperties(const(ImageInfo)*, Image*, const(char)*);
	char* RemoveImageProperty(Image*, const(char)*);

	const(char)* GetImageProperty(const(Image)*, const(char)*);
	const(char)* GetMagickProperty(const(ImageInfo)*, Image*, const(char)*);

	MagickBooleanType CloneImageProperties(Image*, const(Image)*);
	MagickBooleanType DefineImageProperty(Image*, const(char)*);
	MagickBooleanType DeleteImageProperty(Image*, const(char)*);
	MagickBooleanType FormatImageProperty(Image*, const(char)*, const(char)*, ...);
	MagickBooleanType SetImageProperty(Image*, const(char)*, const(char)*);

	void DestroyImageProperties(Image*);
	void ResetImagePropertyIterator(const(Image)*);
}