Method: VIPS::Header#exif?

Defined in:
ext/header.c

#exif?Boolean

Indicates whether the image has an exif header attached to it.

Returns:

  • (Boolean)

333
334
335
336
337
# File 'ext/header.c', line 333

static VALUE
header_exif_p(VALUE obj)
{
    return header_meta_p(obj, IM_META_EXIF_NAME);
}