Generate Images Using Image Guidance
This feature allows for uploaded or generated Images as reference, apply ControlNet and add finer adjustments to your image appearance.
Update
Image guidance via API now supports multiple ControlNets
Follow these recipes with code snippets to generate images using image guidance
Style Reference
This guide will recreate the following Style Reference functionality in the Web UI via API.
Parameter breakdown:
- Specify your image type in
initImageType
as eitherGENERATED
for Leonardo.Ai generated images orUPLOADED
if you upload your own image. - The parameter
strengthType
is a string comprised of the values Low, Mid, High, Ultra, and Max. For Content Reference and Character Reference, Low, Mid, and High are supported. Style Reference supports Low to Max. influence
will only appear if multiple Style References are used, and only used for Style Reference. This is a ratio of the influence of the two images. i.e. The right image from the example will have a higher influence on the output.
E.g. If Image A has an influence of 1 and Image B also has an influence of 1, their ratio will be 1:1. Similarly, if Image A has an influence of 0.5 and Image B has an influence of 0.5, the ratio remains 1:1. It's important to note that the total of both image influences does not necessarily need to add up to 1.
- If only using one style reference image, you donβt need to include influence in the body parameter.
Sample Request
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 512,
"modelId": "aa77f04e-3eec-4034-9c07-d0f619684628",//Leonardo Kino XL
"prompt": "A wistful young woman stands in the beaming doorway of a sunlit room",
"presetStyle":"CINEMATIC",
"width": 1024,
"photoReal": true,
"photoRealVersion":"v2",
"alchemy":true,
"controlnets": [
{
"initImageId": <YOUR_GENERATED_IMAGE_ID>,
"initImageType": "GENERATED",
"preprocessorId": 67, //Style Reference ID
"strengthType": "High",
"influence": 0.39
},
{
"initImageId": <YOUR_INIT_IMAGE_ID>,
"initImageType": "UPLOADED",
"preprocessorId": 67,
"strengthType": "High",
"influence": 0.64
}
]
}
Character Reference
This guide will recreate the following functionality in the Web UI via API.
Parameter breakdown:
- Specify your image type in
initImageType
as eitherGENERATED
for Leonardo.Ai generated images orUPLOADED
if you upload your own image. - The parameter
weight
is a numeric value between 0-2, and 'strengthType
' is a string comprised of the values between Low-Max. This will be bucketed under these settings:
strengthType | weight | Description |
---|---|---|
Low | 0-0.66 | Provide greatest flexibility at the cost of resemblance |
Mid | 0.66-1.32 | Display reasonable flexibility and more resemblance. |
High | 0.32-2 | Less flexible but have the best resemblance. |
Note
Character Reference is not intended as a face swap feature and does not guarantee a perfect replica of a person in the output.
Sample Request
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 576,
"modelId": "aa77f04e-3eec-4034-9c07-d0f619684628",//Leonardo Kino XL
"prompt": "A mesmerizing lady with cascading strands of blonde hair gazes through a misty train window",
"presetStyle":"CINEMATIC",
"width": 1024,
"photoReal": true,
"photoRealVersion":"v2",
"alchemy":true,
"controlnets": [
{
"initImageId": <YOUR_INIT_IMAGE_ID>,
"initImageType": "UPLOADED",
"preprocessorId": 133,//Character Reference Id
"strengthType": "Mid",
},
{
"initImageId": <YOUR_GENERATED_IMAGE_ID>,
"initImageType": "GENERATED",
"preprocessorId": 67,//Style Reference Id
"strengthType": "High",
}
]
}
Image to Image Guidance
Sample Request
Image to Image does not require ControlNet preprocessor IDs, below is an example request.
Note
- Image to Image with multiple ControlNets is incompatible with most SDXL models, except for Style Reference (67) and Character Reference (133) Preprocessor IDs.
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 644,
"modelId": "b24e16ff-06e3-43eb-8d33-4416c2d75876" //Leonardo Lightning XL,
"prompt": "Vibrant makeup bottle in a showroom",
"presetStyle":"DYNAMIC",
"width": 1040,
"alchemy":true,
"controlnets": [
{
"initImageId":<YOUR_GENERATED_IMAGE_ID>,
"initImageType": "GENERATED",
"preprocessorId": 67, //Style Reference ID
"strengthType": "High",
}
],
"init_image_id": <YOUR_INIT_IMAGE_ID> ,
"init_strength": 0.5,
}
Other ControlNets
Image Guidance uses different preprocessor IDs depending on the base model for different ControlNets. Refer to the table below to combine multiple ControlNets.
ControlNet | SD1.5 | SD2.1 | SDXL | PHOENIX |
---|---|---|---|---|
Style Reference | x | x | 67 | 166 |
Character Reference | x | x | 133 | x |
Content Reference | x | x | 100 | x |
Edge to Image | 1 | 12 | 19 | x |
Depth to Image | 3 | 13 | 20 | x |
Pose to Image | 7 | 16 | 21 | x |
Text Image Input | 11 | 18 | 22 | x |
Sketch to Image | 10 | 17 | x | x |
Normal Map | 6 | 15 | x | x |
Line Art | 5 | x | x | x |
Pattern to Image | 8 | x | x | x |
QR Code to Image | 9 | x | x | x |
Sample Request
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 512,
"modelId": "aa77f04e-3eec-4034-9c07-d0f619684628",//Leonardo Kino XL
"prompt": "Intricately swirling nebulas dance across a vividly colored galactic map",
"width": 1024,
"alchemy":true,
"controlnets": [
{
"initImageId": <YOUR_GENERATED_IMAGE_ID>,
"initImageType": "GENERATED",
"preprocessorId": 19, //Edge to Image ID
"weight": "0.5"
}
]
}
Image Guidance using Uploaded or Generated Images (Legacy format)
The guide will recreate the following functionality in the Web UI via API.
Limitations
- Legacy Image Guidance features on API does not have full parity with the Web UI.
controlNetType
,controlNet
andweighting
are now legacy ControlNet parameters.
ControlNet | controlNetType |
---|---|
Edge to Image | CANNY |
Pose to Image | POSE |
Depth to Image | DEPTH |
Sample Request For Uploaded Images
This request has no ControlNets added, it is only using Image to Image Guidance.
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 512,
"modelId": "1e60896f-3c26-4296-8ecc-53e2afecc132",
"prompt": "An oil painting of an orange cat",
"width": 512,
"init_image_id": <YOUR_INIT_IMAGE_ID> ,
"init_strength": 0.5,
}
Sample Request for Generated Images
Legacy Feature
The following request is a legacy ControlNet parameter and will be soon be deprecating. We recommend to use the new ControlNet parameters which also allows for multiple ControlNets.
This request adds Edge to Image ControlNet using your previously generated image.
curl --request POST \
--url https://cloud.leonardo.ai/api/rest/v1/generations \
--header 'accept: application/json' \
--header 'authorization: Bearer <YOUR_API_KEY>' \
--header 'content-type: application/json' \
--data '
{
"height": 512,
"modelId": "1e60896f-3c26-4296-8ecc-53e2afecc132",
"prompt": "An oil painting of an orange cat",
"width": 512
"init_generation_image_id": "<YOUR_GENERATED_IMAGE_ID>",
"init_strength": 0.5,
"controlNet": True,
"controlNetType": "CANNY"
}
Updated 25 days ago
View our other API References below