当前位置:   article > 正文

Python 图片Buffer保存为JPG图片(基于微信动态生成小程序码流程)_图片 buffer

图片 buffer

Python 图片Buffer保存为JPG图片

引言
  • 1、我现在的项目,想要通过不同的商城id来进入小程序,这就涉及到了动态生成小程序码。2、然而通过微信小程序接口,动态生成小程序码的时候,返回的是图片的buffer。
核心代码
from PIL import Image
from io import BytesIO 
# 用来生成一个图片实例,其中imgBuffer 为 图片的 buffer
img = Image.open(BytesIO(imgBuffer))
# 把图片保存在一个路径底下
img.save('/home/sku/111.jpg')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
开发流程
  1. 文档在这里 ==> 动态生成小程序码
  2. 下面例子是通过不同的shopid来生成,外部调用CreateEntrance函数来执行获取小程序码图片buffer的流程和保存jpg图片的流程。
appid = '小程序的appid'
appsecret = '小程序的appsecret '
token_url = 'https://api.weixin.qq.com/cgi-bin/token'
code_url = 'https://api.weixin.qq.com/wxa/getwxacodeunlimit'

def GetToken():
    params = {
        'appid': appid,
        'secret': appsecret,
        'grant_type': 'client_credential'
    }
    res = requests.get(url=token_url, params=params)
    result = json.loads(res.content)
    return result['access_token']

def GetCode(token, shopid):
    data = {
        'page': 'pages/index/index',
        'scene': shopid
    }
    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE',
        'Content-Type': "application/json;charset=UTF-8"
    }
    res = requests.post(
        url = code_url + '?access_token=' + token ,
        data = json.dumps(data),
        headers = headers
    )    
    return res.content
    
# 外部调用的函数
def CreateEntrance(shopid):
	# 获取token
    token = GetToken()
    # 根据token和shopid获取指定的小程序码图片 buffer
    imgBuffer = GetCode(token, shopid)

    #保存图片
    img = Image.open(BytesIO(imgBuffer))
    imgPath = '/home/sku/'+ shopid +'.jpg'
    img.save(imgPath)
	
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/145134
推荐阅读
相关标签
  

闽ICP备14008679号