BuseyBench SVG Test
Generated by IBM on Jul 1, 2026 using prompt svg-v1-no-web.
1.6/10 overall
Scored by 3 vision models (gpt-5.2, claude-sonnet-4.6, gemini-3.1-pro-preview), 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 width="1024" height="1024" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<!-- Face Shape -->
<path d="M512 200 Q600 300 700 300 Q800 300 900 200 Q800 100 700 100 Q600 100 512 200 Z" fill="#F5F5DC"/>
<!-- Hair -->
<path d="M512 200 Q400 400 600 600 Q800 400 512 200" fill="url(#hairGradient)" opacity="0.8"/>
<!-- Eyes -->
<g>
<circle cx="400" cy="300" r="30" fill="black"/>
<circle cx="600" cy="300" r="30" fill="black"/>
<path d="M400 300 Q425 320 425 340 Q400 360 375 340 Q350 320 375 300" fill="white" opacity="0.6"/>
<path d="M600 300 Q625 320 625 340 Q600 360 575 340 Q550 320 575 300" fill="white" opacity="0.6"/>
</g>
<!-- Eyebrows -->
<path d="M400 260 Q425 240 425 280 Q450 260 450 300" stroke="black" stroke-width="5" fill="none"/>
<path d="M600 260 Q625 240 625 280 Q650 260 650 300" stroke="black" stroke-width="5" fill="none"/>
<!-- Nose -->
<path d="M500 350 Q550 400 500 450 Q450 400 500 350" fill="#8B4513"/>
<!-- Mouth -->
<path d="M450 380 Q500 400 550 380" stroke="black" stroke-width="10" fill="none"/>
<path d="M450 380 Q475 390 475 405 Q450 415 425 405 Q400 390 400 380" fill="white" opacity="0.5"/>
<!-- Teeth (simplified) -->
<path d="M470 390 Q480 395 480 400 Q470 405 460 400" fill="white"/>
<path d="M510 390 Q520 395 520 400 Q510 405 500 400" fill="white"/>
<path d="M550 390 Q560 395 560 400 Q550 405 540 400" fill="white"/>
<!-- Expressive Features -->
<path d="M475 340 Q480 350 480 360 Q475 370 470 360" fill="black" opacity="0.7"/>
<path d="M525 340 Q530 350 530 360 Q525 370 520 360" fill="black" opacity="0.7"/>
<!-- Gradients -->
<defs>
<linearGradient id="hairGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#8B0000;stop-opacity:1" />
<stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
</linearGradient>
</defs>
</svg>