Search found 2 matches

by samiejg
2014-02-11T11:15:21-07:00
Forum: Users
Topic: Is it possible to use ImageMagick to find duplicate images?
Replies: 5
Views: 11440

Re: Is it possible to use ImageMagick to find duplicate imag

For identical images, you'll get the same signature:

identify -verbose kitten.png kitten2.png | grep signature
signature: 5c701306a9a985a0c93c8d11a1e761d7f863757
signature: 5c701306a9a985a0c93c8d11a1e761d7f863757
Use -metric PHASH if you want to identify images that are similar or are the same ...
by samiejg
2014-02-11T10:45:02-07:00
Forum: Users
Topic: Is it possible to use ImageMagick to find duplicate images?
Replies: 5
Views: 11440

Is it possible to use ImageMagick to find duplicate images?

Like say for example if I had two files name kitten1.jpg and kitten2.jpg, and they were exactly the same image. is there anything with ImageMagick that will allow me to see if they are the same image?

I'm looking to make a PHP script that uses an "If statement" for if the image is a duplicate.