Compare two Images in JavaScript
No, there is no especially easy way to do this. JavaScript was not made for handling low-level operations such as working directly with binary data for, say, image processing. You could use a <canvas> element to base64 encode each image, and then compare the resulting base64 strings, but this will only tell you whether or … Read more