Method: Magick::Image#y_resolution
- Defined in:
- ext/RMagick/rmimage.cpp
#y_resolution ⇒ Float
Get the vertical resolution of the image.
16058 16059 16060 16061 16062 |
# File 'ext/RMagick/rmimage.cpp', line 16058
VALUE
Image_y_resolution(VALUE self)
{
IMPLEMENT_TYPED_ATTR_READER(Image, y_resolution, dbl, &rm_image_data_type);
}
|