Method: Magick::Image#blur_image
- Defined in:
- ext/RMagick/rmimage.cpp
#blur_image(radius = 0.0, sigma = 1.0) ⇒ Magick::Image
Blur the image.
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));
}
|