BuseyBench SVG Test
Generated by OpenAI on Jul 2, 2026 using prompt svg-v1-no-web.
3.4/10 overall
Scored by 3 vision models (gemini-3.1-pro-preview, gpt-5.2, claude-sonnet-4.6), 3 samples each, rubric rubric-v1. Overall = likeness 35% + face 25% + aesthetics 25% + prompt 15%.
Create a standalone SVG portrait of Gary Busey's face. Output only valid SVG markup. Do not wrap the SVG in Markdown fences. Do not use external images, links, scripts, CSS imports, or remote assets. Make the portrait recognizable as Gary Busey using vector shapes only. Include face shape, hair, eyes, eyebrows, nose, mouth, teeth, and expressive features. Use a 1024 by 1024 viewBox. Use detailed SVG-native vector techniques: layered paths, gradients, masks, clipping paths, shadows, highlights, blur filters, opacity, and fine strokes. The portrait should be as recognizable and detailed as possible.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024">
<!-- Background -->
<rect width="1024" height="1024" fill="#f0f0f0"/>
<!-- Hair -->
<path d="M512 200c-100 0-180 80-180 180s80 180 180 180 180-80 180-180-80-180-180-180z" fill="#d4af37"/>
<path d="M512 200c-100 0-180 80-180 180s80 180 180 180 180-80 180-180-80-180-180-180z" fill="url(#hairGradient)"/>
<!-- Face -->
<ellipse cx="512" cy="400" rx="160" ry="200" fill="#f5c99e"/>
<ellipse cx="512" cy="400" rx="160" ry="200" fill="url(#faceGradient)"/>
<!-- Eyes -->
<ellipse cx="460" cy="360" rx="20" ry="10" fill="#fff"/>
<ellipse cx="460" cy="360" rx="8" ry="8" fill="#000"/>
<ellipse cx="564" cy="360" rx="20" ry="10" fill="#fff"/>
<ellipse cx="564" cy="360" rx="8" ry="8" fill="#000"/>
<!-- Eyebrows -->
<path d="M440 340c20-10 40-10 60 0" stroke="#8b4513" stroke-width="5" fill="none"/>
<path d="M540 340c20-10 40-10 60 0" stroke="#8b4513" stroke-width="5" fill="none"/>
<!-- Nose -->
<path d="M512 380c-10 20-10 40 0 60" stroke="#d2a679" stroke-width="5" fill="none"/>
<!-- Mouth -->
<path d="M470 460c20 20 60 20 80 0" stroke="#a52a2a" stroke-width="5" fill="none"/>
<path d="M470 460c20 20 60 20 80 0" stroke="#a52a2a" stroke-width="5" fill="none"/>
<!-- Teeth -->
<rect x="490" y="460" width="10" height="10" fill="#fff"/>
<rect x="510" y="460" width="10" height="10" fill="#fff"/>
<rect x="530" y="460" width="10" height="10" fill="#fff"/>
<!-- Gradients -->
<defs>
<radialGradient id="hairGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#d4af37;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#a67c00;stop-opacity:1"/>
</radialGradient>
<radialGradient id="faceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:#f5c99e;stop-opacity:1"/>
<stop offset="100%" style="stop-color:#e0a87c;stop-opacity:1"/>
</radialGradient>
</defs>
</svg>