Method: Magick::Image#x_resolution

Defined in:
ext/RMagick/rmimage.cpp

#x_resolutionFloat

Get the horizontal resolution of the image.

Returns:

  • (Float)

    the resolution



16035
16036
16037
16038
16039
# File 'ext/RMagick/rmimage.cpp', line 16035

VALUE
Image_x_resolution(VALUE self)
{
    IMPLEMENT_TYPED_ATTR_READER(Image, x_resolution, dbl, &rm_image_data_type);
}