Famous Artwork Analysis Generator
Configure details in the Data Configuration tab and click "Generate Analysis Report" to see the full document here.
' + p.trim() + '
'; }).join(''); } var generateAnalysis = function() { var data = { title: titleInput.value || "[Artwork Title]", artist: artistInput.value || "[Artist Name]", date: dateInput.value || "[Date Created]", medium: mediumInput.value || "[Medium]", location: locationInput.value || "[Location]", line: formalLineInput.value, color: formalColorInput.value, comp: formalCompInput.value, context: contextInput.value, interpretation: interpretationInput.value, keywords: keywordsInput.value.split(',').map(function(k) { return k.trim(); }).filter(function(k) { return k; }).join(', ') }; if (!data.title) { analysisContentDiv.innerHTML = `Error: Please enter the Title of the Artwork in the Data Configuration tab.
`; return; } var metadataTableHtml = `| Artist | ${data.artist} |
|---|---|
| Date | ${data.date} |
| Medium | ${data.medium} |
| Location | ${data.location} |
${data.title.toUpperCase()}
A Visual Analysis by [Your Name] | Date: ${new Date().toLocaleDateString()}
1. Context & Metadata
${metadataTableHtml}
2. Formal Elements (Description)
Line, Shape, and Movement
${data.line}
Color, Light, and Palette
${data.color}
Composition and Spatial Depth
${data.comp}
3. Historical & Interpretive Analysis
Historical/Cultural Context
${data.context}
Interpretation and Meaning
${data.interpretation}
Key Concepts/Keywords
Keywords: ${data.keywords || 'N/A'}
