Method: Magick::Image#iterations
- Defined in:
- ext/RMagick/rmimage.cpp
#iterations ⇒ Object
These are undocumented methods. The writer is called only by Image#iterations=. The reader is only used by the unit tests!
8471 8472 8473 8474 8475 |
# File 'ext/RMagick/rmimage.cpp', line 8471
VALUE
Image_iterations(VALUE self)
{
IMPLEMENT_TYPED_ATTR_READER(Image, iterations, int, &rm_image_data_type);
}
|