Is there a better way than examine them pixel by pixel?
feedback
|
|
You can save both Bitmaps to TMemoryStream and compare using CompareMem:
I did not benchmark this code X scanline, if you do, please let us know which one is the fastest. | |||||||||||||||
feedback
|
|
Using ScanLine, Without TMemoryStream.
Bye. | |||||||||
feedback
|
|
If you need an accurate answer, no. If you need an approximation, you probably could check a selection of pixels. But if you want to find out if the two bitmaps are exactly identical you need to compare the entire pixel and pixel format data. | |||
|
feedback
|
|
I don't know, write it to file, hash it then compare the hashes? | |||||||||||||||||
feedback
|