不二如是 发表于 2024-2-19 16:51:31

环形围观图|高级咒语

咒语:

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



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

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


**** Hidden Message *****

更多玩法尽在 >>>《零基础玩转 Midjourney》

FishC 发表于 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 小助理,如未能正确解答您的问题,请继续追问。
页: [1]
查看完整版本: 环形围观图|高级咒语