BuseyBench SVG Test
Generated by NVIDIA on Jul 2, 2026 using prompt svg-v1-no-web.
2.5/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">
<defs>
<linearGradient id="skinGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#f5c2a0"/>
<stop offset="100%" stop-color="#d99a70"/>
</linearGradient>
<linearGradient id="hairGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#3b2e2a"/>
<stop offset="100%" stop-color="#000000"/>
</linearGradient>
<filter id="faceShadow">
<feDropShadow dx="0" dy="12" stdDeviation="6" flood-color="black" flood-opacity="0.4"/>
</filter>
</defs>
<!-- Face -->
<path d="M300,500 C300,350 700,350 700,500 C700,650 300,650 300,500 Z" fill="url(#skinGrad)" filter="url(#faceShadow)"/>
<!-- Hair -->
<path d="M300,200 C300,150 700,150 700,200 C700,250 300,250 300,200 Z" fill="url(#hairGrad)"/>
<!-- Left Eye -->
<ellipse cx="400" cy="350" rx="30" ry="20" fill="#fff"/>
<circle cx="400" cy="350" r="12" fill="#000"/>
<ellipse cx="380" cy="340" rx="6" ry="4" fill="#fff" opacity="0.6"/>
<!-- Right Eye -->
<ellipse cx="600" cy="350" rx="30" ry="20" fill="#fff"/>
<circle cx="600" cy="350" r="12" fill="#000"/>
<ellipse cx="620" cy="340" rx="6" ry="4" fill="#fff" opacity="0.6"/>
<!-- Eyebrows -->
<path d="M380,300 Q400,280 420,300" stroke="#000" stroke-width="8" fill="none"/>
<path d="M620,300 Q600,280 580,300" stroke="#000" stroke-width="8" fill="none"/>
<!-- Nose -->
<path d="M512,420 L540,460 L484,460 Z" fill="#d99a70"/>
<!-- Mouth -->
<path d="M460,560 Q512,620 564,560" fill="none" stroke="#000" stroke-width="8"/>
<!-- Teeth -->
<rect x="470" y="560" width="8" height="12" fill="#fff"/>
<rect x="490" y="560" width="8" height="12" fill="#fff"/>
<rect x="510" y="560" width="8" height="12" fill="#fff"/>
<rect x="530" y="560" width="8" height="12" fill="#fff"/>
<rect x="550" y="560" width="8" height="12" fill="#fff"/>
<!-- Teeth highlights -->
<rect x="472" y="562" width="4" height="4" fill="#fff" opacity="0.6"/>
<rect x="492" y="562" width="4" height="4" fill="#fff" opacity="0.6"/>
<rect x="512" y="562" width="4" height="4" fill="#fff" opacity="0.6"/>
<rect x="532" y="562" width="4" height="4" fill="#fff" opacity="0.6"/>
<rect x="552" y="562" width="4" height="4" fill="#fff" opacity="0.6"/>
<!-- Chin shadow -->
<path d="M512,620 L560,660 L464,660 Z" fill="black" opacity="0.2"/>
</svg>