Method: VIPS::Header#band_fmt
- Defined in:
- ext/header.c
#band_fmt ⇒ Object
Get the band format of the image.
106 107 108 109 110 111 112 113 114 115 |
# File 'ext/header.c', line 106
static VALUE
header_band_fmt(VALUE obj)
{
GetImg(obj, data, im);
if (im)
return ID2SYM(header_band_fmt_to_id(im->BandFmt));
return Qnil;
}
|