1 / 5
typescript経由
interface ImageDescription { elements: Element[]; } interface Element { type: string; description: string; position: Position; size: Size; color: string; } interface Position { x: number; y: number; } interface Size { width: number; height: number; } const imageDescription: ImageDescription = { elements: [ { type: \"cat\", description: \"A white cat with a black spot on its left ear, holding a sword and a shield with a cross.\", position: { x: 10, y: 10 }, size: { width: 150, height: 300 }, color: \"white with black spot\" }, { type: \"sword\", description: \"A long, silver sword held by the first cat.\", position: { x: 20, y: 40 }, size: { width: 10, height: 100 }, color: \"silver\" }, { type: \"shield\", description: \"A silver shield with a cross, held by the first cat.\", position: { x: 50, y: 200 }, size: { width: 50, height: 70 }, color: \"silver\" }, { type: \"cat\", description: \"A white cat with black spots on its head.\", position: { x: 200, y: 10 }, size: { width: 150, height: 300 }, color: \"white with black spots\" }, { type: \"cat\", description: \"A white cat with a large black spot covering its left eye, holding a shield with a cross.\", position: { x: 400, y: 10 }, size: { width: 150, height: 300 }, color: \"white with black spot\" }, { type: \"shield\", description: \"A silver shield with a cross, held by the third cat.\", position: { x: 450, y: 200 }, size: { width: 50, height: 70 }, color: \"silver\" }, { type: \"cat\", description: \"A black cat with a cape, sitting calmly.\", position: { x: 600, y: 10 }, size: { width: 150, height: 300 }, color: \"black\" }, { type: \"cape\", description: \"A white cape worn by the fourth cat.\", position: { x: 610, y: 50 }, size: { width: 140, height: 250 }, color: \"white\" }, { type: \"background\", description: \"A plain light grey background.\", position: { x: 0, y: 0 }, size: { width: 800, height: 400 }, color: \"light grey\" }, { type: \"facial expression\", description: \"All cats have small, closed eyes and subtle smiles, giving a calm and content expression.\", position: { x: 0, y: 0 }, size: { width: 0, height: 0 }, color: \"various\" }, { type: \"overall composition\", description: \"Four cats lined up in a row, each with unique accessories and markings.\", position: { x: 0, y: 0 }, size: { width: 800, height: 400 }, color: \"various\" } ] };