Inpaint

Inpaint image

Creates a pixel art image based on the provided parameters. Called "Inpaint" in the plugin.

Supported image size:

  • Maximum area 200x200

Supported features:

  • Inpainting
  • Init image
  • Forced palette
  • Transparent background

Using the Python client:

import pixellab

client = pixellab.Client(secret="YOUR_API_TOKEN")

response = client.inpaint(
    description="boy with wings",
    image_size=dict(width=16, height=16),
    inpainting_image=image_of_boy_without_wings,
    mask_image=mask_image,
)
response.image.pil_image()
post/inpaint

Request body

descriptionstring required

Text description of the image to generate

negative_descriptionstring

Text description of what to avoid in the generated image

text_guidance_scalenumber

How closely to follow the text description

extra_guidance_scalenumber

(Deprecated)

outline'single color black outline' | 'single color outline' | 'selective outline' | 'lineless'
shading'flat shading' | 'basic shading' | 'medium shading' | 'detailed shading' | 'highly detailed shading'
detail'low detail' | 'medium detail' | 'highly detailed'
view'side' | 'low top-down' | 'high top-down'
direction'north' | 'north-east' | 'east' | 'south-east' | 'south' | 'south-west' | 'west' | 'north-west'
isometricboolean

Generate in isometric view

oblique_projectionboolean

Generate in oblique projection

no_backgroundboolean

Generate with transparent background

init_image_strengthinteger

Strength of the initial image influence

seedinteger nullable

Seed decides the starting noise

Example request

{
  "description": "cute dragon",
  "image_size": {
    "height": 128,
    "width": 128
  },
  "no_background": true
}

Response

Successfully generated image

Changes