Method: Magick::Image#copy
- Defined in:
- ext/RMagick/rmimage.c
#copy ⇒ Object
Alias for dup.
Ruby usage:
- @verbatim Image#copy @endverbatim
4210 4211 4212 4213 4214 |
# File 'ext/RMagick/rmimage.c', line 4210
VALUE
Image_copy(VALUE self)
{
return rb_funcall(self, rm_ID_dup, 0);
}
|