BuseyBench SVG Test
Generated by AionLabs on Jul 2, 2026 using prompt svg-v1-no-web.
0.2/10 overall
Scored by 3 vision models (gpt-5.2, gemini-3.1-pro-preview, 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 viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<title>Gary Busey</title>
<desc>Standalone SVG portrait of Gary Busey</desc>
<defs>
<linearGradient id="hair">
<stop offset="0%" stop-color="#F6B93E"/>
<stop offset="100%" stop-color="#F6B93E"/>
</linearGradient>
<linearGradient id="skin">
<stop offset="0%" stop-color="#F6B93E"/>
<stop offset="100%" stop-color="#F6B93E"/>
</linearGradient>
<linearGradient id="eyes">
<stop offset="0%" stop-color="#F6B93E"/>
<stop offset="100%" stop-color="#F6B93E"/>
</linearGradient>
</defs>
<g id="background">
<rect width="100%" height="100%" fill="#000"/>
</g>
<g id="gary-busey">
<path id="hair" d="M0 0 H1024 V512 H0z" fill="url(#hair)" />
<path id="face" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
<path id="left-eye" d="M0 0 H1024 V512 H0z" fill="url(#eyes)" />
<path id="right-eye" d="M0 0 H1024 V512 H0z" fill="url(#eyes)" />
<path id="mouth" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
<path id="teeth" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
<path id="nose" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
<path id="left-brow" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
<path id="right-brow" d="M0 0 H1024 V512 H0z" fill="url(#skin)" />
</g>
</svg>