summaryrefslogtreecommitdiff
path: root/dmagick/c/colorspace.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/colorspace.d')
-rw-r--r--dmagick/c/colorspace.d20
1 files changed, 19 insertions, 1 deletions
diff --git a/dmagick/c/colorspace.d b/dmagick/c/colorspace.d
index 00c6240..05051e1 100644
--- a/dmagick/c/colorspace.d
+++ b/dmagick/c/colorspace.d
@@ -165,7 +165,25 @@ extern(C)
* of cones of the human eye, named after their responsivity
* (sensitivity) at long, medium and short wavelengths.
*/
- LMSColorspace
+ LMSColorspace,
+
+ /**
+ * CIE 1976 cylindrical version of Lab.
+ */
+ LCHabColorspace,
+
+ /**
+ * CIE 1976 cylindrical version of Luv
+ */
+ LCHuvColorspace,
+
+ /**
+ * scRGB is a wide color gamut RGB (Red Green Blue) color space
+ * created by Microsoft and HP that uses the same color primaries
+ * and white/black points as the sRGB color space but allows
+ * coordinates below zero and greater than one.
+ */
+ scRGBColorspace
}
MagickBooleanType RGBTransformImage(Image*, const ColorspaceType);