Method: Magick::Image#flip!

Defined in:
ext/RMagick/rmimage.cpp

#flip!Magick::Image

Create a vertical mirror image by reflecting the pixels around the central x-axis. In-place form of #flip.

Returns:

See Also:



7096
7097
7098
7099
7100
7101
# File 'ext/RMagick/rmimage.cpp', line 7096

VALUE
Image_flip_bang(VALUE self)
{
    rm_check_frozen(self);
    return flipflop(True, self, GVL_FUNC(FlipImage));
}