BuseyBench SVG Test
Generated by Google on Jul 1, 2026 using prompt svg-v1-no-web.
4.3/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">
<defs>
<filter id="skinTexture" x="-20%" y="-20%" width="140%" height="140%">
<feGaussianBlur in="SourceGraphic" stdDeviation="2" />
</filter>
<linearGradient id="skinGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f5d0b5" />
<stop offset="100%" style="stop-color:#d4a381" />
</linearGradient>
<linearGradient id="hairGrad" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#e0e0e0" />
<stop offset="100%" style="stop-color:#a0a0a0" />
</linearGradient>
<radialGradient id="eyeGrad" cx="50%" cy="50%" r="50%">
<stop offset="0%" style="stop-color:#ffffff" />
<stop offset="100%" style="stop-color:#c0c0c0" />
</radialGradient>
</defs>
<!-- Background -->
<rect width="1024" height="1024" fill="#222" />
<!-- Neck -->
<path d="M400 700 Q512 850 624 700 L600 900 L424 900 Z" fill="#c49371" />
<!-- Face Shape (The iconic wide jaw) -->
<path d="M320 300 Q300 500 350 700 Q400 850 512 850 Q624 850 674 700 Q724 500 704 300 Q700 150 512 150 Q320 150 320 300" fill="url(#skinGrad)" />
<!-- Hair (Wild, wispy, silver/white) -->
<g fill="url(#hairGrad)" stroke="#fff" stroke-width="1">
<path d="M320 300 Q280 200 350 150 Q400 100 512 120 Q624 100 674 150 Q744 200 704 300" />
<path d="M320 300 Q250 350 280 450 Q300 400 320 350" />
<path d="M704 300 Q774 350 744 450 Q724 400 704 350" />
<path d="M400 150 Q450 80 512 100 Q560 80 610 150" />
</g>
<!-- Eyebrows (Expressive, arched) -->
<path d="M380 380 Q420 350 470 370" fill="none" stroke="#888" stroke-width="12" stroke-linecap="round" />
<path d="M554 370 Q604 350 644 380" fill="none" stroke="#888" stroke-width="12" stroke-linecap="round" />
<!-- Eyes (Wide, intense) -->
<g>
<!-- Left Eye -->
<ellipse cx="425" cy="410" rx="35" ry="20" fill="white" />
<circle cx="425" cy="410" r="12" fill="#333" />
<circle cx="428" cy="407" r="4" fill="white" />
<!-- Right Eye -->
<ellipse cx="599" cy="410" rx="35" ry="20" fill="white" />
<circle cx="599" cy="410" r="12" fill="#333" />
<circle cx="602" cy="407" r="4" fill="white" />
</g>
<!-- Nose (Prominent) -->
<path d="M512 410 L512 580 Q512 620 470 620 L554 620 Q512 620 512 580" fill="none" stroke="#b08060" stroke-width="4" />
<path d="M470 610 Q512 640 554 610" fill="none" stroke="#a07050" stroke-width="6" stroke-linecap="round" />
<!-- Mouth (The wide, toothy grin) -->
<path d="M380 680 Q512 800 644 680 Q512 720 380 680" fill="#600" />
<!-- Teeth (Bright white, prominent) -->
<path d="M390 680 Q512 740 634 680 L630 670 L390 670 Z" fill="white" />
<path d="M420 670 L430 685 M450 670 L460 685 M480 670 L490 685 M512 670 L522 685 M540 670 L550 685 M570 670 L580 685 M600 670 L610 685" stroke="#ccc" stroke-width="2" />
<!-- Laugh Lines / Wrinkles -->
<g stroke="#b08060" stroke-width="3" fill="none" opacity="0.6">
<path d="M360 600 Q380 650 390 680" />
<path d="M664 600 Q644 650 634 680" />
<path d="M420 360 Q440 350 460 360" />
<path d="M564 360 Q584 350 604 360" />
</g>
<!-- Highlights for depth -->
<ellipse cx="512" cy="250" rx="100" ry="40" fill="white" opacity="0.2" />
</svg>