Method: Magick::Image#crop!
- Defined in:
- ext/RMagick/rmimage.cpp
#crop!(x, y, width, height, reset = false) ⇒ Magick::Image #crop!(gravity, width, height, reset = false) ⇒ Magick::Image #crop!(gravity, x, y, width, height, reset = false) ⇒ Magick::Image
Extract a region of the image defined by width, height, x, y. In-place form of #crop.
5071 5072 5073 5074 5075 5076 |
# File 'ext/RMagick/rmimage.cpp', line 5071
VALUE
Image_crop_bang(int argc, VALUE *argv, VALUE self)
{
rm_check_frozen(self);
return cropper(True, argc, argv, self);
}
|