Skip to main content
Tencent ARC보통높음

PhotoMaker

레퍼런스 사진 1-4장으로 인물의 스타일 사진을 생성합니다 (900만+ 실행). Cinematic, Disney Character, Digital Art 등 10가지 스타일 — 얼굴 정체성은 유지하고 나머지를 바꿉니다.

10 크레딧
이미지당 (num_outputs만큼 과금)
사진 1-4장으로 정체성을 유지한 생성
10가지 내장 스타일
프롬프트로 장면·의상 제어
실행당 최대 4장 (이미지당 과금)

지금 바로 실행해보세요

콘솔의 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": "tencentarc/photomaker",
  "input": {
    "input_image": "https://example.com/selfie.jpg",
    "prompt": "portrait photo of a man img, city night background, dramatic lighting",
    "style_name": "Cinematic",
    "num_outputs": 2
  }
}'

파라미터

파라미터타입필수기본값설명
promptstringNoA photo of a person img장면 설명. 반드시 명사 뒤에 트리거 단어 'img'를 포함하세요 (예: 'a photo of a man img')
input_imagestringYes-인물 레퍼런스 사진 (추가는 input_image2-4)
input_image2stringNo-추가 입력 이미지 (선택)
input_image3stringNo-추가 입력 이미지 (선택)
input_image4stringNo-추가 입력 이미지 (선택)
style_namestringNoPhotographic (Default)내장 스타일 프리셋
(No style)CinematicDisney CharactorDigital ArtPhotographic (Default)Fantasy artNeonpunkEnhanceComic bookLowpolyLine art
negative_promptstringNonsfw, lowres, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry네거티브 프롬프트. 트리거 단어를 포함하면 안 됩니다.
num_stepsintegerNo20디노이징 스텝 (1-100)
style_strength_rationumberNo20스타일 강도 (15-50). 높을수록 스타일이 강하게 적용
num_outputsintegerNo1생성할 이미지 수 (1-4). 이미지 수만큼 과금
guidance_scalenumberNo5가이던스 스케일. 1은 classifier-free guidance를 적용하지 않음을 의미합니다.
seedintegerNo-시드
disable_safety_checkerbooleanNofalse생성된 이미지의 안전성 검사기 비활성화.

파일 입력 방법

이 모델의 input_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=tencentarc/photomaker" \
  -F 'input={"prompt":"your prompt here"}' \
  -F "file:input_image=@your_file.png"

이미지 URL 전달

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

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

공통 파라미터

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

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

예제

시네마틱 아바타

레퍼런스 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": "tencentarc/photomaker",
  "input": {
    "input_image": "https://example.com/selfie.jpg",
    "prompt": "portrait photo of a man img, city night background, dramatic lighting",
    "style_name": "Cinematic",
    "num_outputs": 2
  }
}'

팁 & 모범 사례

1프롬프트에 인물 명사 바로 뒤 트리거 단어 'img'가 반드시 필요합니다 — 'a man img'
2같은 인물의 레퍼런스 2-4장을 주면 얼굴 유사도가 눈에 띄게 좋아집니다
3더 과감한 스타일화는 style_strength_ratio를 40 근처로 올리세요
4반드시 당사자 동의가 있는 인물 사진만 사용하세요

사용 사례

프로필 아바타 팩
팀 사진 스타일화
마케팅 페르소나 이미지
졸업앨범·행사 테마 인물 사진

모델 정보

제공자Tencent ARC
버전-
카테고리이미지 생성
가격10 크레딧

API Endpoint

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