Method: Magick::Image#x_resolution
- Defined in:
- ext/RMagick/rmimage.cpp
#x_resolution ⇒ Float
Get the horizontal resolution of the image.
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);
}
|