ColorMatrix Constructors

Definition

Overloads

ColorMatrix()

Create a new colormatrix initialized to identity (as if reset() had been called).

ColorMatrix(ColorMatrix)

Create a new colormatrix initialized with the specified colormatrix.

ColorMatrix(Single[])

Create a new colormatrix initialized with the specified array of values.

ColorMatrix(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

ColorMatrix()

Create a new colormatrix initialized to identity (as if reset() had been called).

[Android.Runtime.Register(".ctor", "()V", "")]
public ColorMatrix ();
Attributes

Remarks

Create a new colormatrix initialized to identity (as if reset() had been called).

Java documentation for android.graphics.ColorMatrix.ColorMatrix().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ColorMatrix(ColorMatrix)

Create a new colormatrix initialized with the specified colormatrix.

[Android.Runtime.Register(".ctor", "(Landroid/graphics/ColorMatrix;)V", "")]
public ColorMatrix (Android.Graphics.ColorMatrix? src);
[<Android.Runtime.Register(".ctor", "(Landroid/graphics/ColorMatrix;)V", "")>]
new Android.Graphics.ColorMatrix : Android.Graphics.ColorMatrix -> Android.Graphics.ColorMatrix

Parameters

Attributes

Remarks

Create a new colormatrix initialized with the specified colormatrix.

Java documentation for android.graphics.ColorMatrix.ColorMatrix(android.graphics.ColorMatrix).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ColorMatrix(Single[])

Create a new colormatrix initialized with the specified array of values.

[Android.Runtime.Register(".ctor", "([F)V", "")]
public ColorMatrix (float[]? src);
[<Android.Runtime.Register(".ctor", "([F)V", "")>]
new Android.Graphics.ColorMatrix : single[] -> Android.Graphics.ColorMatrix

Parameters

src
Single[]
Attributes

Remarks

Create a new colormatrix initialized with the specified array of values.

Java documentation for android.graphics.ColorMatrix.ColorMatrix(float[]).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ColorMatrix(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected ColorMatrix (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Graphics.ColorMatrix : nativeint * Android.Runtime.JniHandleOwnership -> Android.Graphics.ColorMatrix

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to