1 / 11
typescript経由
interface ImageDescription { elements: { mainSubject: { type: \"person\", appearance: { clothing: { type: \"uniform\", style: \"maid\", colors: [\"black\", \"white\"], details: { apron: { color: \"white\", ruffles: true, }, dress: { color: \"black\", sleeves: \"long\", collar: \"white\", cuffs: \"white\", bow: { color: \"white\", location: \"neck\", }, }, stockings: { color: \"black\", }, shoes: { type: \"dress shoes\", color: \"black\", }, }, }, hair: { color: \"black\", length: \"shoulder-length\", style: \"tied with a ribbon\", }, expression: { eyes: \"closed\", mouth: \"neutral\", headTilt: \"downwards\", }, }, pose: { stance: \"standing\", action: \"holding dress\", gesture: \"lifting sides of dress slightly\", }, }, background: { setting: \"outdoors\", environment: { type: \"garden\", details: { season: \"autumn\", elements: [ { type: \"trees\", leaves: \"orange\", quantity: 3 }, { type: \"flowers\", colors: [\"white\", \"pink\", \"red\"], location: \"borders\" }, { type: \"path\", material: \"stone\", direction: \"straight\", features: \"leaves scattered\" }, { type: \"lampposts\", color: \"black\", quantity: 4, style: \"vintage\" }, ], }, }, distantBackground: { structures: \"buildings\", style: \"modern\", visibility: \"partially obscured\", color: \"light\", }, }, lighting: { type: \"natural\", source: \"sunlight\", intensity: \"soft\", direction: \"above\", }, mood: { emotion: \"serene\", atmosphere: \"peaceful\", }, }, } const imageDescription: ImageDescription = { elements: { mainSubject: { type: \"person\", appearance: { clothing: { type: \"uniform\", style: \"maid\", colors: [\"black\", \"white\"], details: { apron: { color: \"white\", ruffles: true, }, dress: { color: \"black\", sleeves: \"long\", collar: \"white\", cuffs: \"white\", bow: { color: \"white\", location: \"neck\", }, }, stockings: { color: \"black\", }, shoes: { type: \"dress shoes\", color: \"black\", }, }, }, hair: { color: \"black\", length: \"shoulder-length\", style: \"tied with a ri