Method: VIPS::Header#exif
- Defined in:
- ext/header.c
#exif ⇒ String
Returns a binary string containing the raw exif header data.
320 321 322 323 324 |
# File 'ext/header.c', line 320
static VALUE
header_exif(VALUE obj)
{
return header_meta_get(obj, IM_META_EXIF_NAME);
}
|