Method: Magick::Image.ping
- Defined in:
- ext/RMagick/rmimage.c
permalink .ping(file_arg) ⇒ Object
Call ImagePing.
Ruby usage:
- @verbatim Image.ping(file) @endverbatim
9740 9741 9742 9743 9744 |
# File 'ext/RMagick/rmimage.c', line 9740
VALUE
Image_ping(VALUE class, VALUE file_arg)
{
return rd_image(class, file_arg, PingImage);
}
|