AI 画图,真的 越来越厉害了
本文转载于9090社区,帖子链接:https://qq9090.top/thread-607595-1-1.html
作者: s001 时间: 2026-7-4 12:37帮我画,一条绿色的小河,岸边是高高的绿色植物,男孩划着小船,色彩颗粒,怀旧印刷,绿色,清新,风景优美,光线好。 男孩,不是 女孩。
默认是女孩,改一个字,AI 居然不认识。
作者: s001 时间: 2026-7-4 12:38
image.jpg (382.3 KB, 下载次数: 0)下载附件2026-7-4 12:38 上传
作者: 男娲 时间: 2026-7-4 12:39
5bbf1937373c4d27a0ce0d54f28c02b1.jpg (413.2 KB, 下载次数: 0)下载附件2026-7-4 12:39 上传
73901af0a6264769a965aefb633c0759.jpg (394.2 KB, 下载次数: 0)下载附件2026-7-4 12:39 上传
作者: ticaq 时间: 2026-7-4 13:27
居然能出现真人??
作者: wulong2020 时间: 2026-7-4 13:36
论生图,只有gpt和其他
image.jpg (649.21 KB, 下载次数: 0)下载附件2026-7-4 13:36 上传
作者: feifeigege 时间: 2026-7-4 14:11
image.jpg (749.14 KB, 下载次数: 0)下载附件2026-7-4 14:00 上传
by chatgpt
image.jpg (297.8 KB, 下载次数: 0)下载附件2026-7-4 14:02 上传
by Gemini
image.jpg (782.17 KB, 下载次数: 0)下载附件2026-7-4 14:11 上传
by Codex
作者: shift 时间: 2026-7-4 14:15
Banana Pro
328668cab9934da79604b13855c5e61baaa0759f8e492ba575e692d513a4fca2.0.jpg (610.65 KB, 下载次数: 0)下载附件2026-7-4 14:14 上传
5770d3a1db5aee54e175c012d5cf7573154f72534f6aa0ab019277e850e94ceb.0.jpg (503.48 KB, 下载次数: 0)下载附件2026-7-4 14:14 上传
作者: feifeigege 时间: 2026-7-4 14:19
image.jpg (394.52 KB, 下载次数: 0)下载附件2026-7-4 14:19 上传
还有画风清奇的Claude
作者: Arbiter114 时间: 2026-7-4 14:30
feifeigege 发表于 2026-7-4 14:19
还有画风清奇的Claude
这个把我看笑了。克劳德不应该用来干这个吧?
作者: 旧显示器 时间: 2026-7-4 15:13
Request
import urllib.request
import urllib.parse
import json
def generate_image(prompt, width=1024, height=1024, seed=None):
"""使用 pollinations.ai 免费API生成图片"""
# URL编码提示词
encoded_prompt = urllib.parse.quote(prompt)
# 构建URL (pollinations.ai 免费无限制)
if seed:
url = f"https://image.pollinations.ai/prompt/{encoded_prompt}?width={width}&height={height}&seed={seed}&nologo=true"
else:
url = f"https://image.pollinations.ai/prompt/{encoded_prompt}?width={width}&height={height}&nologo=true"
# 下载图片
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.0'
}
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req, timeout=120) as response:
image_data = response.read()
return image_data
# 构建详细的英文提示词
prompt = (
"A winding emerald-green river, crystal clear jade-green water, "
"tall green reeds and weeping willows along the banks, "
"a young boy alone rowing a small wooden boat, "
"sunlight filtering through leaves creating dappled light and shadows, "
"visible film grain texture, nostalgic vintage postcard print style, "
"overall fresh green color palette, beautiful scenic landscape, "
"Tyndall effect light rays, 8k resolution, "
"watercolor and screen printing mixed texture, "
"serene pastoral atmosphere, dreamy lighting"
)
# 生成图片
image_data = generate_image(prompt, width=1024, height=1024, seed=42)
# 保存图片
output_path = "/mnt/agents/output/vintage_river_boy_boat.png"
with open(output_path, "wb") as f:
f.write(image_data)
print(f"图片已生成并保存至: {output_path}")
print(f"图片大小: {len(image_data)} bytes")
图片.jpg (147.92 KB, 下载次数: 0)下载附件2026-7-4 15:13 上传
作者: 旧显示器 时间: 2026-7-4 15:18
图片.jpg (94.34 KB, 下载次数: 0)下载附件2026-7-4 15:18 上传
作者: fjmdj1127 时间: 2026-7-4 15:21
画家也没用了,AI替代了。
本文转载于9090社区,帖子链接:https://qq9090.top/thread-607595-1-1.html