AutoIt - Find duplicate images by content?
问题 I am looking for a way to find duplicate images using AutoIt. I've looked into PixelSearch and SearchImage but neither do exactly what I need them to do. I am trying to compare 2 images by filename and see if they are the same image (a duplicate). The best way I've thought to do it would be to: 1) Get both image sizes in pixels 2) Use a while loop to get the color of each pixel and store it in an array 3) Check to see if both arrays are equal to each other. Does anybody have any ideas on how