From: dirk Date: Sun, 10 Aug 2014 01:53:55 +0000 (+0000) Subject: Fixed call to PrintChannelPerceptualHash. X-Git-Tag: 7.0.1-0~2112 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb4b9cbc3c15dbeea523fc2373e1e16e598c3e74;p=imagemagick Fixed call to PrintChannelPerceptualHash. --- diff --git a/MagickCore/identify.c b/MagickCore/identify.c index cf7f2e406..9db3d138d 100644 --- a/MagickCore/identify.c +++ b/MagickCore/identify.c @@ -862,14 +862,14 @@ MagickExport MagickBooleanType IdentifyImage(Image *image,FILE *file, if (channel_phash != (ChannelPerceptualHash *) NULL) { (void) FormatLocaleFile(file," Channel perceptual hash:\n"); - (void) PrintChannelPerceptualHash(file,RedChannel,"Red, Hue", + (void) PrintChannelPerceptualHash(file,RedPixelChannel,"Red, Hue", channel_phash); - (void) PrintChannelPerceptualHash(file,GreenChannel,"Green, Chroma", + (void) PrintChannelPerceptualHash(file,GreenPixelChannel,"Green, Chroma", channel_phash); - (void) PrintChannelPerceptualHash(file,BlueChannel,"Blue, Luma", + (void) PrintChannelPerceptualHash(file,BluePixelChannel,"Blue, Luma", channel_phash); if (image->alpha_trait == BlendPixelTrait) - (void) PrintChannelPerceptualHash(file,AlphaChannel,"Alpha, Alpha", + (void) PrintChannelPerceptualHash(file,AlphaPixelChannel,"Alpha, Alpha", channel_phash); channel_phash=(ChannelPerceptualHash *) RelinquishMagickMemory( channel_phash);