Hunyuan Image 2.1
hunyuan-image-2-1Generate high-quality 2K resolution images from text prompts
- Τιμή
- 0,024 $/εικόνα
- Αναλογίες διαστάσεων
- 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3
- Είσοδος → Έξοδος
- Κείμενο → Εικόνα
- Προγραμματιστής
- Tencent
- Ενημερώθηκε
- 24 Σεπτεμβρίου 2026
Playground
Δοκιμάστε Hunyuan Image 2.1
Είσοδος & Έξοδος
Αυτή η εκτέλεση
0,024 $ · 2,4 πιστωτικές μονάδες
Για λογαριασμούς χωρίς αγορά: εκτελέσεις πάνω από 2 πιστωτικές μονάδες χρειάζονται ανεβάσματος.
Νέος εδώ;
10 δωρεάν πιστωτικές μονάδες (0,10 $) όταν εγγραφείς με Google
Χρησιμοποιήσιμο 24 ώρες μετά την εγγραφή, έως 5 εκτελέσεις ανά ημέρα και το πολύ 2 πιστωτικές μονάδες ανά εκτέλεση. Άλλες μέθοδοι σύνδεσης ξεκινούν χωρίς πιστωτικές μονάδες.
Examples
Open full sizePrompt
A cartoon consisting of four panels, arranged in a 2x2 grid, depicts a chameleon's dilemma. Top left: A cartoon-style chameleon rests on a broad, emerald green leaf. Its skin, the exact same green color, with light green texture details, creates perfect camouflage, almost blending in with the background. The chameleon's large eyes flicker curiously, its body relaxed against a backdrop of blurred green jungle. Top right: The same chameleon climbs from the edge of the leaf onto a rough, dark brown branch. Its body has completely transformed to the same dark brown as the branch, and its skin mimics the texture of bark. Its head is slightly raised, its mouth curled upward, and its eyes reveal a look of pride and satisfaction. Bottom left: The chameleon confidently approaches a picnic blanket spread on the grass. One of its front paws has already stepped onto the blanket, which features a red and white checkered pattern. The chameleon's body, still brown, is about to fully step onto the intricately patterned fabric, its expression filled with anticipation. Bottom right: The chameleon stands perfectly in the center of the red and white checkered picnic blanket. Its color system has malfunctioned, and its body surface rapidly and chaotically flashes through a variety of colors and patterns, including neon pink spots, electric blue stripes, and pixelated blocks, completely failing to match the checkered background. Its eyes are wide open, its mouth gaping in a frightened O shape, an…
Settings
- aspect_ratio
- 1:1
Open full sizePrompt
A wildlife poster design for the Serengeti plains features a central illustration of a chibi-style explorer riding a lion cub, set against a backdrop of rolling hills. At the top of the composition, the title "Serengeti: Roar of Adventure" is displayed in a large, whimsical font with decorative, swirling letters. The main scene depicts a wide-eyed chibi explorer, characterized by a large head and a small body, sitting atop a friendly lion cub. The explorer wears a green explorer's hat, a backpack, and holds onto the cub's mane, looking forward with a look of wonder. The lion cub, with a light brown mane and a smiling expression, strides forward, its body rendered in warm orange tones. In the background, the Serengeti plains are illustrated with rolling hills and savanna grass, all in shades of warm yellow and soft brown. Below the main illustration, the tagline "Where Dreams Run Wild" is written in a smaller, elegant script. The overall presentation is that of a poster design, combining a cute chibi illustration style with playful, whimsical typography.
Settings
- aspect_ratio
- 1:1
Open full sizePrompt
A vibrant winter wonderland poster for Lapland is presented, featuring a central illustration of a fluffy fox sledding down a snowy hill beneath an aurora borealis sky. In the foreground, a small, fluffy fox with bright orange fur is depicted joyfully riding a simple wooden sled. The fox wears a cozy, patterned scarf around its neck, and its tail curls happily as it glides over the snow. The background is dominated by a spectacular aurora borealis, with swirling curtains of light in shades of icy cyan and pink dancing across the night sky, interspersed with sparkling white snowflakes. Snow-covered mountains and pine trees are visible beneath the aurora. At the top of the poster, the text "Lapland Magic" is displayed in a large, playful font that resembles snowflakes. A smaller tagline, "Find Your Frosty Adventure," is written in an elegant script below the main title. The overall color palette consists of of icy cyan, pink, and sparkling white, creating a magical and inviting atmosphere. The presentation is that of a graphic design poster, combining illustration and typography.
Settings
- aspect_ratio
- 1:1
Σχετικά με το Hunyuan Image 2.1
Το Hunyuan Image 2.1 είναι ένα μοντέλο του Tencent στην κατηγορία Δημιουργία εικόνων. Στο Railwail, το Hunyuan Image 2.1 κοστίζει 0,024 $ ανά εικόνα. Υποστηριζόμενες αναλογίες διαστάσεων: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2 και 2:3.
Τιμολόγηση
| Ανά εικόνα | 0,024 $ ανά εικόνα |
|---|
- 1 πιστωτική μονάδα = 0,01 $
Αριθμομηχανή κόστους
Αριθμομηχανή τιμών
Σύνολο
2,40 $
240 πιστωτικές μονάδες
Ανά εκτέλεση
0,024 $ · 2,4 πιστωτικές μονάδες
Σταθερή τιμή ανά εκτέλεση, γνωστή πριν ξεκινήσει η εκτέλεση.
API
curl https://railwail.com/api/v1/images/generations \
-H "Authorization: Bearer $RAILWAIL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hunyuan-image-2-1",
"prompt": "A lighthouse on a rocky coast at sunset, photorealistic"
}'import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["RAILWAIL_API_KEY"],
base_url="https://railwail.com/api/v1",
)
image = client.images.generate(
model="hunyuan-image-2-1",
prompt="A lighthouse on a rocky coast at sunset, photorealistic",
)
print(image.data[0].url)import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.RAILWAIL_API_KEY,
baseURL: "https://railwail.com/api/v1",
});
const image = await client.images.generate({
model: "hunyuan-image-2-1",
prompt: "A lighthouse on a rocky coast at sunset, photorealistic"
});
console.log(image.data[0].url);// npm install railwail
import railwail from "railwail";
const rw = railwail(process.env.RAILWAIL_API_KEY);
const res = await rw.image("hunyuan-image-2-1", "A lighthouse on a rocky coast at sunset, photorealistic");
console.log(res.data[0].url);Προδιαγραφές
- ID μοντέλου
hunyuan-image-2-1- Ανάπτυξη
- Tencent
- Κατηγορία
- Δημιουργία εικόνων
- Είσοδος
- Κείμενο
- Έξοδος
- Εικόνα
- Αναλογίες διαστάσεων
- 1:1, 16:9, 9:16, 4:3, 3:4, 3:2, 2:3
- Χρέωση
- Σταθερή τιμή, γνωστή πριν από την εκτέλεση
- Καταχώρηση καταλόγου ενημερώθηκε
- 24 Σεπτεμβρίου 2026
Παράμετροι εισόδου
Εισόδους και ρυθμίσεις από το σχήμα εισόδου του μοντέλου. Το παράδειγμα στην ενότητα API δείχνει ποιες από αυτές δέχεται το API.
promptΥποχρεωτικόΤύπος: ΚείμενοΠροεπιλογή: –Επιτρεπόμενες τιμές: –aspectRatioΤύπος: ΕπιλογήΠροεπιλογή: –Επιτρεπόμενες τιμές: 1:1, 16:9, 9:16, 4:3, 3:4, 3:2 ή 2:3
Ετικέτες
- replicate
- tencent
- text-to-image
Περιπτώσεις χρήσης
Συχνές ερωτήσεις
Τι είναι Hunyuan Image 2.1;
Το Hunyuan Image 2.1 είναι ένα μοντέλο του Tencent στην κατηγορία Δημιουργία εικόνων. Στο Railwail μπορείτε να το καλέσετε με ένα API key μέσω του Railwail API.
Πόσο κοστίζει το Hunyuan Image 2.1 στο Railwail;
Στο Railwail, το Hunyuan Image 2.1 κοστίζει 0,024 $ ανά εικόνα. Η τιμή είναι γνωστή πριν ξεκινήσει η εκτέλεση. Η χρήση πληρώνεται από προπληρωμένες πιστωτικές μονάδες· 1 πιστωτική μονάδα ισούται με 0,01 $.
Ποιες ρυθμίσεις υποστηρίζει το Hunyuan Image 2.1;
Σύμφωνα με το σχήμα εισόδου του, το Hunyuan Image 2.1 γνωρίζει αυτές τις παραμέτρους: prompt και aspectRatio (1:1, 16:9, 9:16, 4:3, 3:4, 3:2 ή 2:3).
Πόσο γρήγορο είναι το Hunyuan Image 2.1;
Δεν υπάρχουν αρκετές μετρημένες εκτελέσεις του Hunyuan Image 2.1 στο Railwail ακόμα για να δηλωθεί ένας χρόνος εκτέλεσης. Εξαρτάται από την είσοδο, τις ρυθμίσεις και το φορτίο στον πάροχο.
Είναι το Hunyuan Image 2.1 καλύτερο από το FLUX 1.1 Pro;
Αυτό εξαρτάται από την εργασία. Το Hunyuan Image 2.1 (Tencent) και το FLUX 1.1 Pro (Black Forest Labs) είναι και τα δύο μοντέλα στην κατηγορία Δημιουργία εικόνων. Η σελίδα σύγκρισης δείχνει τις τιμές και τις προδιαγραφές τους παράλληλα.
Σύγκριση Hunyuan Image 2.1 και FLUX 1.1 ProΠώς χρησιμοποιώ το Hunyuan Image 2.1 μέσω του API;
Δημιουργήστε ένα Railwail API key και στείλτε το αίτημά σας με το ID μοντέλου hunyuan-image-2-1. Παραδείγματα κώδικα για curl, Python και JavaScript βρίσκονται στην ενότητα API αυτής της σελίδας.
Συγκρίσιμα μοντέλα
Όλα σε αυτήν την κατηγορία- FLUX 1.1 ProBlack Forest Labs
Black Forest Labs' flagship text-to-image model. Faster generation than FLUX.1 Pro at higher prompt adherence, with strong photorealism and reliable spatial composition. Runs as a hosted Replicate model.
- Flux 1.1 Pro UltraBlack Forest Labs
FLUX 1.1 Pro in ultra mode. Up to 4 megapixel images with raw mode for photorealism.
- Flux DevBlack Forest Labs
Black Forest Labs' development model. Fast, high-quality image generation with LoRA support.
Χρησιμοποιήστε το Hunyuan Image 2.1 μέσω του API
Ένα κλειδί API για κάθε μοντέλο στο Railwail. Η χρήση χρεώνεται από προπληρωμένα πιστωτικά, 1 πιστωτικό = 0,01 $.