Skip to main content
Ideogram보통울트라

Ideogram Character

레퍼런스 이미지 한 장으로 일관된 캐릭터를 생성하는 모델입니다. 실사부터 픽션까지 다양한 스타일로 동일 캐릭터를 렌더링하고, 마스크 인페인팅으로 기존 사진에 캐릭터를 삽입할 수 있으며, Ideogram 특유의 강점인 정확한 텍스트 렌더링까지 지원합니다.

350 크레딧
Default 렌더링 이미지 1장 기준 — Turbo 230, Default 350, Quality 470크레딧
레퍼런스 이미지 단 한 장으로 일관된 캐릭터 생성
Auto·Fiction·Realistic 캐릭터 스타일 타입
마스크 인페인팅으로 기존 이미지에 캐릭터 삽입
가격이 차등 적용되는 3단계 렌더링 속도 (Turbo/Default/Quality)
이미지 안 텍스트를 정확히 그려내는 Ideogram 고유의 텍스트 렌더링

지금 바로 실행해보세요

콘솔의 Playground에서 별도 코드 없이 이 모델을 즉시 테스트할 수 있어요

로그인 후 사용해보기

AI 어시스턴트에서 사용하기

이 모델의 사용법을 Claude, ChatGPT 등에 복사

빠른 시작

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "ideogram-ai/ideogram-character",
  "input": {
    "prompt": "a close up photo of a woman in a fashion magazine photoshoot",
    "resolution": "None",
    "style_type": "Auto",
    "aspect_ratio": "1:1",
    "magic_prompt_option": "Auto",
    "character_reference_image": "https://example.com/character.webp"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-이미지 생성을 위한 텍스트 프롬프트
maskstringNo-흑백 마스크 이미지. 검은 픽셀은 인페인팅되고 흰 픽셀은 보존됨. 이미지 크기에 맞게 리사이즈됨
seedintegerNo-랜덤 시드. 재현 가능한 생성을 위해 설정
imagestringNo-인페인팅에 사용할 이미지 파일. 반드시 mask와 함께 사용
resolutionstringNoNone정확한 출력 해상도 (예: 1024x1024). 512x1536~1536x512 범위의 약 69개 프리셋 지원. aspect_ratio보다 우선하며 인페인팅 시 무시됨
None512x1536576x1408576x1472576x1536640x1344640x1408640x1472640x1536704x1152704x1216704x1280704x1344704x1408704x1472736x1312768x1088768x1216768x1280768x1344800x1280832x960832x1024832x1088832x1152832x1216832x1248864x1152896x960896x1024896x1088896x1120896x1152960x832960x896960x1024960x10881024x8321024x8961024x9601024x10241088x7681088x8321088x8961088x9601120x8961152x7041152x8321152x8641152x8961216x7041216x7681216x8321248x8321280x7041280x7681280x8001312x7361344x6401344x7041344x7681408x5761408x6401408x7041472x5761472x6401472x7041536x5121536x5761536x640
style_typestringNoAuto캐릭터 스타일 타입
AutoFictionRealistic
aspect_ratiostringNo1:1화면 비율. resolution이나 인페인팅 이미지 지정 시 무시됨
1:33:11:22:19:1616:910:1616:102:33:23:44:34:55:41:1
rendering_speedstringNoDefault렌더링 속도. Turbo는 빠르고 저렴(300크레딧), Quality는 고품질·고가(600크레딧), Default는 균형형(450크레딧)
DefaultTurboQuality
magic_prompt_optionstringNoAutoMagic Prompt가 프롬프트를 해석·최적화해 다양성과 품질을 높임. 다른 언어로 프롬프트 작성도 가능
AutoOnOff
character_reference_imagestringYes-캐릭터 레퍼런스로 사용할 이미지

파일 입력 방법

이 모델의 maskimagecharacter_reference_image 파라미터에 파일을 전달하는 방법은 3가지입니다.

추천

간편 업로드 (Multipart)

POST /v1/predictions/upload에 파일을 직접 첨부합니다. 별도 업로드 과정이 필요 없습니다.

curl -X POST "https://api.core.today/v1/predictions/upload" \
  -H "X-API-Key: cdt_your_api_key" \
  -F "model=ideogram-ai/ideogram-character" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:mask=@your_file.png"

이미지 URL 전달

공개 접근 가능한 URL을 직접 전달합니다. Storage API로 업로드한 파일의 file_url도 사용 가능합니다.

{
  "model": "ideogram-ai/ideogram-character",
  "input": {
    "prompt": "your prompt here",
    "mask": "https://example.com/image.jpg"
  }
}
File Upload 문서에서 Presigned URL 방식 등 더 자세한 업로드 방법을 확인하세요.

공통 파라미터

POST /v1/predictions 요청 시 사용되는 공통 파라미터입니다.

파라미터타입필수기본값설명
modelstringYes-모델 식별자
inputobjectYes-위 테이블의 모델별 파라미터를 포함하는 객체
output_folderstringNo-결과물 저장 폴더 경로 (최대 256자, '..' 사용 불가)
webhook_urlstringNo-완료 시 호출할 Webhook URL
is_publicbooleanNofalsetrue 시 결과물을 영구 공개 URL로도 제공

예제

레퍼런스 기반 패션 화보 촬영

레퍼런스 캐릭터를 패션 매거진 화보 스타일로 렌더링

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "ideogram-ai/ideogram-character",
  "input": {
    "prompt": "a close up photo of a woman in a fashion magazine photoshoot",
    "resolution": "None",
    "style_type": "Auto",
    "aspect_ratio": "1:1",
    "magic_prompt_option": "Auto",
    "character_reference_image": "https://example.com/character.webp"
  }
}'

Turbo로 빠른 캐릭터 반복 생성

Turbo 렌더링으로 장당 300크레딧까지 비용 절감

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "ideogram-ai/ideogram-character",
  "input": {
    "prompt": "the character as a barista pouring latte art in a cozy cafe, warm lighting",
    "rendering_speed": "Turbo",
    "style_type": "Realistic",
    "aspect_ratio": "3:4",
    "character_reference_image": "https://example.com/character.webp"
  }
}'

팁 & 모범 사례

1반복 실험은 rendering_speed를 Turbo(300크레딧)로 진행하고 최종본만 Quality(600크레딧)로 렌더링하세요
2캐릭터 일관성을 극대화하려면 조명이 좋고 얼굴이 선명한 레퍼런스 이미지를 사용하세요
3인페인팅은 image와 mask를 함께 제공해야 합니다 — 마스크의 검은 픽셀이 교체되고 흰 픽셀은 보존됩니다
4Ideogram의 강점인 텍스트 렌더링을 활용하세요 — 간판·라벨·타이틀 문구를 따옴표로 프롬프트에 직접 넣으면 됩니다
5resolution은 aspect_ratio보다 우선합니다 — 정확한 픽셀 크기가 필요할 때만 지정하고 평소엔 None으로 두세요
6실존 인물 사진은 반드시 본인 동의 하에만 캐릭터 레퍼런스로 사용하세요

사용 사례

동일 캐릭터를 다양한 포즈·의상으로 보여주는 캐릭터 시트 제작
주인공이 반복 등장하는 웹툰·만화·동화책 컷 제작
인페인팅으로 기존 사진에 캐릭터를 합성
읽을 수 있는 텍스트가 들어간 브랜드 마스코트 이미지
일관된 페르소나가 등장하는 마케팅 비주얼