Merge branch 'dev/dev_xp' into dev/dev

This commit is contained in:
2024-04-25 14:25:33 +08:00

View File

@@ -264,6 +264,13 @@ public class GenerateServiceImpl extends ServiceImpl<GenerateMapper, Generate> i
generate.setText(text); generate.setText(text);
break; break;
case "Printboard": case "Printboard":
if (userInput.contains("Painting Style")) {
userInput = "Picasso,increased color saturation,increased glossiness," + userInput;
} else if (userInput.contains("Illustration Style")) {
userInput = "Flat coating,romantic,soft,pencil strokes,accentuating and widening the depth of pencil strokes,paper patterns,block colors,crayons,reducing image contrast,and hand drawn painting marks," + userInput;
} else if (userInput.contains("Real Style")) {
userInput = "Still life photography,hyper realism,3d,deepened projection,increased permutation value,increased concavity and convexity value," + userInput;
}
text = userInput + ", fabric print, high quality"; text = userInput + ", fabric print, high quality";
generate.setText(text); generate.setText(text);
break; break;