xxxxxxxxxx
52
let img; //画像の変数imgを定義
function setup() {
createCanvas(512, 512);
const api_key = "SG_1a152342b25f06ca";
const url = "https://api.segmind.com/v1/ssd-1b";
const data = {
prompt:
"Samoyed dog playing club DJ.",
negative_prompt: "painting",
samples: 1,
scheduler: "UniPC",
num_inference_steps: 20,
guidance_scale: "10",
img_width: "1024",
img_height: "1024",
base64: false,
};
fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": api_key
},
body: JSON.stringify(data),
})
.then((response) => {
console.log(response);
return response.blob();
}
).then((data)=>{
console.log(data);
var reader = new FileReader();
reader.onload = function(evt) {
img = loadImage(reader.result)
}
reader.readAsDataURL(data);
})
.catch((error) => console.log("error", error));
}
function draw() {
background(220);
if (img === undefined) {
return;
}
image(img, 0, 0, img.width / 2, img.height / 2); //画像を表示
}