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
const axios = require('axios');
const fs = require('fs');
const path = require('path');
async function toB64(imgPath) {
const data = fs.readFileSync(path.resolve(imgPath));
return Buffer.from(data).toString('base64');
}
const api_key = "YOUR API-KEY";
const url = "https://api.segmind.com/v1/sd1.5-img2img";
const data = {
"image": "toB64('/sd-img2img-input.jpeg')",
"samples": 1,
"prompt": "A fantasy landscape, trending on artstation, mystical sky",
"negative_prompt": "nude, disfigured, blurry",
"scheduler": "DDIM",
"num_inference_steps": 25,
"guidance_scale": 10.5,
"strength": 0.75,
"seed": 98877465625,
"img_width": 512,
"img_height": 512,
"base64": false
};
(async function() {
try {
const response = await axios.post(url, data, { headers: { 'x-api-key': api_key } });
console.log(response.data);
} catch (error) {
console.error('Error:', error.response.data);
}
})();
Input Image.
Number of samples to generate.
min : 1,
max : 4
Prompt to render
Prompts to exclude, eg. 'bad anatomy, bad hands, missing fingers'
Type of scheduler.
Allowed values:
Number of denoising steps.
min : 20,
max : 100
Scale for classifier-free guidance
min : 0.1,
max : 25
How much to transform the reference image
min : 0.1,
max : 1
Seed for image generation.
Image resolution.
Allowed values:
Image resolution.
Allowed values:
Base64 encoding of the output image.
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.
Stable Diffusion Img2Img is a transformative AI model that's revolutionizing the way we approach image-to-image conversion. This model harnesses the power of machine learning to turn concepts into visuals, refine existing images, and translate one image to another with text-guided precision. It's an invaluable asset for creatives, marketers, and developers seeking to push the boundaries of digital imagery.
At the heart of Stable Diffusion Img2Img is a robust algorithm capable of understanding and manipulating visual content at a granular level. It takes an existing image and, guided by textual prompts, morphs it into a new creation that aligns with the user's vision. This model excels in tasks such as style transfer, detail enhancement, and subject transformation, all while maintaining the integrity of the original composition.
Text-Guided Imagery: Integrates textual prompts to steer the image transformation process, ensuring outputs are aligned with user intent.
Seamless Style Transfers: Adapts the style of one image to another, enabling a smooth transition that feels natural and intentional..
Detail Enhancement:Amplifies the details within images, bringing clarity and vibrance to visual elements.
Creative Flexibility: Offers a wide range of possibilities, from subtle alterations to complete thematic overhauls..
Creative Artwork: Artists can evolve their work, experimenting with different styles and motifs without starting from scratch.
Marketing Material: Marketers can tailor images to fit brand narratives, ensuring consistency across campaigns.
Product Design: Designers can visualize product variations quickly, streamlining the development process.
Entertainment Media: Content creators in film and gaming can modify and enhance visual assets to fit evolving storylines.
Educational Tools: Educators can create custom visuals to aid in teaching complex concepts.