BuseyBench SVG Test
Generated by Qwen on Jul 2, 2026 using prompt svg-v1-no-web.
2.3/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 xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024">
<defs>
<filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="0" dy="2" stdDeviation="2" flood-color="#000" flood-opacity="0.3"/>
</filter>
<linearGradient id="skin" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#f4c2a1"/>
<stop offset="100%" stop-color="#d69b74"/>
</linearGradient>
<linearGradient id="hair" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#3a2a1f"/>
<stop offset="100%" stop-color="#2e1f14"/>
</linearGradient>
<radialGradient id="highlight" cx="50%" cy="30%" r="70%">
<stop offset="0%" stop-color="#fff" stop-opacity="0.3"/>
<stop offset="100%" stop-color="#fff" stop-opacity="0"/>
</radialGradient>
</defs>
<g filter="url(#shadow)">
<!-- Face shape -->
<path d="M512,128 C400,128 300,200 300,300 C300,400 400,500 512,500 C624,500 724,400 724,300 C724,200 624,128 512,128 Z" fill="url(#skin)"/>
<!-- Hair -->
<path d="M300,300 C350,200 450,150 512,150 C574,150 674,200 724,300 C650,350 550,380 512,400 C474,380 374,350 300,300 Z" fill="url(#hair)"/>
<!-- Left eyebrow -->
<path d="M350,250 Q330,230 310,250 T290,290" fill="#2e1f14"/>
<!-- Right eyebrow -->
<path d="M674,250 Q694,230 714,250 T734,290" fill="#2e1f14"/>
<!-- Eyes -->
<g transform="translate(450,350)">
<circle cx="0" cy="0" r="30" fill="#fff"/>
<circle cx="0" cy="0" r="15" fill="#000"/>
<circle cx="10" cy="-10" r="3" fill="#fff"/>
</g>
<g transform="translate(574,350)">
<circle cx="0" cy="0" r="30" fill="#fff"/>
<circle cx="0" cy="0" r="15" fill="#000"/>
<circle cx="-10" cy="-10" r="3" fill="#fff"/>
</g>
<!-- Nose -->
<path d="M512,400 L490,450 L534,450 Z" fill="#d69b74"/>
<!-- Mustache -->
<path d="M450,450 Q512,430 574,450 T594,470 Q550,490 512,490 T430,470 Q450,450 450,450 Z" fill="#2e1f14"/>
<!-- Mouth -->
<path d="M480,520 Q512,540 544,520 Q544,500 480,500 Z" fill="#552a1a"/>
<!-- Teeth -->
<g transform="translate(512,520)" opacity="0.8">
<rect x="-20" y="-10" width="40" height="10" fill="#fff"/>
<rect x="-15" y="-10" width="3" height="10" fill="#ccc"/>
<rect x="12" y="-10" width="3" height="10" fill="#ccc"/>
</g>
<!-- Highlights -->
<ellipse cx="512" cy="300" rx="100" ry="50" fill="url(#highlight)"/>
</g>
</svg>