我的discord bot在某个命令后创建qr代码。然而,我无法将此qr码作为消息发送给用户:
import qrcode
def create_qr_code(string : str):
qr = qrcode.make(string)
return qr
# sending qr to user
qr_code = create_qr_code('some text')
# check if qr_code is None
print(qr_code)
await ctx.send(file=discord.File(fp=qr_code))
我的print
语句返回类似的内容
<qrcode.image.pil.PilImage object at 0x000001BD735FCF28>
,
这很好,向我展示了qr码的创建是成功的。我想知道为什么发送它似乎不起作用。
您可以使用一个名为qrcode的包,然后使用此代码:
async def qrcode(self, ctx, *, url):
qr = qrcode.QRCode(
version=1,
error_correction=qrcode.constants.ERROR_CORRECT_H,
box_size=10,
border=4,
)
qr.add_data(str(url))
qr.make(fit=True)
img = qr.make_image(fill_color="black",
back_color="white").convert('RGB')
img.save('qrcode.png')
await ctx.send(file=discord.File('qrcode.png'))
顺便说一句,如果你想继续使用PyQRCode,看看pypi文档,你可以这样做:
qr_code.png('code.png', scale=6, module_color=[0, 0, 0, 128], background=[0xff, 0xff, 0xcc])
保存。
实际上,我自己使用这个解决方案找到了一个有效的解决方案:
首先,我创建一个qr码并返回这个对象
import qrcode
def create_qr_code(string : str):
qr_code = qrcode.make(string)
return qr_code
我现在可以使用BytesIO()
将这个qr码作为二进制文件发送到discord:
import io
def some_other_function():
qr_code = create_qr_code('my string')
with io.BytesIO() as image_binary:
qr_code.save(image_binary, 'PNG')
image_binary.seek(0)
await ctx.send(file=discord.File(fp=image_binary, filename='qr.png'))