Class: AsyncVips::Image

Inherits:
Object
  • Object
show all
Defined in:
ext/image.c

Instance Method Summary collapse

Instance Method Details

#dstObject

Get the destination parameter



15
16
17
18
# File 'ext/image.c', line 15

static VALUE av_image_dst(VALUE self)
{
    return rb_iv_get(self, "@dst");
}

#errorObject

Get the error parameter



21
22
23
24
# File 'ext/image.c', line 21

static VALUE av_image_error(VALUE self)
{
    return rb_iv_get(self, "@error");
}

#heightObject

Get the image height



33
34
35
36
# File 'ext/image.c', line 33

static VALUE av_image_height(VALUE self)
{
    return rb_iv_get(self, "@height");
}

#sizeObject

Get the size of the dst-image file



39
40
41
42
# File 'ext/image.c', line 39

static VALUE av_image_size(VALUE self)
{
    return rb_iv_get(self, "@size");
}

#srcObject

Get the source parameter



9
10
11
12
# File 'ext/image.c', line 9

static VALUE av_image_src(VALUE self)
{
    return rb_iv_get(self, "@src");
}

#widthObject

Get the image width



27
28
29
30
# File 'ext/image.c', line 27

static VALUE av_image_width(VALUE self)
{
    return rb_iv_get(self, "@width");
}