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 通用网关上的全部模型。