Is there a better way than examine them pixel by pixel?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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. |
|||||||||||||||
|
|
Using ScanLine, Without TMemoryStream.
Bye. |
|||||||||
|
|
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. |
|||
|
|
|
I don't know, write it to file, hash it then compare the hashes? |
|||||||||||||||||
|