Method: Vips::Image#method_missing

Defined in:
lib/vips8/image.rb

#method_missing(name, *args) ⇒ Object

Invoke a vips operation with Vips.call, using self as the first input image argument.

Parameters:

  • name (String)

    vips operation to call

Returns:

  • result of vips operation

[View source]

374
375
376
# File 'lib/vips8/image.rb', line 374

def method_missing(name, *args)
    Vips::call_base(name.to_s, self, "", args)
end