From: cristy Date: Fri, 2 Apr 2010 20:52:34 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~9707 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=523bec71cbe4db751e38feea1c9bf5ab8ea3cebc;p=imagemagick --- diff --git a/Magick++/lib/Magick++/Image.h b/Magick++/lib/Magick++/Image.h index 21a2d398c..047d092f0 100644 --- a/Magick++/lib/Magick++/Image.h +++ b/Magick++/lib/Magick++/Image.h @@ -861,6 +861,11 @@ namespace Magick void colorMapSize ( const unsigned int entries_ ); unsigned int colorMapSize ( void ); + // Apply a color matrix to the image channels. The user supplied + // matrix may be of order 1 to 5 (1x1 through 5x5). + void colorMatrix (const unsigned int order_, + const double *color_matrix_); + // Image Color Space void colorSpace ( const ColorspaceType colorSpace_ ); ColorspaceType colorSpace ( void ) const; @@ -1117,11 +1122,6 @@ typedef struct _ImageStatistics void quantizeTreeDepth ( const unsigned int treeDepth_ ); unsigned int quantizeTreeDepth ( void ) const; - // Apply a color matrix to the image channels. The user supplied - // matrix may be of order 1 to 5 (1x1 through 5x5). - void recolor (const unsigned int order_, - const double *color_matrix_); - // The type of rendering intent void renderingIntent ( const RenderingIntent renderingIntent_ ); RenderingIntent renderingIntent ( void ) const;