Generate Image
Generate image (pixflux)
Creates a pixel art image based on the provided parameters. Called "Create image (new)" in the plugin.
Supported image size:
- Minimum area 32x32 and maximum area 400x400
Supported features:
- Init image
- Forced palette
- Transparent background
Using the Python client:
import pixellab
client = pixellab.Client(secret="YOUR_API_TOKEN")
response = client.generate_image_pixflux(
description="cute dragon",
image_size=dict(width=128, height=128),
)
response.image.pil_image()
post/generate-image-pixflux
Request body
Example request
{
"description": "cute dragon",
"image_size": {
"height": 128,
"width": 128
},
"no_background": true
}Response
Successfully generated image
Changes
No recorded changes to this endpoint across all 1 revision of this API.