1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
const axios = require('axios');
const FormData = require('form-data');
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/flux-fill-pro";
const reqBody = {
"mask": "https://segmind-sd-models.s3.us-east-1.amazonaws.com/display_images/flux-tools/flux-fill-pro-mask.jpeg",
"seed": 965222,
"image": "https://segmind-sd-models.s3.us-east-1.amazonaws.com/display_images/flux-tools/flux-fill-pro-ip.jpg",
"steps": 50,
"prompt": "flower pot on the table",
"guidance": 3,
"output_format": "jpg",
"safety_tolerance": 2,
"prompt_upsampling": false
};
(async function() {
try {
const formData = new FormData();
// Append regular fields
for (const key in reqBody) {
if (reqBody.hasOwnProperty(key)) {
formData.append(key, reqBody[key]);
}
}
// Convert and append images as Base64 if necessary
const response = await axios.post(url, formData, {
headers: {
'x-api-key': api_key,
...formData.getHeaders()
}
});
console.log(response.data);
} catch (error) {
console.error('Error:', error.response ? error.response.data : error.message);
}
})();
A black-and-white image that describes the part of the image to inpaint. Black areas will be preserved while white areas will be inpainted. Must have the same size as image. Optional if you provide an alpha mask in the original image. Must be jpeg, png, or webp.
Random seed. Set for reproducible generation
The image to inpaint. Can contain an alpha mask. Must be jpeg, png, or webp.
Number of diffusion steps. Higher values yield finer details but increase processing time.
min : 1,
max : 50
Text prompt for image generation
Controls the balance between adherence to the text prompt and image quality/diversity. Higher values make the output more closely match the prompt but may reduce overall image quality. Lower values allow for more creative freedom but might produce results less relevant to the prompt.
min : 2,
max : 5
Format of the output images.
Allowed values:
Safety tolerance, 1 is most strict and 6 is most permissive
min : 1,
max : 6
Automatically modify the prompt for more creative generation
To keep track of your credit usage, you can inspect the response headers of each API call. The x-remaining-credits property will indicate the number of remaining credits in your account. Ensure you monitor this value to avoid any disruptions in your API usage.
Flux Fill Pro is an advanced state-of-the-art AI model developed by Black Forest Labs, specializing in professional inpainting and outpainting tasks. This model enables users to edit or extend images seamlessly, producing natural and cohesive results.
Professional Inpainting and Outpainting: Allows for the removal or replacement of objects and the extension of images beyond their original borders, ensuring edits blend naturally with the existing content.
State-of-the-Art Performance: Delivers high-quality results by understanding complex scenes and maintaining consistency across edits, preserving lighting, perspective, and context.
Versatile Application: Suitable for various creative projects, including image editing, content creation, and restoration, where seamless integration of new elements is essential.
Natural and Seamless Edits: Ensures that modifications integrate smoothly with the original image, maintaining a cohesive appearance.
Consistency in Output: Maintains uniformity across different edits, preserving the original image's integrity.
Efficiency in Workflow: Streamlines the editing process by automating complex inpainting and outpainting tasks, reducing the need for manual adjustments.
Object Removal: Effortlessly eliminate unwanted elements from photos, such as power lines, people, or objects, while maintaining a natural look.
Image Restoration: Repair old or damaged photos by filling in missing or deteriorated areas with precision.
Content Creation: Add new elements or expand scenes within existing images based on a descriptive prompt.
Experimentation: Explore different inpainting and outpainting techniques and styles for unique creative outputs.
By incorporating advanced inpainting and outpainting capabilities, Flux Fill Pro offers a powerful tool for professionals seeking to edit or extend images with natural, seamless results.