A Study on Using JSON for DallE Inputs

I read the old Dalle thread there i# a ton of examples. I have used @PaulBellow’s stuff at first then moved on to modding it I do it by hand then I stopped once I figured out structure is all that matters in GPT so I started doing numbered logic like old code languages then once I figured out the flow I just do medium, setting, perspective, form, etc ending with Image size and each layer can be described as commands useing real art terms but in a logic frame.

Example of logic flow… “ Black on green a vine of yellows with pink flowers grow to shape a 17th century surreal reclining lady wide image”


It can be converted to near any JSON string.

{
“size”: “1792x1024”,
“prompt”: {
“scene”: “A surreal wide image of a 17th-century reclining lady formed by intertwining yellow vines with pink flowers.”,
“figure”: {
“description”: “The vines create the figure of the lady as she rests gracefully.”,
“details”: [
“Parts of her form are abstract, dissolving into the foliage.”
]
},
“background”: {
“color”: “deep green”,
“contrast”: “The black-green background enhances the vibrant yellows of the vines and soft pink flowers.”
},
“atmosphere”: “dreamlike, ethereal”,
“patterns”: “The vines extend in whimsical, flowing patterns, contributing to the surreal atmosphere.”
}
}


4 Likes