Method: Magick::Image#montage
- Defined in:
- ext/RMagick/rmimage.cpp
#montage ⇒ String?
Tile size and offset within an image montage. Only valid for montage images.
9645 9646 9647 9648 9649 |
# File 'ext/RMagick/rmimage.cpp', line 9645
VALUE
Image_montage(VALUE self)
{
IMPLEMENT_TYPED_ATTR_READER(Image, montage, str, &rm_image_data_type);
}
|