Login
Back to Blog
中文Tutorial

GPT-image-2 实战:吉卜力风格转换 — 把任何照片变成宫崎骏动画

用 GPT-image-2 通过 Crazyrouter API 将照片转换为吉卜力、新海诚等多种动漫风格。附完整代码和多风格 Prompt 模板。

C
Crazyrouter Team
May 1, 2026 / 603 views
Share:
GPT-image-2 实战:吉卜力风格转换 — 把任何照片变成宫崎骏动画

GPT-image-2 实战:吉卜力风格转换 — 把任何照片变成宫崎骏动画#

2025 年初,"吉卜力滤镜"在全网爆火 — 把自己的照片变成宫崎骏风格的动画插画。GPT-image-2 不仅能做到这一点,还能生成多种动漫风格的精美场景。

本文是系列第四篇,覆盖吉卜力之外的多种动漫风格。

效果展示#

吉卜力风格插画

雨天午后的温馨咖啡馆 — 暖色调室内光线、窗上的雨滴、一只橘猫在旁边打盹。水彩质感和暖色调完美还原了经典吉卜力风格。

完整代码#

Python — 吉卜力风格#

python
from openai import OpenAI

client = OpenAI(
    api_key="your-crazyrouter-api-key",
    base_url="https://crazyrouter.com/v1"
)

ghibli_prompt = """
A warm anime illustration of a girl reading a book in a cozy cafe 
on a rainy afternoon. Golden interior light, rain on the window, 
an orange cat sleeping nearby. Soft watercolor textures, hand-painted 
feel, warm color palette, detailed background. Japanese animation 
style reminiscent of classic Ghibli films. No text in the image.
"""

response = client.images.generate(
    model="gpt-image-2",
    prompt=ghibli_prompt,
    size="1024x1024",
    n=1
)

print(f"吉卜力风格: {response.data[0].url}")

curl#

bash
curl -X POST https://crazyrouter.com/v1/images/generations \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer your-crazyrouter-api-key" \
  -d '{
    "model": "gpt-image-2",
    "prompt": "Warm anime illustration of a girl reading in a cozy cafe on a rainy afternoon. Golden light, rain on window, orange cat sleeping nearby. Soft watercolor textures, hand-painted feel, warm colors, detailed background. Classic Ghibli animation style. No text.",
    "size": "1024x1024",
    "n": 1
  }'

Node.js#

javascript
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "your-crazyrouter-api-key",
  baseURL: "https://crazyrouter.com/v1",
});

const response = await client.images.generate({
  model: "gpt-image-2",
  prompt: `Warm anime illustration of a girl reading in a cozy cafe 
on a rainy afternoon. Golden light, rain on window, orange cat nearby. 
Watercolor textures, hand-painted feel, warm palette. 
Classic Ghibli animation style. No text.`,
  size: "1024x1024",
  n: 1,
});

console.log(response.data[0].url);

多风格 Prompt 模板#

新海诚风格(你的名字、天气之子)#

python
shinkai_prompt = """
A breathtaking anime scene in Makoto Shinkai style. 
A girl standing on a rooftop at sunset, looking at a sky filled 
with dramatic cumulus clouds painted in orange, pink, and purple. 
City skyline below with detailed buildings catching golden light. 
Hyper-detailed sky, lens flare, photorealistic lighting with 
anime character style. Vibrant saturated colors.
"""

间谍过家家风格#

python
spy_prompt = """
A family portrait in the style of Spy×Family anime. 
A father in a sharp suit, a mother in an elegant dress, 
and a cute little girl with a big smile between them. 
Clean line art, pastel color palette, soft shading. 
Cheerful and warm atmosphere. Manga illustration quality.
"""

赛博朋克动漫风格#

python
cyber_prompt = """
A cyberpunk anime scene. A girl with neon-highlighted hair 
standing in a rain-soaked Tokyo alley at night. Holographic 
advertisements and neon signs reflecting in puddles. 
Dark atmosphere with vibrant neon accents (pink, cyan, purple). 
Ghost in the Shell meets Akira aesthetic.
"""

水彩漫画风格#

python
watercolor_prompt = """
A serene watercolor manga illustration. A boy sitting under 
a cherry blossom tree by a river, petals floating in the breeze. 
Soft, translucent watercolor washes. Minimal line art. 
Peaceful, contemplative mood. Traditional Japanese watercolor 
painting meets manga illustration.
"""

