qwen-image-2.0-pro
공급사 정가. 플랫폼 마진 없음, 종량제. 아래는 공식 정가입니다. 로그인한 고객은 /console/pricing 에서 워크스페이스 할인이 반영된 실제 가격을 볼 수 있습니다.
30초 만에 qwen-image-2.0-pro 사용하기
OpenAI 호환. base_url만 바꾸면 SDK는 그대로. POST /v1/images/generations
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.images.generate(
model="qwen-image-2.0-pro",
prompt="a watercolor lighthouse at dawn",
size="1024x1024",
)
print(resp.data[0].b64_json[:80])import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.images.generate({
model: "qwen-image-2.0-pro",
prompt: "a watercolor lighthouse at dawn",
size: "1024x1024",
});
console.log(resp.data?.[0]?.b64_json?.slice(0, 80));curl https://synthorai.io/v1/images/generations \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "qwen-image-2.0-pro",
"prompt": "a watercolor lighthouse at dawn",
"size": "1024x1024"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Images.Generate(context.TODO(), openai.ImageGenerateParams{
Model: "qwen-image-2.0-pro",
Prompt: "a watercolor lighthouse at dawn",
Size: "1024x1024",
})
fmt.Println(resp.Data[0].B64JSON[:80])
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.images.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ImagesResponse resp = client.images().generate(
ImageGenerateParams.builder()
.model("qwen-image-2.0-pro")
.prompt("a watercolor lighthouse at dawn")
.size("1024x1024")
.build());
System.out.println(resp.data().orElseThrow().get(0).b64Json().orElseThrow().substring(0, 80));qwen-image-2.0-pro 소개
Qwen-Image-2.0 Pro는 Qwen-Image-2.0 시리즈의 프로급 티어로, 기본 변형이 생성 속도를 우선하는 반면 최대 출력 품질을 겨냥합니다.
- 1세대 Qwen-Image 대비 시리즈를 정의하는 업그레이드를 공유합니다: 하나의 모델에서 생성과 편집 통합, 네이티브 2K 해상도, 개선된 텍스트 렌더링, 그리고 최대 1k 토큰의 지시로 인포그래픽·포스터·만화를 만들 만큼 강한 타이포그래피입니다.
- 공식 문서는 커스텀 해상도 지원과 함께 기본 모델과 나란히 이 모델을 소개합니다.
- Synthorai는 OpenAI 호환 이미지 API로 이 모델을 노출합니다.
스펙 및 제한
| 모달리티 | text + image → image |
| 이미지 기능 | Native 2K, custom WxH and standard aspect presets; flagship fused generation+editing with enhanced text rendering, realistic textures and semantic adherence; 1-6 images per request; negative prompts |
| 특기 사항 | Recommended flagship of the Qwen-Image-2.0 family (unified gen-edit, lighter architecture per the 2026-02-11 announcement) |
출처: Alibaba 공식 문서 ↗
자주 묻는 질문
qwen-image-2.0-pro API는 무료로 사용해 볼 수 있나요?
네, 신규 계정에는 10회의 체험 호출과 최대 $1의 무료 크레딧이 제공되며, 카드 등록이 필요 없습니다. 결제 수단을 추가하기 전에 실제 워크로드로 qwen-image-2.0-pro을(를) 충분히 시험해 볼 수 있는 양입니다.
qwen-image-2.0-pro은(는) 무엇에 가장 강한가요?
최대 품질을 겨냥한 프로 티어, 그리고 통합 편집의 네이티브 2K 해상도 및 최대 1k 토큰 지시로 인포그래픽 생성. 전체 내용은 벤더의 공식 릴리스 노트를 정리한 About 섹션을 참고하세요.
qwen-image-2.0-pro의 가격은 얼마인가요?
Synthorai에서 qwen-image-2.0-pro은(는) 생성 이미지 1장당 $0.075로 과금됩니다. 종량제, 플랫폼 마진 없음, 구독 불필요.
qwen-image-2.0-pro API로 이미지를 어떻게 생성하나요?
Synthorai의 /v1/images/generations에 model="qwen-image-2.0-pro"로 POST 하면 됩니다. OpenAI images API 형태 그대로라 벤더 SDK가 필요 없습니다.
qwen-image-2.0-pro은(는) 어떻게 이용하나요?
기존 OpenAI SDK의 base_url을 "https://synthorai.io/v1"로 지정하고 model="qwen-image-2.0-pro"로 설정하면 끝입니다. API 키 하나로 게이트웨이의 모든 모델을 사용할 수 있습니다.