Method: Magick::Image.ping
- Defined in:
- ext/RMagick/rmimage.cpp
.ping(file_arg) {|info| ... } ⇒ Array<Magick::Image>
Returns all the properties of an image or image sequence except for the pixels.
10576 10577 10578 10579 10580 |
# File 'ext/RMagick/rmimage.cpp', line 10576
VALUE
Image_ping(VALUE klass, VALUE file_arg)
{
return rd_image(klass, file_arg, GVL_FUNC(PingImage));
}
|