Prompt 技巧#

技巧示例关键词
指定子风格"Ghibli", "Shinkai", "90s anime", "shonen manga"
描述光线"golden hour", "neon glow", "soft diffused light"
指定质感"watercolor", "cel-shaded", "hand-painted", "ink wash"
设定氛围"nostalgic", "melancholic", "cheerful", "dramatic"
加 "No text"防止图片中出现多余文字

批量风格转换#

同一场景生成多种风格:

python
scene = "A girl walking through a sunflower field at golden hour"

styles = {
    "ghibli": "soft watercolor, warm palette, Ghibli animation style",
    "shinkai": "hyper-detailed sky, lens flare, Makoto Shinkai style",
    "cyberpunk": "neon accents, rain, holographic elements, cyberpunk anime",
    "vintage": "90s anime aesthetic, cel-shaded, VHS grain texture",
}

for style_name, style_desc in styles.items():
    response = client.images.generate(
        model="gpt-image-2",
        prompt=f"{scene}. {style_desc}. No text in image.",
        size="1024x1024",
        n=1
    )
    print(f"{style_name}: {response.data[0].url}")

成本#

项目价格(Crazyrouter)
1 张(1024×1024)约 $0.04-0.08
4 风格批量约 $0.20-0.32

🚀 Crazyrouter — 一个 API Key,600+ 模型。GPT-image-2、GPT-5.5、Claude Opus 4.7、DeepSeek V4 等。

👉 crazyrouter.com

Implementation Guides

Topics

Tutorial

Related Posts

GPT-image-2 实战:AI Meme 生成器 & 涂色书制作 — 好玩还能赚钱的两个项目Tutorial

GPT-image-2 实战:AI Meme 生成器 & 涂色书制作 — 好玩还能赚钱的两个项目

用 GPT-image-2 通过 Crazyrouter API 生成 Meme 表情包和涂色书页面。两个好玩又能变现的项目,附完整代码。

May 1
GPT-image-2 实战:AI 手办生成器 — 把任何人变成盒装公仔Tutorial

GPT-image-2 实战:AI 手办生成器 — 把任何人变成盒装公仔

用 GPT-image-2 通过 Crazyrouter API 生成超逼真的盒装手办图片,附 10 个职业模板和完整代码。

May 1
ChatGPT 6 什么时候发布?最新进展、预计时间和现在可用的替代方案Tutorial

ChatGPT 6 什么时候发布?最新进展、预计时间和现在可用的替代方案

整理 ChatGPT 6 最新消息、预计发布时间、OpenAI 可能路线图,以及开发者现在就能使用的 GPT、Claude、Gemini 替代方案。

Mar 27
如何通过 API 访问 GPT-5 和 GPT-5.2 —— 完整开发者指南Tutorial

如何通过 API 访问 GPT-5 和 GPT-5.2 —— 完整开发者指南

了解如何通过统一 API 访问 OpenAI 最新的 GPT-5、GPT-5.2 和 o3-pro 模型。包含使用 Python、Node.js 和 curl 的分步示例。

Jan 23
WorkBuddy 接入 claude-opus-4-8 与 gpt-5.5:用 Crazyrouter 一键配置自定义模型Tutorial

WorkBuddy 接入 claude-opus-4-8 与 gpt-5.5:用 Crazyrouter 一键配置自定义模型

这篇中文指南从 models.json、PowerShell 一键配置、模型选择、Token 权限、成本控制、稳定性和排错等维度,讲解如何在 WorkBuddy 中接入 claude-opus-4-8、gpt-5.5 等 Crazyrouter 自定义模型。

Jun 15
Hermes Agent 一键接入 Crazyrouter:用国内接口跑 Claude Opus 4.8、GPT-5.5 和 DeepSeek V4 FlashTutorial

Hermes Agent 一键接入 Crazyrouter:用国内接口跑 Claude Opus 4.8、GPT-5.5 和 DeepSeek V4 Flash

Hermes Agent 一键接入 Crazyrouter 教程:使用 https://cn.crazyrouter.com/v1 运行 Claude Opus 4.8、GPT-5.5 和 DeepSeek V4 Flash。

Jun 5