python 随机生成图片验证码背景RGB-浅色或者深色
Posted chengbo2130
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 随机生成图片验证码背景RGB-浅色或者深色相关的知识,希望对你有一定的参考价值。
1 import random 2 def random_color(is_light = True): 3 return (random.randint(0 ,127) + int(is_light) * 128,random.randint(0,127) + int(is_light) * 128,random.randint(0,127) + int(is_light) * 128) 4 5 back_color = random_color(is_light= True)
以上是关于python 随机生成图片验证码背景RGB-浅色或者深色的主要内容,如果未能解决你的问题,请参考以下文章