标签:nbsp image 位置 pen imp apt 验证 col 坐标
对两张图片的像素点做比较,当不同的时候返回当前点位
from PIL import Image img = Image.open(‘captcha1.png‘) img2 = Image.open(‘captcha2.png‘) print(img.size)#(258, 159) print(img2.size)#(258, 159) for i in range(60,img.size[0]):#刨除拖动位置的坐标 for j in range(img.size[1]): if abs(img.load()[i,j][0]-img2.load()[i,j][0]) >60 and abs(img.load()[i,j][1]-img2.load()[i,j][1]) >60 and abs(img.load()[i,j][2]-img2.load()[i,j][2]) >60: print(i,j) x = i#需要偏移的距离 break
标签:nbsp image 位置 pen imp apt 验证 col 坐标
原文地址:https://www.cnblogs.com/blackball9/p/11982167.html