Login
Back to Blog
GPT-image-2로 지브리 스타일 변환 — 사진을 애니메이션 아트로 바꾸기

GPT-image-2로 지브리 스타일 변환 — 사진을 애니메이션 아트로 바꾸기

C
Crazyrouter Team
May 2, 2026
8 views한국어Tutorial
Share:

GPT-image-2로 지브리 스타일 변환 — 사진을 애니메이션 아트로 바꾸기#

2025년 초, "지브리 필터"가 전 세계적으로 대유행했습니다. 자신의 사진을 스튜디오 지브리 스타일의 애니메이션 일러스트로 변환하는 것이죠. GPT-image-2는 여기서 한 발 더 나아가, 텍스트 설명만으로도 풍부하고 디테일한 애니메이션 장면을 생성할 수 있습니다.

이 글은 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);

다양한 스타일 프롬프트 템플릿#

신카이 마코토 스타일 (너의 이름은, 날씨의 아이)#

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.
"""

프롬프트 팁#

예시 키워드
서브 스타일 지정"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 키 하나로 600개 이상의 모델. GPT-image-2, GPT-5.5, Claude Opus 4.7, DeepSeek V4 등.

👉 crazyrouter.com

Related Articles