Method: Magick::Image#flop!
- Defined in:
- ext/RMagick/rmimage.cpp
#flop! ⇒ Magick::Image
Create a horizonal mirror image by reflecting the pixels around the central y-axis. In-place form of #flop.
7129 7130 7131 7132 7133 7134 |
# File 'ext/RMagick/rmimage.cpp', line 7129
VALUE
Image_flop_bang(VALUE self)
{
rm_check_frozen(self);
return flipflop(True, self, GVL_FUNC(FlopImage));
}
|