BuseyBench SVG Test
Generated by Inception on Jul 2, 2026 using prompt svg-v1-no-web.
3.1/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>
<!-- Skin gradient -->
<radialGradient id="skinGrad" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ffdbac"/>
<stop offset="100%" stop-color="#d1946c"/>
</radialGradient>
<!-- Hair gradient -->
<linearGradient id="hairGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#2c1b0c"/>
<stop offset="100%" stop-color="#5a3e2b"/>
</linearGradient>
<!-- Eye iris gradient -->
<radialGradient id="eyeGrad" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#6c9bff"/>
<stop offset="100%" stop-color="#2c4a8a"/>
</radialGradient>
<!-- Lip gradient -->
<linearGradient id="lipGrad" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" stop-color="#c84b4b"/>
<stop offset="100%" stop-color="#a03030"/>
</linearGradient>
<!-- Drop shadow filter for face -->
<filter id="shadowFilter" x="-20%" y="-20%" width="140%" height="140%">
<feDropShadow dx="0" dy="10" stdDeviation="15" flood-color="#000" flood-opacity="0.3"/>
</filter>
<!-- Blur filter for highlights -->
<filter id="blurHighlight" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="8"/>
</filter>
<!-- Clip path for mouth interior -->
<clipPath id="mouthClip">
<path d="M380,680 Q512,770 644,680 Q512,750 380,680 Z"/>
</clipPath>
</defs>
<!-- Face with shadow -->
<g filter="url(#shadowFilter)">
<path d="M512,150 C350,150 200,300 200,500 C200,700 350,850 512,850 C674,850 824,700 824,500 C824,300 674,150 512,150 Z"
fill="url(#skinGrad)"/>
</g>
<!-- Hair -->
<path d="M200,350 C200,150 350,100 512,100 C674,100 824,150 824,350 C824,500 724,600 624,600 C574,600 524,550 512,550 C500,550 450,600 400,600 C300,600 200,500 200,350 Z"
fill="url(#hairGrad)"/>
<!-- Left eye -->
<g>
<ellipse cx="380" cy="460" rx="45" ry="30" fill="#fff"/>
<ellipse cx="380" cy="460" rx="20" ry="20" fill="url(#eyeGrad)"/>
<circle cx="380" cy="460" r="8" fill="#000"/>
<circle cx="374" cy="455" r="3" fill="#fff" opacity="0.7"/>
</g>
<!-- Right eye -->
<g>
<ellipse cx="644" cy="460" rx="45" ry="30" fill="#fff"/>
<ellipse cx="644" cy="460" rx="20" ry="20" fill="url(#eyeGrad)"/>
<circle cx="644" cy="460" r="8" fill="#000"/>
<circle cx="638" cy="455" r="3" fill="#fff" opacity="0.7"/>
</g>
<!-- Eyebrows -->
<path d="M330,410 Q380,380 430,410" stroke="#2c1b0c" stroke-width="12" fill="none" stroke-linecap="round"/>
<path d="M594,410 Q644,380 694,410" stroke="#2c1b0c" stroke-width="12" fill="none" stroke-linecap="round"/>
<!-- Nose -->
<path d="M512,500 Q512,560 492,560 Q512,560 532,560"
stroke="#d1946c" stroke-width="8" fill="none" stroke-linecap="round"/>
<!-- Mouth -->
<g clip-path="url(#mouthClip)">
<path d="M380,680 Q512,770 644,680 Q512,750 380,680 Z"
fill="#ff5c5c"/>
<!-- Teeth -->
<g fill="#fff">
<rect x="420" y="660" width="20" height="30"/>
<rect x="460" y="660" width="20" height="30"/>
<rect x="500" y="660" width="20" height="30"/>
<rect x="540" y="660" width="20" height="30"/>
<rect x="580" y="660" width="20" height="30"/>
<rect x="620" y="660" width="20" height="30"/>
</g>
</g>
<!-- Lip highlight -->
<ellipse cx="512" cy="710" rx="80" ry="20" fill="#fff" opacity="0.2" filter="url(#blurHighlight)"/>
<!-- Cheek highlight -->
<ellipse cx="340" cy="560" rx="30" ry="15" fill="#fff" opacity="0.15" filter="url(#blurHighlight)"/>
<ellipse cx="684" cy="560" rx="30" ry="15" fill="#fff" opacity="0.15" filter="url(#blurHighlight)"/>
<!-- Forehead wrinkle (expressive) -->
<path d="M460,210 Q512,190 564,210"
stroke="#c0845a" stroke-width="4" fill="none" stroke-linecap="round"/>
<!-- Jawline shadow -->
<path d="M200,500 C200,700 350,850 512,850 C674,850 824,700 824,500"
stroke="#a06b48" stroke-width="12" fill="none" stroke-linecap="round"/>
</svg>