鱼C论坛

 找回密码
 立即注册
查看: 245|回复: 1

[图像工具] 环形围观图|高级咒语

[复制链接]
发表于 2024-2-19 16:51:31 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
咒语:
In the close-up, Blizzard, nine of the cutest tigers stood in a circle with a bright smile on their faces and looked down at the camera. The little tiger had a curious expression, big round eyes, Snowflakes splash,and composition as the center --ar 3:4 --v 6.0
在特写镜头《暴风雪》中,九只最可爱的小老虎站成一圈,脸上挂着灿烂的笑容,低头看着镜头。小老虎露出好奇的表情,睁着圆溜溜的大眼睛,雪花飞溅,构图以它为中心 --比例 3:4 --版本 6.0

IMG_4010.JPG

俯视镜头(Looking down at the camera)、中心构图(Central composition)、圆圈(Circle)

只需要将 tiger 化成自己想要的就可以生成其他效果:

IMG_4011.JPG
游客,如果您要查看本帖隐藏内容请回复


更多玩法尽在 >>>《零基础玩转 Midjourney》
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2024-2-19 16:52:07 | 显示全部楼层
要实现你描述的环形围观图效果,你可以使用Python的绘图库matplotlib来完成。下面是一个简单的示例代码:
import matplotlib.pyplot as plt

# 设置画布大小和背景颜色
fig = plt.figure(figsize=(6, 8))
fig.patch.set_facecolor('white')

# 定义九只小老虎的坐标和表情
tiger_coords = [(0, 0), (1, 0), (1, 1), (0, 1), (-1, 1), (-1, 0), (-1, -1), (0, -1), (1, -1)]
tiger_expressions = ["curious", "curious", "curious", "curious", "curious", "curious", "curious", "curious", "curious"]

# 绘制九只小老虎
for coord, expression in zip(tiger_coords, tiger_expressions):
    x, y = coord
    plt.text(x, y, f"{expression}", ha='center', va='center', fontsize=10, fontweight='bold')

# 设置坐标轴范围和刻度
plt.xlim(-2.2, 2.2)
plt.ylim(-2.2, 2.2)
plt.xticks([])
plt.yticks([])

# 设置标题和描述信息
plt.title("In the close-up, Blizzard")
plt.xlabel("nine of the cutest tigers stood in a circle")
plt.ylabel("with a bright smile on their faces")

# 显示绘制结果
plt.show()

运行以上代码,你将会得到一个窗口,其中显示了九只小老虎围成一圈的图像。你可以根据需要进一步调整代码中的细节,比如修改老虎的表情、调整字体大小和样式等等。祝你玩得愉快!

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-7-27 10:27

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表