Method: Magick::Image#trim!
- Defined in:
- ext/RMagick/rmimage.cpp
#trim!(reset = false) ⇒ Magick::Image
Removes the edges that are exactly the same color as the corner pixels. Use the fuzz attribute to make trim remove edges that are nearly the same color as the corner pixels.
15003 15004 15005 15006 15007 15008 |
# File 'ext/RMagick/rmimage.cpp', line 15003
VALUE
Image_trim_bang(int argc, VALUE *argv, VALUE self)
{
rm_check_frozen(self);
return trimmer(True, argc, argv, self);
}
|