main
黄海 1 year ago
parent f000e019f8
commit c2aec47a4f

Binary file not shown.

Before

Width:  |  Height:  |  Size: 249 KiB

After

Width:  |  Height:  |  Size: 325 KiB

@ -3,7 +3,7 @@
"sd_model_checkpoint": "绪儿-一青十色XL_V2 VAE.safetensors [9f9290ac66]",
"sd_vae": "Automatic"
},
"prompt": "XUER kids photography,1girl,solo,looking at viewer,short hair,bangs,brown hair,dress,sitting,flower,food,sleeveless,indoors,white dress,window,sleeveless dress,own hands together,white flower,cherry blossoms,pink flower,Dynamic Angle,Dynamic posture,Perspective,High Point,pov,child,with a high-end texture,in the style of fashion photography,magazine cover,(8k, RAW photo, highly detailed,masterpiece, highest quality),rich colors,high contrast,full shot body photo of the most beautiful artwork in the world,cinematic light,fantasy,highres,(detailed face),ultra-realistic,high dynamic range,photoreal,epic realistic,dark shot,shadows,darkness,contrast,layered colors,vivid colors,contrast,offcial art,colorful,splash of color,movie perspective,very aesthetic,disheveled hair,perfect composition,moist skin,intricate details,moody,epic,photorealistic,color graded cinematic,atmospheric lighting,award winning photo,film grain,A shot with tension,(Visual impact,giving the poster a dynamic and visually striking appearance:1.2),impactful picture,<lora:绪儿 儿童摄影 XUER kids photography:0.8>,",
"prompt": "XUER kids photography,A little girl was sitting on a huge flower,kind_smile,1girl, closed eyes, solo, sky, flower,yellow dress, dress, outdoors, yellow flower, day, building, cloud, smile, blue sky, long hair, yellow theme, sitting, city, bangs, facing viewer, cityscape, brown hair, short sleeves, floating hair, wind, petals, ^_^, scenery, black hair,child,with a high-end texture,in the style of fashion photography,magazine cover,A little girl was sitting on a huge flower,(8k, RAW photo, highly detailed,masterpiece, highest quality),rich colors,high contrast,full shot body photo of the most beautiful artwork in the world,cinematic light,fantasy,highres,(detailed face),ultra-realistic,high dynamic range,photoreal,epic realistic,dark shot,shadows,darkness,rays of light,reflections,halos,flickering,contrast,layered colors,vivid colors,contrast,offcial art,colorful,splash of color,movie perspective,very aesthetic,disheveled hair,perfect composition,moist skin,intricate details,moody,epic,photorealistic,color graded cinematic,atmospheric lighting,award winning photo,film grain,A shot with tension,(Visual impact,giving the poster a dynamic and visually striking appearance:1.2),impactful picture,<lora:绪儿 儿童摄影 XUER kids photography:0.8>,",
"negative_prompt": "NSFW,blurry,low quality,watermark,monochrome,badhandv4,easynegative,ng_deepnegative_v1_75t,bad proportions,mutated hands and fingers,poorly drawn face,extra limb,missing limb,malformed limbs,disconnected limbs,ugly,floating limbs,extra legs,mutation,bad body,long neck,cross-eyed,text,cleavage,",
"steps": 30,
"sampler_name": "DPM++ 2M Karras",

@ -289,9 +289,9 @@ if __name__ == '__main__':
# webui 服务器地址
webui_address = config['webui']['webui_address']
# 文生图服务地址
txt2img_url = webui_address + config['webui']['txt2img_url']
txt2img_url = 'http://' + webui_address + config['webui']['txt2img_url']
# 图生图服务地址
img2img_url = webui_address + config['webui']['img2img_url']
img2img_url = 'http://' + webui_address + config['webui']['img2img_url']
# WEB服务器地址
web_url = config['webServer']['web_url']

@ -377,7 +377,7 @@ public class HuiYaModel {
r.set("model_id", model_id);
r.set("prompt_id", 1);
r.set("img_url", rTop.getStr("img_url"));
r.set("img_url_thumb", rTop.getStr("img_url_thumb"));
r.set("img_url_thumb", rTop.getStr("img_url_thumb") + "&r=" + UUID.randomUUID());
//其它4个添加到列表中
List<Record> listImg = new ArrayList<>();
for (int i = 2; i <= 5; i++) {
@ -430,7 +430,7 @@ public class HuiYaModel {
Record r = new Record();
r.set("prompt_id", prompt_id);
String img_url = "http://hzkc.oss-cn-beijing.aliyuncs.com/Images/System/" + model_id + "/" + prompt_id + ".png";
r.set("img_url_thumb", img_url + "?x-oss-process=image/resize,w_362,limit_0");
r.set("img_url_thumb", img_url + "?x-oss-process=image/resize,w_362,limit_0" + "&r=" + UUID.randomUUID());
r.set("img_url", img_url);
return r;
}

Loading…
Cancel
Save