🎁 新用戶 免費註冊,送 10 次呼叫,最高 $1,免綁卡。

GPT Image 1 Mini vs GPT Image 2

vs

何時該用哪一個 — 綜合評斷,而非基準測試數據表

gpt-image-1-mini 是省錢檔,輸入每百萬 token $2、輸出 $8,對比 $5 和 $30——大約便宜 2.5 倍和 3.75 倍——尺寸固定為 1024x1024 / 1536x1024 / 1024x1536 / auto。gpt-image-2 買到的是解析度:任意尺寸,邊長最高 3840x2160,按 16 的倍數取值。兩者的遮罩重繪、png/jpeg/webp 輸出和每次請求最多 10 張都相同,所以大批量 1K 出圖選 mini,畫幅需要超過 1536px 時選 gpt-image-2。

定價

GPT Image 1 Mini GPT Image 2 Δ
輸入 / 1M tokens $2 $5 0.4×
輸出 / 1M tokens $8 $30 0.27×

費率取自建置時的即時目錄;各模型頁面皆附有目前的費率卡。

它們的相對位置 — 在此計費單位下,所有 8 個 圖像生成 模型的 每 1M tokens 的輸出價格(對數尺度)

規格

GPT Image 1 Mini GPT Image 2
輸入模態 文字 影像 文字 影像
輸出模態 影像 影像
發布日期 2025-10-06 2026-04-21
輸出尺寸
  • 1024x1024
  • 1536x1024
  • 1024x1536
  • auto
  • 1024x1024
  • 1536x1024
  • 1024x1536
  • 2048x2048
  • 2048x1152
  • 3840x2160
  • 2160x3840
  • auto
  • arbitrary WxH (both divisible by 16, aspect ratio 1:3–3:1)
輸入模式 text-to-image, image edit with mask inpainting text-to-image, image edit with mask inpainting
每次請求圖片數 10 10
格式 png, jpeg, webp png, jpeg, webp
備註

Cost-efficient version of GPT Image 1

1024x1024 / 1024x1536 / 1536x1024

editing via v1/images/edits

vendor lists indicative per-image costs by quality tier (token-billed on Synthorai; see the live prices above)

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)

規格摘錄自各供應商的文件;供應商未發布的資料列會直接省略,而非自行推測。 完整來源: GPT Image 1 Mini · 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.

GPT Image 1 Mini

GPT Image 1 Mini: 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.

模型回傳 1536×1024 延遲 19 s

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

單一提示詞,每個模型一次請求,不重試且不擇優挑選——皆為各模型回傳的第一個結果。尺寸與長度皆未強制指定:每個模型均使用其預設值,因為若將請求調整為迎合所有模型,反而無法展現任何一方的優勢。此處的檔案皆已針對網頁重新編碼,因此請評斷其構圖與提示詞遵循度,而非壓縮品質。

只需一行程式碼即可在兩者間切換

以下每個頁籤中都有這兩個 ID — 醒目提示的這兩行是唯一的修改處。相同的端點,相同的金鑰,相同的請求結構。

from openai import OpenAI

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

resp = client.images.generate(
    model="gpt-image-1-mini",
    # model="gpt-image-2",  # 取消註解此行,並註解上一行
    prompt="a watercolor lighthouse at dawn",
    size="1024x1024",
)
print(resp.data[0].b64_json[:80])

取得 API 金鑰 →

常見問題

GPT Image 1 Mini 和 GPT Image 2 哪個比較便宜?

GPT Image 1 Mini 在 輸入 / 1m tokens 上較便宜($2 對比 $5,相差 2.5×)。其他項目可能呈現相反結果 — 上表提供完整資訊,實際成本取決於您的使用組合。

我可以在不進行兩次整合的情況下,對 GPT Image 1 Mini 和 GPT Image 2 進行 A/B 測試嗎?

可以。兩者皆透過同一個相容 OpenAI 的端點提供服務,並使用同一把 API 金鑰 — 切換只需更改一行的模型字串,因此您可以將部分流量分別導向兩者並直接比較帳單。

價格會隨圖片大小改變嗎?

這取決於模型的計費方式。按圖片計費的模型無論提示或輸出大小為何,收費皆相同;按 token 計費的模型則會根據您生成的解析度等比例縮放,因此 4K 圖片的成本會是小圖片的數倍。上表顯示了各模型適用的計費方式。

相關比較