Method: Magick::Image#blur_image

Defined in:
ext/RMagick/rmimage.cpp

#blur_image(radius = 0.0, sigma = 1.0) ⇒ Magick::Image

Blur the image.

Returns a new image.

Parameters:

  • radius (Numeric) (defaults to: 0.0)

    the radius value

  • sigma (Numeric) (defaults to: 1.0)

    the sigma value

Returns:



2087
2088
2089
2090
2091
# File 'ext/RMagick/rmimage.cpp', line 2087

VALUE
Image_blur_image(int argc, VALUE *argv, VALUE self)
{
    return effect_image(self, argc, argv, GVL_FUNC(BlurImage));
}