]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 8 Mar 2011 20:41:53 +0000 (20:41 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 8 Mar 2011 20:41:53 +0000 (20:41 +0000)
ChangeLog
magick/effect.c

index 0e7174d17b7ea117e1cfe7181c95dfcd90d732c8..7b296ecd1248f66de1bea60878f09141b492b15a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,6 +11,8 @@
 
 2011-03-06  6.6.8-2 Cristy  <quetzlzacatenango@image...>
   * Support the Radiance HDR image format.
+  * Update the offset in the black channel when sharpening to avoid incorrect
+    results.
 
 2011-03-06  6.6.8-1 Cristy  <quetzlzacatenango@image...>
   * New version 6.6.8-1.
index e80a3eac323ed57d61da43c8484c9e380d6ea490..52a33e9f3b4e5c36918251412c11a6902f283965 100644 (file)
@@ -1055,6 +1055,7 @@ MagickExport Image *BlurImageChannel(const Image *image,
                 GetIndexPixelComponent(&pixel));
             }
         }
+      indexes++;
       p++;
       q++;
     }
@@ -1234,6 +1235,7 @@ MagickExport Image *BlurImageChannel(const Image *image,
                 GetIndexPixelComponent(&pixel));
             }
         }
+      indexes++;
       p++;
       q++;
     }
@@ -1600,6 +1602,7 @@ MagickExport Image *ConvolveImageChannel(const Image *image,
                 GetIndexPixelComponent(&pixel));
             }
         }
+      indexes++;
       p++;
       q++;
     }
@@ -2400,6 +2403,7 @@ MagickExport Image *FilterImageChannel(const Image *image,
                 GetIndexPixelComponent(&pixel));
             }
         }
+      indexes++;
       p++;
       q++;
     }
@@ -4965,6 +4969,7 @@ MagickExport Image *SelectiveBlurImageChannel(const Image *image,
                 }
             }
         }
+      indexes++;
       p++;
       q++;
     }