Image2 · 4K wallpaper-grade detail · pay as you go from ¥0.08 / image
One line to create, another to refine
4K takes about 2-3 minutes…
Please download promptly — images are stored temporarily and long-term retention is not guaranteed.
Creations may be featured in the system showcase — opt out per image under My creations or with the switch above.
Wallpaper-grade resolution, crisp detail, ready for desktop & print.
2K in seconds, 4K in about a minute — what you see is what you get.
Pay only for what you use — no plan lock-in, balance always available.
Generated images are cleared for commercial projects.
Four steps to a great image — just fill in the blanks
One line: object + action + scene. e.g. "a fluffy orange cat on a sunlit windowsill." Be specific — not just "a cat".
Name the look: cinematic, studio photography, watercolor, 3D render, cyberpunk… one style word sets the whole feel.
Add lighting & emotion: golden backlight, soft morning mist, neon night, volumetric rays — light drives the "wow".
End with quality words (ultra detailed, 8K, photorealistic); put "avoid X" last so it is not read as the subject.
Breathtaking 4K desktop wallpaper: a Norwegian fjord at golden sunrise, snow-capped mountains, a mirror lake, a wooden cabin, foreground wildflower meadow, warm volumetric sun rays, ultra detailed, cinematic, photorealistic, 8k quality
Tip: open any gallery image below and hit "Copy prompt" to reuse it.
Standard REST endpoint, pay-as-you-go. Try it in the playground above first.
POST https://llmapi.pro/v1/images/generations
Authorization: Bearer <metered API key>
image2
2K · ¥0.08 / image
image2-4k
4K · ¥0.15 / image
curl https://llmapi.pro/v1/images/generations \
-H "Authorization: Bearer $LLMAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "image2-4k",
"prompt": "a snow mountain lake at dusk, warm backlight, cinematic",
"n": 1
}'
const res = await fetch("https://llmapi.pro/v1/images/generations", {
method: "POST",
headers: {
"Authorization": `Bearer ${process.env.LLMAPI_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
model: "image2-4k", // 4K · ¥0.15 · image2=2K · 返回 b64_json
prompt: "a snow mountain lake at dusk, cinematic",
n: 1,
}),
});
const data = await res.json();
// 图片以 base64 (b64_json) 内联返回(无外链)
const b64 = data.data[0].b64_json;
const buf = Buffer.from(b64, "base64"); // -> 保存为 .png
Pay-as-you-go. Body fields: model, prompt, n; both image2 and image2-4k models are available.
Pick resolution by model name: image2=2K, image2-4k=4K; images return inline as b64_json.
2K is ¥0.08/image and 4K is ¥0.15/image. Pay-as-you-go, only for what you use.
2K usually takes seconds; 4K about a minute. Progress shows while generating.
Yes — images from Image2 can be used in commercial projects.
Log in and top up on the API billing page to fund image generation.