qwen-image-2.0-pro
Alibaba image
價格$0.075/image
廠商牌價,無平台加價,按用量計費。 以下為官方 list 價。已登入的使用者可在 /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
追求最高品質的專業檔
原生 2K 解析度,統一編輯
按最長 1k token 指令出資訊圖
Qwen-Image-2.0 Pro 是 Qwen-Image-2.0 系列的專業級檔位,在基礎版偏重生成速度的地方追求最高輸出品質。
- 它共享該系列相對初代 Qwen-Image 的標誌性升級:生成與編輯統一於一個模型、原生 2K 解析度、更好的文字渲染,以及強到能按最長 1k token 的指令產出資訊圖、海報和漫畫的排版能力。
- 官方文件把它與基礎版並列,支援自定義解析度。
- 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) |
常見問題
qwen-image-2.0-pro API 可以免費試用嗎?
可以,新帳號可獲得 10 次試用呼叫和最高 $1 的免費額度,無需信用卡。足以在新增付款方式之前,用真實工作負載試試 qwen-image-2.0-pro。
qwen-image-2.0-pro 最擅長什麼?
追求最高品質的專業檔,以及原生 2K 解析度,統一編輯和按最長 1k token 指令出資訊圖。完整能力請見 About 一節,內容取自廠商官方發布說明。
qwen-image-2.0-pro 的價格是多少?
在 Synthorai 上,qwen-image-2.0-pro 依每張生成圖片 $0.075 計費,按用量計費,無平台加價,無需訂閱。
如何呼叫 qwen-image-2.0-pro API 生成圖片?
向 Synthorai 的 /v1/images/generations 發送 POST,model="qwen-image-2.0-pro"。這是標準 OpenAI images API 形式,無需廠商 SDK。
如何開通 qwen-image-2.0-pro?
把現有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 設為 "qwen-image-2.0-pro" 即可。一組 API key 通用閘道上的所有模型。