2022-09-03 14:21:15 +00:00
|
|
|
import modules.scripts
|
2022-09-03 09:08:45 +00:00
|
|
|
from modules.processing import StableDiffusionProcessing, Processed, StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
|
|
|
|
from modules.shared import opts, cmd_opts
|
|
|
|
import modules.shared as shared
|
|
|
|
import modules.processing as processing
|
|
|
|
from modules.ui import plaintext_to_html
|
|
|
|
|
|
|
|
|
2022-09-11 09:18:06 +00:00
|
|
|
def txt2img(prompt: str, negative_prompt: str, prompt_style: str, steps: int, sampler_index: int, restore_faces: bool, tiling: bool, n_iter: int, batch_size: int, cfg_scale: float, seed: int, subseed: int, subseed_strength: float, seed_resize_from_h: int, seed_resize_from_w: int, height: int, width: int, *args):
|
2022-09-03 09:08:45 +00:00
|
|
|
p = StableDiffusionProcessingTxt2Img(
|
|
|
|
sd_model=shared.sd_model,
|
|
|
|
outpath_samples=opts.outdir_samples or opts.outdir_txt2img_samples,
|
|
|
|
outpath_grids=opts.outdir_grids or opts.outdir_txt2img_grids,
|
|
|
|
prompt=prompt,
|
2022-09-09 20:16:02 +00:00
|
|
|
prompt_style=prompt_style,
|
2022-09-03 09:08:45 +00:00
|
|
|
negative_prompt=negative_prompt,
|
|
|
|
seed=seed,
|
2022-09-09 14:54:04 +00:00
|
|
|
subseed=subseed,
|
|
|
|
subseed_strength=subseed_strength,
|
|
|
|
seed_resize_from_h=seed_resize_from_h,
|
|
|
|
seed_resize_from_w=seed_resize_from_w,
|
2022-09-03 09:08:45 +00:00
|
|
|
sampler_index=sampler_index,
|
|
|
|
batch_size=batch_size,
|
|
|
|
n_iter=n_iter,
|
|
|
|
steps=steps,
|
|
|
|
cfg_scale=cfg_scale,
|
|
|
|
width=width,
|
|
|
|
height=height,
|
2022-09-07 09:32:28 +00:00
|
|
|
restore_faces=restore_faces,
|
2022-09-05 00:25:37 +00:00
|
|
|
tiling=tiling,
|
2022-09-03 09:08:45 +00:00
|
|
|
)
|
|
|
|
|
2022-09-08 13:37:13 +00:00
|
|
|
print(f"\ntxt2img: {prompt}", file=shared.progress_print_out)
|
2022-09-03 22:29:43 +00:00
|
|
|
processed = modules.scripts.scripts_txt2img.run(p, *args)
|
2022-09-03 09:08:45 +00:00
|
|
|
|
2022-09-03 14:21:15 +00:00
|
|
|
if processed is not None:
|
|
|
|
pass
|
2022-09-03 09:08:45 +00:00
|
|
|
else:
|
|
|
|
processed = process_images(p)
|
|
|
|
|
2022-09-08 13:37:13 +00:00
|
|
|
shared.total_tqdm.clear()
|
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
return processed.images, processed.js(), plaintext_to_html(processed.info)
|
|
|
|
|