1 / 5
typescript経由
interface ImageDescription { elements: Element[]; } interface Element { type: string; details: string; position: string; size: string; color: string; additionalInfo?: string; } const imageDescription: ImageDescription = { elements: [ { type: \"character\", details: \"Egyptian woman with black bob haircut\", position: \"left\", size: \"large\", color: \"black hair, golden accessories\", additionalInfo: \"wearing traditional Egyptian jewelry and headdress\" }, { type: \"character\", details: \"European woman with light brown hair in an updo\", position: \"right\", size: \"large\", color: \"light brown hair, white and pink dress\", additionalInfo: \"wearing a tiara and pearl necklace with ruby gemstones\" }, { type: \"expression\", details: \"serene and composed expression\", position: \"left\", size: \"medium\", color: \"neutral tones\", }, { type: \"expression\", details: \"gentle and calm expression\", position: \"right\", size: \"medium\", color: \"neutral tones\", }, { type: \"accessory\", details: \"golden headdress with intricate designs\", position: \"left\", size: \"medium\", color: \"gold, blue, red\", additionalInfo: \"detailed with Egyptian motifs\" }, { type: \"accessory\", details: \"tiara with blue and pink gemstones\", position: \"right\", size: \"medium\", color: \"silver, blue, pink\", }, { type: \"jewelry\", details: \"necklace with large red gemstone\", position: \"left\", size: \"medium\", color: \"gold, red, blue\", }, { type: \"jewelry\", details: \"pearl necklace with ruby centerpiece\", position: \"right\", size: \"medium\", color: \"white, red\", }, { type: \"clothing\", details: \"traditional Egyptian dress with ornate patterns\", position: \"left\", size: \"large\", color: \"white, gold, blue, red\", }, { type: \"clothing\", details: \"European royal gown with lace and bows\", position: \"right\", size: \"large\", color: \"white, pink\", }, { type: \"background\", details: \"sketches of historical figures and angels\", position: \"top left\", size: \"large\", color: \"sepia tones\", }, { type: \"background\", details: \"astronomical symbols and charts\", position: \"top right\", size: \"large\", color: \"blue, white\", }, { type: \"mood\", details: \"historical and regal ambiance\", position: \"overall\", size: \"large\", color: \"rich tones and detailed patterns\", }, { type: \"hair accessory\", details: \"golden hair ornament with hanging beads\", position: \"left\", size: \"small\", color: \"gold, blue\", }, { type: \"earrings\", details: \"large hoop earrings with dangling elements\", p