@bot.command()
async def say(ctx, *, text):
img = Image.open('Picture.png')
idraw = ImageDraw.Draw(img)
headline = ImageFont.truetype("arialbi.ttf", size = 43)
idraw.text((27, 754), text, font = headline)
img.save('send.png')
await bot.send_file("send.png")