[AI创造营]Wechaty实用小工具---九宫图爱心生成器~

简介: [AI创造营]Wechaty实用小工具---九宫图爱心生成器~

背景

跟随抖音风~九宫图截图、截图、截图!手都截酸掉了吧!来吧~不需要你操作,我来!你只需要发送图片,结果自动生成


效果图

308c9fd10becbf15e3ef2d970decf79d.png

话不多说,肝着~


视频观赏

视频地址:https://www.bilibili.com/video/BV1eo4y1U7Pd/


wechaty的安装不再讲解,请看上期:

[AI创造营]Wechaty实用小工具—证件照助手

https://aistudio.baidu.com/aistudio/projectdetail/2253862


第一步 环境准备

当你成功的运行起来docker,并通过二维码登录之后,Wechaty的环境就已经成功搭建了。

下面只需要导入部分库就可。

import os
import asyncio
from wechaty import Wechaty, Message, FileBox
from PIL import Image
import time
os.environ['WECHATY_PUPPET_SERVICE_TOKEN'] = '换成你的token'


第二步 九宫图生成函数编写

左侧记得新建image和result文件夹

def makeJiuPic(img_path):
    # 拿到图片路径,先把原图像重置大小
    img = Image.open(img_path)
    img = img.resize((304, 304), Image.ANTIALIAS)
    print("大小更改成功304")
    # 这张图也是最终的中心图,先进行存储
    img.save("result/5.png")
    # 再次拿到开始缩放为每张图的小图人物图100*100
    img = img.resize((100, 100), Image.ANTIALIAS)
    img = img.convert("RGBA")
    print("大小更改成功100")
    # 底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 底稿的粉红色小图100*100
    pink = Image.open("pink100x100.png")
    pink = pink.convert("RGBA")
    print("图片读取成功")
    # 准备好坐标值
    zuobiao = [(0,0),(102,0),(204,0),
               (0,102),(102,102),(204,102),
               (0,204),(102,204),(204,204)]
    print(zuobiao)
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第一张爱心图
    for i in range(9):
        if(i==0 or i==1 or i==2 or i==3 or i==4 or i==6):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img,zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/1.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第二张爱心图
    for i in range(9):
        if (i == 0 or i == 1 or i == 2 or i == 4 ):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/2.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第三张爱心图
    for i in range(9):
        if (i == 0 or i == 1 or i == 2 or i == 4 or i == 5 or i == 8):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/3.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第四张爱心图
    for i in range(9):
        if (i == 6):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/4.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第六张爱心图
    for i in range(9):
        if (i == 8):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/6.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第七张爱心图
    for i in range(9):
        if (i == 0 or i == 1 or i == 3 or i == 4 or i == 5 or i == 6 or i == 7 or i == 8):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/7.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第八张爱心图
    for i in range(9):
        if (i == 6 or i == 8):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/8.png")
    # 初始化底稿的白底304x304
    ground = Image.open("white304x304.png")
    ground = ground.convert("RGBA")
    # 生成第九张爱心图
    for i in range(9):
        if (i == 1 or i == 2 or i == 3 or i == 4 or i == 5 or i == 6 or i == 7 or i == 8):
            ground.paste(pink, zuobiao[i], mask=pink)
        else:
            ground.paste(img, zuobiao[i], mask=img)
    # 保存图片
    ground.save("result/9.png")


第三步 主函数

项目要运行在本地环境

如果要在notebook中运行,需要更改asyncio

class MyBot(Wechaty):
    async def on_message(self, msg: Message):
        talker = msg.talker()
        await talker.ready()
        if msg.type() == Message.Type.MESSAGE_TYPE_TEXT:
            if msg.text() == "ding":
                await talker.say('dong,发送一张图片获取九宫格爱心图片~')
            if msg.text() == "1":
                time.sleep(2)
                file_box = FileBox.from_file("result/1.png")
                await msg.say(file_box)
            if msg.text() == "2":
                time.sleep(2)
                file_box = FileBox.from_file("result/2.png")
                await msg.say(file_box)
            if msg.text() == "3":
                time.sleep(2)
                file_box = FileBox.from_file("result/3.png")
                await msg.say(file_box)
            if msg.text() == "4":
                time.sleep(2)
                file_box = FileBox.from_file("result/4.png")
                await msg.say(file_box)
            if msg.text() == "5":
                time.sleep(2)
                file_box = FileBox.from_file("result/5.png")
                await msg.say(file_box)
            if msg.text() == "6":
                time.sleep(2)
                file_box = FileBox.from_file("result/6.png")
                await msg.say(file_box)
            if msg.text() == "7":
                time.sleep(2)
                file_box = FileBox.from_file("result/7.png")
                await msg.say(file_box)
            if msg.text() == "8":
                time.sleep(2)
                file_box = FileBox.from_file("result/8.png")
                await msg.say(file_box)
            if msg.text() == "9":
                time.sleep(2)
                file_box = FileBox.from_file("result/9.png")
                await msg.say(file_box)
        elif msg.type() == Message.Type.MESSAGE_TYPE_IMAGE:
            await talker.say('已收到图片,生成图片ing...')
            # 将Message转换为FileBox
            img = await msg.to_file_box()
            # 获取图片名
            img_name = img.name
            # 图片保存的路径
            img_path = 'image/' + img_name
            # 将图片保存到本地文件
            await img.to_file(file_path=img_path)
            print("输入的图片路径:", img_path)
            makeJiuPic(img_path)
            # for pic in ["result/1.png", "result/2.png", "result/3.png","result/4.png", "result/5.png", "result/6.png","result/7.png", "result/8.png", "result/9.png"]:
            #     file_box = FileBox.from_file(pic)
            #     await msg.say(file_box)
            #     time.sleep(5)
            time.sleep(3)
            await talker.say("九张图片生成完毕!\n依次发送1-9获取九张图片")
