How can we compare two QImages ?
I have 2 QImage
s as below with some actual data in it:
QImage image_1;
QImage image_2;
If I do a if(image_1 == image_2)
& this returns true
then does it mean the that the 2 QImage
s are pixel to pixel same?
Or does it mean that they are equal in sizes?
Or does it mean something completely different?
Note:
My requirement is to confirm that the QImage
s are pixel to pixel same.
Please suggest if there is a way to do that kindo of comparasion.