Method: Magick::Image#transpose
- Defined in:
- ext/RMagick/rmimage.cpp
#transpose ⇒ Magick::Image
Creates a horizontal mirror image by reflecting the pixels around the central y-axis while rotating them by 90 degrees.
14857 14858 14859 14860 14861 14862 |
# File 'ext/RMagick/rmimage.cpp', line 14857
VALUE
Image_transpose(VALUE self)
{
rm_check_destroyed(self);
return crisscross(False, self, GVL_FUNC(TransposeImage));
}
|