I need to compare two buffered images to see if they are the exact same. Simply saying if that equals that doesn't work. My current method is
{
Raster var1 = Img1.getData();
Raster var2 = Img2.getData();
int Data1 = (var1.getDataBuffer()).getSize();
int Data2 = (var2.getDataBuffer()).getSize();
if (Data1 == Data2)
{
return true;
}
else
{
return false;
}
}
But that doesn't really work. What other more reliable way is there?