Method: Magick::Image#y_resolution=
- Defined in:
- ext/RMagick/rmimage.cpp
#y_resolution=(val) ⇒ Numeric
Set the vertical resolution of the image.
16070 16071 16072 16073 16074 |
# File 'ext/RMagick/rmimage.cpp', line 16070
VALUE
Image_y_resolution_eq(VALUE self, VALUE val)
{
IMPLEMENT_TYPED_ATTR_WRITER(Image, y_resolution, dbl, &rm_image_data_type);
}
|