BuseyBench SVG Test
Generated by LiquidAI on Jul 2, 2026 using prompt svg-v1-no-web.
0.4/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">
<!-- Background -->
<rect width="100%" height="100%" fill="#f0f0f0"/>
<!-- Face Shape -->
<g transform="translate(50 50)">
<!-- Face -->
<ellipse cx="50" cy="50" rx="40" ry="30" fill="#fff" opacity="0.9"/>
<!-- Eyes -->
<circle cx="50" cy="40" r="5" fill="#000" opacity="0.9"/>
<circle cx="50" cy="60" r="5" fill="#000" opacity="0.9"/>
<circle cx="50" cy="70" r="5" fill="#000" opacity="0.9"/>
<!-- Eyebrows -->
<line x1="50" y1="60" x2="50" y2="70" stroke="#000" stroke-width="2" opacity="0.7"/>
<line x1="50" y1="60" x2="50" y2="80" stroke="#000" stroke-width="2" opacity="0.7"/>
<!-- Nose -->
<path d="M50 60 Q60 65 70 65" fill="#fff" opacity="0.9"/>
<!-- Mouth -->
<path d="M50 70 Q60 75 70 75" fill="#000" opacity="0.9"/>
<!-- Teeth -->
<circle cx="60" cy="70" r="2" fill="#fff" opacity="0.8"/>
<circle cx="65" cy="70" r="2" fill="#fff" opacity="0.8"/>
<!-- Hair -->
<path d="M50 60 Q60 55 70 55" fill="#c0c0c0" opacity="0.6" stroke="#000" stroke-width="1"/>
<!-- Face Details -->
<path d="M60 70 Q65 75 70 75" fill="#fff" opacity="0.7" stroke="#000" stroke-width="1"/>
</g>
<!-- Gradient for Depth -->
<defs>
<linearGradient id="faceGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000000"/>
<stop offset="50%" stop-color="#333333"/>
<stop offset="100%" stop-color="#fff" />
</linearGradient>
</defs>
<!-- Shadows and Highlights -->
<g opacity="0.8">
<path d="M50 50 Q60 55 70 55" fill="url(#faceGrad)" opacity="0.7"/>
<path d="M50 60 Q60 65 70 65" fill="url(#faceGrad)" opacity="0.6"/>
</g>
<!-- Expressive Features -->
<circle cx="50" cy="50" r="8" fill="#fff" opacity="0.85"/>
<path d="M50 50 Q50 45 55 45" fill="#000" opacity="0.95" stroke="#000" stroke-width="1"/>
</svg>