diff --git a/MagickCore/effect.c b/MagickCore/effect.c
index dace1f1..aaa9325 100644
--- a/MagickCore/effect.c
+++ b/MagickCore/effect.c
@@ -2832,7 +2832,7 @@
% The format of the RadialBlurImage method is:
%
% Image *RadialBlurImage(const Image *image,const double angle,
-% ExceptionInfo *exception)
+% const double blur,ExceptionInfo *exception)
%
% A description of each parameter follows:
%
@@ -2840,11 +2840,13 @@
%
% o angle: the angle of the radial blur.
%
+% o blur: the blur.
+%
% o exception: return any errors or warnings in this structure.
%
*/
MagickExport Image *RadialBlurImage(const Image *image,
- const double angle,ExceptionInfo *exception)
+ const double angle,const double bias,ExceptionInfo *exception)
{
CacheView
*blur_view,
@@ -2859,9 +2861,6 @@
MagickOffsetType
progress;
- PixelInfo
- bias;
-
MagickRealType
blur_radius,
*cos_theta,
@@ -2924,7 +2923,6 @@
*/
status=MagickTrue;
progress=0;
- GetPixelInfo(image,&bias);
image_view=AcquireCacheView(image);
blur_view=AcquireCacheView(blur_image);
#if defined(MAGICKCORE_OPENMP_SUPPORT)
@@ -2983,7 +2981,11 @@
step=n-1;
}
normalize=0.0;
- qixel=bias;
+ qixel.red=bias;
+ qixel.green=bias;
+ qixel.blue=bias;
+ qixel.black=bias;
+ qixel.alpha=bias;
if (((GetPixelAlphaTraits(image) & UpdatePixelTrait) == 0) ||
(image->matte == MagickFalse))
{