AI Image Generator — Text to Image
Pricing
$1.00 / 1,000 image generateds
AI Image Generator — Text to Image
Turn text prompts into images. Provide one or many prompts and get a public image URL for each generated image.
Pricing
$1.00 / 1,000 image generateds
Rating
0.0
(0)
Developer
Goutam Soni
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Turn text prompts into images. Give it one or many prompts and it generates an image for each, stores it, and returns a public image URL you can use anywhere.
What it does
For every prompt you provide, the actor:
- Generates an image from the text using your chosen model and dimensions.
- Stores the image in the run's key-value store.
- Returns a public URL to that image, plus the settings used.
Great for bulk cover art, thumbnails, backgrounds, mockups, product concepts, social posts, or feeding generated images into a downstream automation.
Example
| Input | Value |
|---|---|
| Prompts | a red fox in a snowy forest, cinematic lighting |
| Width | 1024 |
| Height | 1024 |
| Model | flux |
Input
| Field | Type | Default | Notes |
|---|---|---|---|
prompts | array of strings | — | One or more text prompts. A newline-separated string also works. |
width | integer | 1024 | Image width in pixels (64–2048) |
height | integer | 1024 | Image height in pixels (64–2048) |
model | string | flux | flux (higher quality) or turbo (faster) |
seed | integer | — | Optional. Set for reproducible results; leave empty for a fresh image each run |
maxConcurrency | integer | 3 | How many images to generate in parallel (1–8) |
Output
One row per prompt:
| Field | Description |
|---|---|
prompt | The text prompt used |
imageUrl | Public URL to the generated image |
imageKey | Storage key of the image record |
model | Model used |
width, height | Image dimensions |
seed | Seed used, if any |
On a failed prompt the row instead contains prompt and error.
Pricing
Pay-per-result: you are charged only for each image that is successfully generated and stored. Failed prompts are free.
Tips
- Descriptive prompts produce better images. Include subject, style, lighting, and mood, for example
a cozy coffee shop interior, warm tones, soft morning light. - Set a
seedto reproduce the exact same image on a later run. - Use
turbofor speed,fluxfor quality.