diff --git a/BaiHu/Image/36/3.jpg b/BaiHu/Image/36/3.jpg index 3e666486..03f563c5 100644 Binary files a/BaiHu/Image/36/3.jpg and b/BaiHu/Image/36/3.jpg differ diff --git a/BaiHu/JSON/36_3.json b/BaiHu/JSON/36_3.json index bc4283cb..adee597b 100644 --- a/BaiHu/JSON/36_3.json +++ b/BaiHu/JSON/36_3.json @@ -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,,", + "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,,", "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", diff --git a/BaiHu/doTask.py b/BaiHu/doTask.py index 943f8f90..cf191a4c 100644 --- a/BaiHu/doTask.py +++ b/BaiHu/doTask.py @@ -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'] diff --git a/QingLong/src/main/java/com/dsideal/QingLong/HuiYa/Model/HuiYaModel.java b/QingLong/src/main/java/com/dsideal/QingLong/HuiYa/Model/HuiYaModel.java index ed10397d..b0b57e03 100644 --- a/QingLong/src/main/java/com/dsideal/QingLong/HuiYa/Model/HuiYaModel.java +++ b/QingLong/src/main/java/com/dsideal/QingLong/HuiYa/Model/HuiYaModel.java @@ -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 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; }