Method: VIPS::Header#icc?

Defined in:
ext/header.c

#icc?Boolean

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

Returns:

  • (Boolean)


359
360
361
362
363
# File 'ext/header.c', line 359

static VALUE
header_icc_p(VALUE obj)
{
    return header_meta_p(obj, IM_META_ICC_NAME);
}