From: anthony Date: Wed, 19 May 2010 04:08:43 +0000 (+0000) Subject: bug fix, missed scaling for Correlate X-Git-Tag: 7.0.1-0~9430 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f71ca294b7a21e80549dab84941ab149f7cdb300;p=imagemagick bug fix, missed scaling for Correlate --- diff --git a/magick/morphology.c b/magick/morphology.c index fad4fc65a..ddf34053c 100644 --- a/magick/morphology.c +++ b/magick/morphology.c @@ -2862,7 +2862,7 @@ MagickExport Image *MorphologyImageChannel(const Image *image, * users can see the results of the 'option:convolve:scale' option. */ curr_kernel = (KernelInfo *) kernel; - if ( method == ConvolveMorphology ) + if ( method == ConvolveMorphology || method == CorrelateMorphology ) { artifact = GetImageArtifact(image,"convolve:scale"); if ( artifact != (char *)NULL ) {