Method: Magick::Image#thumbnail!
- Defined in:
- ext/RMagick/rmimage.cpp
#thumbnail!(scale) ⇒ Magick::Image #thumbnail!(cols, rows) ⇒ Magick::Image
The thumbnail method is a fast resizing method suitable for use when the size of the resulting image is < 10% of the original. In-place form of #thumbnail.
14381 14382 14383 14384 14385 14386 |
# File 'ext/RMagick/rmimage.cpp', line 14381
VALUE
Image_thumbnail_bang(int argc, VALUE *argv, VALUE self)
{
rm_check_frozen(self);
return thumbnail(True, argc, argv, self);
}
|