Equals

TgaImage.Equals method (1 of 2)

In an equality comparison, the method evaluates whether the current TgaImage instance is equal to the second image provided as a parameter. This operation facilitates determining if two TGA images are identical, aiding in image processing and comparison tasks.

public bool Equals(TgaImage other)
ParameterTypeDescription
otherTgaImageSecond TgaImage that takes part in comparison.

Return Value

Comparison results.

See Also


TgaImage.Equals method (2 of 2)

The method performs an equality comparison between the current TgaImage instance and another object provided as a parameter. Specifically, it evaluates whether the properties of the current image match those of the second object, assisting in determining their equivalence for comparison purposes within image processing workflows.

public override bool Equals(object other)
ParameterTypeDescription
otherObjectSecond TgaImage that takes part in comparison.

Return Value

Comparison results.

See Also