鱼C论坛

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

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

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

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

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

x
咒语:

  1. 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》
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

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

  1. import matplotlib.pyplot as plt

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

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

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

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

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

  21. # 显示绘制结果
  22. plt.show()
复制代码


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

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-6-5 19:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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