mirror of
				https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
				synced 2025-10-31 18:15:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| import modules.scripts
 | |
| 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
 | |
| 
 | |
| 
 | |
| def txt2img(prompt: str, negative_prompt: str, prompt_style: str, prompt_style2: 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, seed_enable_extras: bool, height: int, width: int, enable_hr: bool, scale_latent: bool, denoising_strength: float, *args):
 | |
|     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,
 | |
|         styles=[prompt_style, prompt_style2],
 | |
|         negative_prompt=negative_prompt,
 | |
|         seed=seed,
 | |
|         subseed=subseed,
 | |
|         subseed_strength=subseed_strength,
 | |
|         seed_resize_from_h=seed_resize_from_h,
 | |
|         seed_resize_from_w=seed_resize_from_w,
 | |
|         seed_enable_extras=seed_enable_extras,
 | |
|         sampler_index=sampler_index,
 | |
|         batch_size=batch_size,
 | |
|         n_iter=n_iter,
 | |
|         steps=steps,
 | |
|         cfg_scale=cfg_scale,
 | |
|         width=width,
 | |
|         height=height,
 | |
|         restore_faces=restore_faces,
 | |
|         tiling=tiling,
 | |
|         enable_hr=enable_hr,
 | |
|         scale_latent=scale_latent if enable_hr else None,
 | |
|         denoising_strength=denoising_strength if enable_hr else None,
 | |
|     )
 | |
| 
 | |
|     if cmd_opts.enable_console_prompts:
 | |
|         print(f"\ntxt2img: {prompt}", file=shared.progress_print_out)
 | |
| 
 | |
|     processed = modules.scripts.scripts_txt2img.run(p, *args)
 | |
| 
 | |
|     if processed is None:
 | |
|         processed = process_images(p)
 | |
| 
 | |
|     shared.total_tqdm.clear()
 | |
| 
 | |
|     generation_info_js = processed.js()
 | |
|     if opts.samples_log_stdout:
 | |
|         print(generation_info_js)
 | |
| 
 | |
|     if opts.do_not_show_images:
 | |
|         processed.images = []
 | |
| 
 | |
|     return processed.images, generation_info_js, plaintext_to_html(processed.info)
 | |
| 
 | 
