diff options
Diffstat (limited to 'dmagick/c/colorspace.d')
| -rw-r--r-- | dmagick/c/colorspace.d | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/dmagick/c/colorspace.d b/dmagick/c/colorspace.d index e9e4fb7..b5519cc 100644 --- a/dmagick/c/colorspace.d +++ b/dmagick/c/colorspace.d @@ -204,9 +204,19 @@ extern(C) * values derived from the tristimulus values X, Y and Z in the CIE XYZ * color space. */ - xyYColorspace + xyYColorspace, + + /** + * A linear version ofGRAYColorspace. + */ + LinearGRAYColorspace } + static if ( MagickLibVersion >= 0x699 ) + { + ColorspaceType GetImageColorspaceType(const(Image)* ,ExceptionInfo*); + } + MagickBooleanType RGBTransformImage(Image*, const ColorspaceType); MagickBooleanType SetImageColorspace(Image*, const ColorspaceType); |
