Method: Magick::Image#orientation

Defined in:
ext/RMagick/rmimage.cpp

#orientationMagick::OrientationType

Get the value of the Exif Orientation Tag.

Returns:

  • (Magick::OrientationType)

    the orientation



10403
10404
10405
10406
10407
10408
# File 'ext/RMagick/rmimage.cpp', line 10403

VALUE
Image_orientation(VALUE self)
{
    Image *image = rm_check_destroyed(self);
    return OrientationType_find(image->orientation);
}