Class: AsyncVips::Image
- Inherits:
-
Object
- Object
- AsyncVips::Image
- Defined in:
- ext/image.c
Instance Method Summary collapse
-
#dst ⇒ Object
Get the destination parameter.
-
#error ⇒ Object
Get the error parameter.
-
#height ⇒ Object
Get the image height.
-
#size ⇒ Object
Get the size of the dst-image file.
-
#src ⇒ Object
Get the source parameter.
-
#width ⇒ Object
Get the image width.
Instance Method Details
#dst ⇒ Object
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");
}
|
#error ⇒ Object
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");
}
|
#height ⇒ Object
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");
}
|
#size ⇒ Object
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");
}
|
#src ⇒ Object
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");
}
|
#width ⇒ Object
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");
}
|