Method: VIPS::Header#y_size

Defined in:
ext/header.c

#y_sizeNumeric

Get the height in pixels of the image.

Returns:

  • (Numeric)


70
71
72
73
74
75
76
77
78
79
# File 'ext/header.c', line 70

static VALUE
header_y_size(VALUE obj)
{
	GetImg(obj, data, im);

    if (im)
        return INT2FIX(im->Ysize);

    return Qnil;
}