🎁 新人 免费注册,送 10 次调用,最高 $1,免绑卡。

GPT Image 2 vs Seedream 5.0 Lite

vs

何时使用哪一个 — 经过整理的结论,而非基准测试表格

gpt-image-2 和 seedream-5-0-260128 均接收文本和图像输入并返回图像,因此真正的区别在于计费方式:gpt-image-2 收费为每百万输入 token $5,每百万输出 token $30,而 seedream-5-0-260128 则是固定的每次调用 $0.035——它们的计费单位不同,且它们之间没有任何单一的换算方式是准确的。当你希望获得可预测的每张图像成本,以便按请求数量制定预算时,请选择 seedream-5-0-260128;如果基于 token 计量的定价模式符合你的数据流,且你希望其费率卡能够随提示词大小按比例缩放,请选择 gpt-image-2(两者中发布于 2026-04-21 的较新版本)。

定价

GPT Image 2 Seedream 5.0 Lite Δ
每张生成图像 $0.035
输入 / 1M tokens $5
输出 / 1M tokens $30

这两个模型的计费单位不同,因此不显示 Δ — 它们之间的转换需要基于我们尚未实测的假设。上面列出的每张费率卡均采用其自身对应的单位。

规格

GPT Image 2 Seedream 5.0 Lite
输入模态 文本 图像 文本 图像
输出模态 图像 图像
发布日期 2026-04-21 2026-01
输出尺寸
  • 1024x1024
  • 1536x1024
  • 1024x1536
  • 2048x2048
  • 2048x1152
  • 3840x2160
  • 2160x3840
  • auto
  • arbitrary WxH (both divisible by 16, aspect ratio 1:3–3:1)
  • 2K
  • 3K
  • 4K
  • custom WxH (total pixels 2560x1440 – 4096x4096, ratio 1:16–16:1)
输入模式 text-to-image, image edit with mask inpainting text-to-image, single-image image-to-image, multi-reference image-to-image (2–14 refs), batch/sequential image sets
每次请求图像数 10 15
格式 png, jpeg, webp png, jpeg
备注

Flexible resolutions: edges up to 3840px in multiples of 16, ratio <=3:1, ~0.65-8.3MP total (incl. 4K 3840x2160)

editing with mask inpainting

all image inputs processed at high fidelity

significantly improved text rendering (precise placement can still struggle)

2K/3K/4K output, png/jpeg

text-to-image + single/multi-reference image editing

batch generation with reference + generated images <=15

500 max IPM

规格转录自各供应商的文档;若供应商未发布某项数据,则直接省略该行,而非进行推断。 完整来源: GPT Image 2 · Seedream 5.0 Lite

单个 Prompt,两个模型 —— 通过网关实测

提示词 A weathered enamel diner mug on a steel counter, the words "OPEN 24H" stencilled on the mug in worn paint, low winter sun raking in from the left, shallow depth of field.

GPT Image 2

GPT Image 2: A weathered enamel diner mug on a steel counter, the words "OPEN 24H" stencilled on the mug in worn paint, low winter sun raking in from the left, shallow depth of field.

模型返回 1402×1122 延迟 18 s

Seedream 5.0 Lite

Seedream 5.0 Lite: A weathered enamel diner mug on a steel counter, the words "OPEN 24H" stencilled on the mug in worn paint, low winter sun raking in from the left, shallow depth of field.

模型返回 2048×2048 延迟 25 s

统一提示词,每个模型单次请求,无重试且无择优挑选 —— 均为各模型返回的首个结果。尺寸与时长均未固定:各模型使用自身的默认值,因为试图适配所有模型的请求参数无法展现任何模型的优势。此处文件已为 Web 重新编码,因此请评判构图与提示词遵循度,而非压缩质量。

只需一行代码即可在它们之间切换

两个 ID 都包含在下方的每个选项卡中 — 高亮显示的两行是唯一的修改。相同的端点,相同的密钥,相同的请求结构。

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.images.generate(
    model="gpt-image-2",
    # model="seedream-5-0-260128",  # 取消注释此行,注释上一行
    prompt="a watercolor lighthouse at dawn",
    size="1024x1024",
)
print(resp.data[0].b64_json[:80])

获取 API 密钥 →

常见问题

GPT Image 2 和 Seedream 5.0 Lite 哪个更便宜?

它们的计费单位不同,因此不存在单一的绝对数字:在上方表格中,GPT Image 2 和 Seedream 5.0 Lite 分别以各自的单位显示。请根据你自己的工作负载进行比较——本页顶部的结论中描述了实际的权衡。

我可以在不进行两次集成的情况下,对 GPT Image 2 和 Seedream 5.0 Lite 进行 A/B 测试吗?

可以。两者均通过同一个兼容 OpenAI 的端点提供服务,并使用同一把 API 密钥——切换只需更改一行模型字符串,因此你可以将一部分流量路由到各个模型并直接比较账单。

价格会随图像尺寸变化吗?

这取决于模型的计费方式。按图像计费的模型,无论提示词或输出尺寸如何,收费均相同;按 token 计费的模型则会随着你渲染的分辨率而增加费用,因此 4K 图像的成本是小尺寸图像的数倍。上方表格标明了各个模型适用的计费方式。

相关对比

来自我们的实测研究