程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

python 識別平台驗證碼

編輯:Python
#coding=utf-8
from
 PIL import Image
import pytesseract
from
 selenium import webdriver
url=
'http://192.168.0.178:8080/WebGis/'
driver = webdriver.Chrome(
'chromedriver.exe'
)
driver.maximize_window() 
#將浏覽器最大化,以獲取更清晰的校驗碼圖片
driver.
get
(url)
driver.save_screenshot(
'f://gps.png'
) 
#截取當前網頁,該網頁有我們需要的驗證碼
imgelement = driver.find_element_by_id(
'verifyCodeImg'
) 
#通過id定位驗證碼
location = imgelement.location 
#獲取驗證碼的x,y軸
size = imgelement.size  
#獲取驗證碼的長寬
rangle=(
int
(location[
'x'
]),         
int
(location[
'y'
]),         
int
(location[
'x'
]+size[
'width'
]),         
int
(location[
'y'
]+size[
'height'
])) 
#寫成我們需要截取的位置坐標
i=Image.open(
'f:gps.png'
) 
#打開截圖
verifycodeimage=i.crop(rangle)   
#使用Image的crop函數,從截圖中再次截取我們需要的區域
verifycodeimage.save(
'f://verifycodeimage.png'
)
image=Image.open(
'f:verifycodeimage.png'
)
#print image
vcode=pytesseract.image_to_string(image).strip() 
#使用image_to_string識別驗證碼
print vcode

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved