Method: Magick::Image#fuzz
- Defined in:
- ext/RMagick/rmimage.cpp
#fuzz ⇒ Float
Get the number of algorithms search for a target color. By default the color must be exact. Use this attribute to match colors that are close to the target color in RGB space.
7421 7422 7423 7424 7425 |
# File 'ext/RMagick/rmimage.cpp', line 7421
VALUE
Image_fuzz(VALUE self)
{
IMPLEMENT_TYPED_ATTR_READER(Image, fuzz, dbl, &rm_image_data_type);
}
|