2022-10-21 23:27:40 +00:00
|
|
|
from modules.api.processing import StableDiffusionTxt2ImgProcessingAPI, StableDiffusionImg2ImgProcessingAPI
|
|
|
|
from modules.processing import StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
|
2022-10-19 05:19:01 +00:00
|
|
|
from modules.sd_samplers import all_samplers
|
2022-10-17 06:58:42 +00:00
|
|
|
import modules.shared as shared
|
|
|
|
import uvicorn
|
2022-10-22 23:13:16 +00:00
|
|
|
from fastapi import APIRouter, HTTPException
|
2022-10-17 06:58:42 +00:00
|
|
|
import json
|
|
|
|
import io
|
|
|
|
import base64
|
2022-10-22 23:24:04 +00:00
|
|
|
from modules.api.models import *
|
2022-10-23 02:13:32 +00:00
|
|
|
from PIL import Image
|
|
|
|
from modules.extras import run_extras
|
2022-10-23 16:07:59 +00:00
|
|
|
from gradio import processing_utils
|
2022-10-23 02:13:32 +00:00
|
|
|
|
|
|
|
def upscaler_to_index(name: str):
|
|
|
|
try:
|
|
|
|
return [x.name.lower() for x in shared.sd_upscalers].index(name.lower())
|
|
|
|
except:
|
|
|
|
raise HTTPException(status_code=400, detail="Upscaler not found")
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-19 05:19:01 +00:00
|
|
|
sampler_to_index = lambda name: next(filter(lambda row: name.lower() == row[1].name.lower(), enumerate(all_samplers)), None)
|
2022-10-18 19:04:56 +00:00
|
|
|
|
2022-10-23 02:13:32 +00:00
|
|
|
def img_to_base64(img: str):
|
2022-10-22 23:24:04 +00:00
|
|
|
buffer = io.BytesIO()
|
|
|
|
img.save(buffer, format="png")
|
|
|
|
return base64.b64encode(buffer.getvalue())
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-23 02:13:32 +00:00
|
|
|
def base64_to_bytes(base64Img: str):
|
|
|
|
if "," in base64Img:
|
|
|
|
base64Img = base64Img.split(",")[1]
|
|
|
|
return io.BytesIO(base64.b64decode(base64Img))
|
|
|
|
|
|
|
|
def base64_to_images(base64Imgs: list[str]):
|
|
|
|
imgs = []
|
|
|
|
for img in base64Imgs:
|
|
|
|
img = Image.open(base64_to_bytes(img))
|
|
|
|
imgs.append(img)
|
|
|
|
return imgs
|
|
|
|
|
2022-10-21 23:27:40 +00:00
|
|
|
class ImageToImageResponse(BaseModel):
|
|
|
|
images: list[str] = Field(default=None, title="Image", description="The generated image in base64 format.")
|
|
|
|
parameters: Json
|
|
|
|
info: Json
|
|
|
|
|
2022-10-23 02:13:32 +00:00
|
|
|
|
2022-10-17 06:58:42 +00:00
|
|
|
class Api:
|
2022-10-18 06:51:53 +00:00
|
|
|
def __init__(self, app, queue_lock):
|
2022-10-17 06:58:42 +00:00
|
|
|
self.router = APIRouter()
|
2022-10-18 06:51:53 +00:00
|
|
|
self.app = app
|
|
|
|
self.queue_lock = queue_lock
|
2022-10-23 02:13:32 +00:00
|
|
|
self.app.add_api_route("/sdapi/v1/txt2img", self.text2imgapi, methods=["POST"], response_model=TextToImageResponse)
|
2022-10-21 23:27:40 +00:00
|
|
|
self.app.add_api_route("/sdapi/v1/img2img", self.img2imgapi, methods=["POST"])
|
2022-10-23 02:13:32 +00:00
|
|
|
self.app.add_api_route("/sdapi/v1/extra-single-image", self.extras_single_image_api, methods=["POST"], response_model=ExtrasSingleImageResponse)
|
2022-10-23 16:07:59 +00:00
|
|
|
self.app.add_api_route("/sdapi/v1/extra-batch-image", self.extras_batch_images_api, methods=["POST"], response_model=ExtrasBatchImagesResponse)
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-22 21:10:28 +00:00
|
|
|
def __base64_to_image(self, base64_string):
|
|
|
|
# if has a comma, deal with prefix
|
|
|
|
if "," in base64_string:
|
|
|
|
base64_string = base64_string.split(",")[1]
|
|
|
|
imgdata = base64.b64decode(base64_string)
|
|
|
|
# convert base64 to PIL image
|
|
|
|
return Image.open(io.BytesIO(imgdata))
|
|
|
|
|
2022-10-21 23:27:40 +00:00
|
|
|
def text2imgapi(self, txt2imgreq: StableDiffusionTxt2ImgProcessingAPI):
|
2022-10-18 19:04:56 +00:00
|
|
|
sampler_index = sampler_to_index(txt2imgreq.sampler_index)
|
|
|
|
|
|
|
|
if sampler_index is None:
|
|
|
|
raise HTTPException(status_code=404, detail="Sampler not found")
|
|
|
|
|
2022-10-17 19:10:36 +00:00
|
|
|
populate = txt2imgreq.copy(update={ # Override __init__ params
|
|
|
|
"sd_model": shared.sd_model,
|
2022-10-18 19:04:56 +00:00
|
|
|
"sampler_index": sampler_index[0],
|
2022-10-17 20:36:14 +00:00
|
|
|
"do_not_save_samples": True,
|
|
|
|
"do_not_save_grid": True
|
2022-10-17 19:10:36 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
p = StableDiffusionProcessingTxt2Img(**vars(populate))
|
|
|
|
# Override object param
|
2022-10-18 06:51:53 +00:00
|
|
|
with self.queue_lock:
|
|
|
|
processed = process_images(p)
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-22 23:24:04 +00:00
|
|
|
b64images = list(map(img_to_base64, processed.images))
|
2022-10-17 06:58:42 +00:00
|
|
|
|
|
|
|
return TextToImageResponse(images=b64images, parameters=json.dumps(vars(txt2imgreq)), info=json.dumps(processed.info))
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-10-21 23:27:40 +00:00
|
|
|
def img2imgapi(self, img2imgreq: StableDiffusionImg2ImgProcessingAPI):
|
|
|
|
sampler_index = sampler_to_index(img2imgreq.sampler_index)
|
|
|
|
|
|
|
|
if sampler_index is None:
|
|
|
|
raise HTTPException(status_code=404, detail="Sampler not found")
|
|
|
|
|
|
|
|
|
|
|
|
init_images = img2imgreq.init_images
|
|
|
|
if init_images is None:
|
|
|
|
raise HTTPException(status_code=404, detail="Init image not found")
|
|
|
|
|
2022-10-22 19:42:00 +00:00
|
|
|
mask = img2imgreq.mask
|
|
|
|
if mask:
|
2022-10-22 21:10:28 +00:00
|
|
|
mask = self.__base64_to_image(mask)
|
2022-10-22 19:42:00 +00:00
|
|
|
|
2022-10-21 23:27:40 +00:00
|
|
|
|
|
|
|
populate = img2imgreq.copy(update={ # Override __init__ params
|
|
|
|
"sd_model": shared.sd_model,
|
|
|
|
"sampler_index": sampler_index[0],
|
|
|
|
"do_not_save_samples": True,
|
2022-10-22 21:10:28 +00:00
|
|
|
"do_not_save_grid": True,
|
|
|
|
"mask": mask
|
2022-10-21 23:27:40 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
p = StableDiffusionProcessingImg2Img(**vars(populate))
|
|
|
|
|
|
|
|
imgs = []
|
|
|
|
for img in init_images:
|
2022-10-22 21:10:28 +00:00
|
|
|
img = self.__base64_to_image(img)
|
2022-10-21 23:27:40 +00:00
|
|
|
imgs = [img] * p.batch_size
|
|
|
|
|
|
|
|
p.init_images = imgs
|
|
|
|
# Override object param
|
|
|
|
with self.queue_lock:
|
|
|
|
processed = process_images(p)
|
|
|
|
|
|
|
|
b64images = []
|
|
|
|
for i in processed.images:
|
|
|
|
buffer = io.BytesIO()
|
|
|
|
i.save(buffer, format="png")
|
|
|
|
b64images.append(base64.b64encode(buffer.getvalue()))
|
|
|
|
|
|
|
|
return ImageToImageResponse(images=b64images, parameters=json.dumps(vars(img2imgreq)), info=json.dumps(processed.info))
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-23 02:13:32 +00:00
|
|
|
def extras_single_image_api(self, req: ExtrasSingleImageRequest):
|
|
|
|
upscaler1Index = upscaler_to_index(req.upscaler_1)
|
|
|
|
upscaler2Index = upscaler_to_index(req.upscaler_2)
|
|
|
|
|
|
|
|
reqDict = vars(req)
|
|
|
|
reqDict.pop('upscaler_1')
|
|
|
|
reqDict.pop('upscaler_2')
|
|
|
|
|
2022-10-23 16:07:59 +00:00
|
|
|
reqDict['image'] = processing_utils.decode_base64_to_file(reqDict['image'])
|
2022-10-23 02:13:32 +00:00
|
|
|
|
|
|
|
with self.queue_lock:
|
|
|
|
result = run_extras(**reqDict, extras_upscaler_1=upscaler1Index, extras_upscaler_2=upscaler2Index, extras_mode=0, image_folder="", input_dir="", output_dir="")
|
|
|
|
|
2022-10-23 16:07:59 +00:00
|
|
|
return ExtrasSingleImageResponse(image=processing_utils.encode_pil_to_base64(result[0]), html_info_x=result[1], html_info=result[2])
|
|
|
|
|
|
|
|
def extras_batch_images_api(self, req: ExtrasBatchImagesRequest):
|
|
|
|
upscaler1Index = upscaler_to_index(req.upscaler_1)
|
|
|
|
upscaler2Index = upscaler_to_index(req.upscaler_2)
|
|
|
|
|
|
|
|
reqDict = vars(req)
|
|
|
|
reqDict.pop('upscaler_1')
|
|
|
|
reqDict.pop('upscaler_2')
|
|
|
|
|
|
|
|
reqDict['image_folder'] = list(map(processing_utils.decode_base64_to_file, reqDict['imageList']))
|
|
|
|
reqDict.pop('imageList')
|
|
|
|
|
|
|
|
with self.queue_lock:
|
|
|
|
result = run_extras(**reqDict, extras_upscaler_1=upscaler1Index, extras_upscaler_2=upscaler2Index, extras_mode=1, image="", input_dir="", output_dir="")
|
|
|
|
|
|
|
|
return ExtrasBatchImagesResponse(images=list(map(processing_utils.encode_pil_to_base64, result[0])), html_info_x=result[1], html_info=result[2])
|
|
|
|
|
|
|
|
def extras_folder_processing_api(self):
|
|
|
|
raise NotImplementedError
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-19 05:19:01 +00:00
|
|
|
def pnginfoapi(self):
|
2022-10-17 06:58:42 +00:00
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def launch(self, server_name, port):
|
2022-10-18 06:51:53 +00:00
|
|
|
self.app.include_router(self.router)
|
|
|
|
uvicorn.run(self.app, host=server_name, port=port)
|