async def main():
    bot = MyBot()
    await bot.start()
asyncio.run(main())


相关文章
|
6天前
|
机器学习/深度学习 人工智能 自然语言处理
Documind:开源 AI 文档处理工具,将 PDF 转换为图像提取结构化数据
Documind 是一款利用 AI 技术从 PDF 中提取结构化数据的先进文档处理工具,支持灵活的本地或云端部署。
47 8
Documind:开源 AI 文档处理工具,将 PDF 转换为图像提取结构化数据
|
12天前
|
机器学习/深度学习 人工智能 搜索推荐
AI与娱乐产业:电影制作的新工具
随着科技的发展,人工智能(AI)逐渐渗透到电影制作中,带来了前所未有的创新。本文探讨了AI在剧本创作、场景构建、特效制作、动作捕捉、音频处理、剪辑及市场调研等领域的应用,以及其对提升效率、激发创意和拓宽视野的影响,展望了AI在未来电影产业中的重要作用。
|
1月前
|
人工智能 IDE Java
AI 代码工具大揭秘:提高编程效率的必备神器!
【10月更文挑战第1天】近年来,人工智能得到了迅猛的发展,并在各行各业都得到了广泛应用。尤其是近两年来,AI开发工具逐渐成为开发者们的新宠,其中 GitHub Copilot 更是引发了无限可能性的探索。
104 9
AI 代码工具大揭秘:提高编程效率的必备神器!
|
1月前
|
人工智能 搜索推荐 程序员
AI 搜索引擎工具集合
AI 搜索引擎工具集合
AI 搜索引擎工具集合
|
1月前
|
人工智能 JavaScript 数据可视化
Cursor 、v0 和 Bolt.new:当今 AI 编程工具的全面解析与对比
本文对 Cursor AI、v0 和 Bolt.new 三大 AI 编程工具进行了全面比较,分析其各自优势与局限性,帮助开发者在不同工作流中灵活应用。
241 8
Cursor 、v0 和 Bolt.new:当今 AI 编程工具的全面解析与对比
|
1月前
|
人工智能 自然语言处理 算法
几款宝藏级AI阅读工具推荐!论文分析、文档总结必备神器!
【10月更文挑战第8天】几款宝藏级AI阅读工具推荐!论文分析、文档总结必备神器!
81 1
几款宝藏级AI阅读工具推荐!论文分析、文档总结必备神器!
|
1月前
|
人工智能
|
24天前
|
机器学习/深度学习 人工智能 自然语言处理
NotebookLM与NotebookLlama 了解下 | AI工具
在AI技术飞速发展的今天,Google和Meta分别推出了基于大型语言模型的笔记本应用——NotebookLM和NotebookLlama。这两款产品不仅提供了强大的文档处理和编码支持,还在文档和编码领域引领了创新。NotebookLM强调个性化和隐私保护,而NotebookLlama则以开源和高度定制性著称。本文将深入解析这两款产品并进行对比分析。【10月更文挑战第16天】
111 2
|
1月前
|
存储 人工智能 数据库
|
1月前
|
人工智能 自然语言处理 自动驾驶
【通义】AI视界|微软和 OpenAI 将向媒体提供1000万美元资助,推动其使用AI工具
本文概览了近期科技领域的五大热点事件,包括微软与OpenAI联手资助媒体使用AI工具、OpenAI任命前白宫官员为首任首席经济学家、特斯拉FSD系统遭调查、英伟达市值逼近全球第一、以及AMD新一代锐龙9000X3D系列处理器即将上市的消息。更多资讯,请访问通义官网。

热门文章

最新文章

下一篇
无影云桌面