Skip to main content
Black Forest Labs빠름울트라

FLUX 2 Max

Black Forest Labs의 최고 충실도 이미지 모델입니다. FLUX.2 라인업 중 최고의 프롬프트 준수율과 가장 일관된 편집 성능을 제공하며, 최대 8장의 레퍼런스 이미지로 색상·조명·얼굴·텍스트·오브젝트를 편집 간에 보존합니다.

160 크레딧
1 MP 이미지 기준 — 해상도별 차등 (0.5MP 130, 2MP 230, 4MP·match_input 370, custom 390)
FLUX.2 라인업 최고의 편집 일관성 — 정체성·색상·조명·텍스트 보존
짧은 프롬프트와 긴 프롬프트 모두에서 최고 수준의 프롬프트 준수
최대 8장의 입력 이미지를 활용한 멀티 레퍼런스 편집
프롬프트의 hex 코드로 제어하는 체계적인 제품 색상 배리에이션
단일 이미지 또는 소수의 레퍼런스로 장면의 새로운 3D 시점 생성
FLUX.2 [pro]에 근접한 속도 — 동급 품질 경쟁 모델 대비 최대 3배 빠름

지금 바로 실행해보세요

콘솔의 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": "black-forest-labs/flux-2-max",
  "input": {
    "prompt": "A photorealistic wide shot of a minimalist digital billboard in a forest of purple and lavender-hued trees. Centered text reads \"FLUX.2 [max]\" in a modern sans-serif font. Soft daylight with a purple color cast, cinematic composition",
    "resolution": "1 MP",
    "aspect_ratio": "1:1"
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringYes-이미지 생성용 텍스트 프롬프트
input_imagesarrayNo[]이미지-이미지 생성용 레퍼런스 이미지 최대 8장 (jpeg/png/gif/webp)
aspect_ratiostringNo1:1화면 비율. 'match_input_image'는 첫 입력 이미지를 따르고 'custom'은 width/height 사용
match_input_imagecustom1:116:93:22:34:55:49:163:44:3
resolutionstringNo1 MP출력 해상도 (메가픽셀). 2 MP 이하 권장, 최대 2048x2048. 해상도에 따라 과금 차등
match_input_image0.5 MP1 MP2 MP4 MP
widthintegerNo-가로 크기 (256~2048, 16의 배수). aspect_ratio=custom일 때만 사용
heightintegerNo-세로 크기 (256~2048, 16의 배수). aspect_ratio=custom일 때만 사용
safety_toleranceintegerNo2안전 필터 강도: 1이 가장 엄격, 5가 가장 관대
seedintegerNo-재현 가능한 생성을 위한 랜덤 시드
output_formatstringNowebp출력 이미지 포맷
webpjpgpng
output_qualityintegerNo80저장 품질 0~100 (png에는 미적용)

파일 입력 방법

이 모델의 input_images 파라미터에 파일을 전달하는 방법은 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=black-forest-labs/flux-2-max" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:input_images=@your_file.png"

이미지 URL 전달

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

{
  "model": "black-forest-labs/flux-2-max",
  "input": {
    "prompt": "your prompt here",
    "input_images": ["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": "black-forest-labs/flux-2-max",
  "input": {
    "prompt": "A photorealistic wide shot of a minimalist digital billboard in a forest of purple and lavender-hued trees. Centered text reads \"FLUX.2 [max]\" in a modern sans-serif font. Soft daylight with a purple color cast, cinematic composition",
    "resolution": "1 MP",
    "aspect_ratio": "1:1"
  }
}'

멀티 레퍼런스 제품 편집

새로운 환경에서도 일관된 제품 목업

curl -X POST "https://api.core.today/v1/predictions" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: cdt_your_api_key" \
  -d '{
  "model": "black-forest-labs/flux-2-max",
  "input": {
    "prompt": "Place the product from the reference image on a marble kitchen counter with soft morning light, keeping the label text and colors exactly as shown",
    "input_images": [
      "https://example.com/product.jpg"
    ],
    "resolution": "2 MP",
    "aspect_ratio": "4:5"
  }
}'

팁 & 모범 사례

1출력 해상도에 따라 과금되므로 1 MP로 실험하고 최종 렌더만 2~4 MP로 생성하세요
22 MP 이하 권장 — 4 MP에서 비정사각 비율은 최대 크기(2048x2048) 제한으로 픽셀 수가 낮아질 수 있습니다
3프롬프트에 hex 색상 코드를 넣어 체계적인 제품 색상 배리에이션을 만드세요
4편집 시 유지할 요소를 명시하세요 — 얼굴·텍스트·조명 보존력이 매우 뛰어납니다
5원본과 동일한 크기로 편집하려면 aspect_ratio와 resolution 모두 'match_input_image'를 사용하세요

사용 사례

제로부터 퍼블리싱 가능한 최상급 제품 이미지를 수 분 만에 제작
저품질 폰 사진을 퍼블리싱급 제품 샷으로 변환
캐릭터와 감정을 보존한 애니메이션용 시네마틱 키 프레임
동일 인물·일관된 제품 목업으로 수십 개의 광고 배리에이션 제작
인테리어 디자인, 3D 재구성, 음식 이미지 최종 폴리싱

모델 정보

제공자Black Forest Labs
버전2.0
카테고리이미지 생성
가격160 크레딧

API Endpoint

POST /v1/predictions
콘솔에서 테스트문서로 돌아가기