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.
7112 7113 7114 7115 7116 7117 |
# File 'ext/RMagick/rmimage.cpp', line 7112
VALUE
Image_flop(VALUE self)
{
rm_check_destroyed(self);
return flipflop(False, self, GVL_FUNC(FlopImage));
}
|