Method: Vips::Image#^

Defined in:
lib/vips8/image.rb

#^(other) ⇒ Image

Integer bitwise EOR with an image, constant or array.

Parameters:

  • other (Image, Real, Array<Real>)

    bitwise EOR with this

Returns:

  • (Image)

    result of bitwise EOR

[View source]

817
818
819
820
# File 'lib/vips8/image.rb', line 817

def ^(other)
    other.is_a?(Vips::Image) ? 
        boolean(other, :eor) : boolean_const(other, :eor)
end