溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能

發(fā)布時(shí)間:2020-12-10 15:57:43 來源:億速云 閱讀:232 作者:Leah 欄目:開發(fā)技術(shù)

利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

簡(jiǎn)單的驗(yàn)證碼

(1)、我們?cè)趗rls.py中定義一條路由,如下:

url(r'getcode', views.get_code, name="get_code"),

(2)、我們定義一個(gè)視圖函數(shù)get_code(),如下:

from io import BytesIO

from PIL import Image, ImageDraw, ImageFont
from django.conf import settings
from django.shortcuts import render, HttpResponse, redirect
def get_code(request):
  """
  手?jǐn)]一個(gè)驗(yàn)證碼
  """
  # 定義圖像顏色模型
  mode = "RGB"
  # 定義圖像尺寸
  size = (200, 100)
  # 定義背景色
  bg_color = (255, 0, 0)
  # 創(chuàng)建圖像
  image = Image.new(mode=mode, size=size, color=bg_color)
  # 創(chuàng)建畫布
  image_draw = ImageDraw.Draw(image, mode=mode)
  # 創(chuàng)建字體,第一個(gè)參數(shù)是字體,第二個(gè)參數(shù)是字體大小
  image_font = ImageFont.truetype(settings.FONT_PATH, 100)
  # 創(chuàng)建一個(gè)驗(yàn)證碼
  verify_code = "Joke"
  # 生成驗(yàn)證碼
  fill_color = (255,255,255)
  for i in range(4):
    image_draw.text(xy=(50 * i, 0), text=verify_code[i], font=image_font, fill=fill_color)
  # 保存圖像
  fp = BytesIO()
  image.save(fp, "png")
  return HttpResponse(fp.getvalue(), content_type="image/png")

其中settings.FONT_PATH是我預(yù)先定義好的字段,如下

STATICFILES_DIRS = [  os.path.join(BASE_DIR, "statics"),]
FONT_PATH = os.path.join(os.path.join(STATICFILES_DIRS[0], "fonts"),"constan.ttf")

然后我們我們啟動(dòng)服務(wù)python manager.py runserver,在瀏覽器上就可以看到驗(yàn)證碼生成了

利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能

能是實(shí)現(xiàn)了,但是我們現(xiàn)在是自定義了一個(gè)驗(yàn)證碼字段,我們是需要隨機(jī)生成驗(yàn)證碼,而且字體顏色,背景顏色這些也不要定死了,然后我們?cè)偕梢恍└蓴_點(diǎn),我們對(duì)代碼進(jìn)行如下重構(gòu):

def get_code(request):
  """
  手?jǐn)]一個(gè)驗(yàn)證碼
  """
  # 定義圖像顏色模型
  mode = "RGB"
  # 定義圖像尺寸
  size = (200, 100)
  # 定義背景色
  bg_color = (get_color(), get_color(), get_color())
  # 創(chuàng)建圖像
  image = Image.new(mode=mode, size=size, color=bg_color)
  # 創(chuàng)建畫布
  image_draw = ImageDraw.Draw(image, mode=mode)
  # 創(chuàng)建字體,第一個(gè)參數(shù)是字體,第二個(gè)參數(shù)是字體大小
  image_font = ImageFont.truetype(settings.FONT_PATH, 100)
  # 創(chuàng)建一個(gè)驗(yàn)證碼
  # verify_code = "Joke"
  verify_code = get_verify_code()
  # 生成驗(yàn)證碼
  # fill_color = (255,255,255)
  for i in range(4):
    fill_color = (get_color(),get_color(),get_color())
    image_draw.text(xy=(50 * i, 0), text=verify_code[i], font=image_font, fill=fill_color)
  # 加入干擾點(diǎn)
  for i in range(10000):
    fill_color = (get_color(),get_color(),get_color())
    xy = (random.randrange(200), random.randrange(100))
    image_draw.point(xy=xy,fill=fill_color)
  # 保存圖像
  fp = BytesIO()
  image.save(fp, "png")
  return HttpResponse(fp.getvalue(), content_type="image/png")


def get_color():
  """隨機(jī)獲取顏色"""
  return random.randrange(256)


def get_verify_code():
  """隨機(jī)獲取驗(yàn)證碼"""
  verify_code = ''.join(random.choice(string.ascii_uppercase + string.digits + string.ascii_lowercase) for x in range(4))
  return verify_code

然后我們重啟應(yīng)用,刷新頁(yè)面如下

利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能

是不是有點(diǎn)神似了?下面我們創(chuàng)建一個(gè)簡(jiǎn)單的login頁(yè)面,來實(shí)際應(yīng)用一下驗(yàn)證碼。

簡(jiǎn)單的登錄頁(yè)面

(1)、創(chuàng)建一個(gè)路由

url(r'login',views.login, name="login"),

(2)、創(chuàng)建一個(gè)Login的視圖函數(shù)

def login(request):
  """登錄頁(yè)面"""
  if request.method == "POST":
    pass
  return render(request, "login.html")

(3)、創(chuàng)建一個(gè)login.html的template

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Login</title>
</head>
<body>
<form action="{% url 'app01:login' %}" method="post">
	{% csrf_token %}
  <span>用戶名:</span><input type="text" name="username">
  <br>
  <span>驗(yàn)證碼:</span><input type="text" name="verify_code">
  <br>
  <img src="{% url 'app01:get_code' %}" >
  <br>
  <button>登錄</button>
</form>

</body>
</html>

然后重啟服務(wù),瀏覽器訪問如下

利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能

現(xiàn)在我們只是簡(jiǎn)單的搭建起了流程,我們需要的功能還沒有實(shí)現(xiàn),我們需要的功能有:
1、驗(yàn)證碼校驗(yàn)
2、點(diǎn)擊圖片自動(dòng)刷新驗(yàn)證碼
3、忽略大小寫

我們現(xiàn)在對(duì)項(xiàng)目進(jìn)行重構(gòu),如下:
(1)、我們?cè)趃et_code視圖函數(shù)添加一行代碼,如下

# 創(chuàng)建一個(gè)驗(yàn)證碼
  # verify_code = "Joke"
  verify_code = get_verify_code()
# 加入session
  request.session['verify_code'] = verify_code
  ......

(2)、修改login視圖函數(shù),如下

def login(request):
  """登錄頁(yè)面"""
  if request.method == "POST":
    storage_code = request.session.get("verify_code")
    submit_code = request.POST.get("verify_code")
    if storage_code.lower() == submit_code.lower():
      return HttpResponse("登錄成功")
  return render(request, "login.html")

(3)、修改login.html代碼如下

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Login</title>
</head>
<body>
<form action="{% url 'app01:login' %}" method="post">
  {% csrf_token %}
  <span>用戶名:</span><input type="text" name="username">
  <br>
  <span>驗(yàn)證碼:</span><input type="text" name="verify_code">
  <br>
  <img src="{% url 'app01:get_code' %}"  name="verify_image">
  <br>
  <button>登錄</button>
</form>
<script src="https://cdn.bootcss.com/jquery/3.2.0/jquery.js"></script>
<script>
  $(function () {
    $("img").on("click", function () {
      console.log("來了啊")
      $(this).attr("src","{% url 'app01:get_code' %}"+"&#63;id="+Math.random())
    })
  })
</script>
</body>
</html>

看完上述內(nèi)容,你們掌握利用python怎么實(shí)現(xiàn)一個(gè)驗(yàn)證碼功能的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI