Back

SVG Drawing Match #1289

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dinosaur in a Victorian suit sipping tea under the sea"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="water" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#1a4d7c"/>
      <stop offset="100%" stop-color="#0a2d4c"/>
    </radialGradient>
    <pattern id="bubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.2)"/>
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#water)"/>
  <rect x="0" y="0" width="300" height="300" fill="url(#bubbles)"/>
  
  <!-- Seaweed -->
  <path d="M30,300 Q40,250 30,200 Q20,150 30,100" stroke="#2d5a3d" fill="none" stroke-width="8"/>
  <path d="M50,300 Q60,240 50,180 Q40,120 50,60" stroke="#3a724d" fill="none" stroke-width="6"/>
  <path d="M250,300 Q260,250 250,200 Q240,150 250,100" stroke="#2d5a3d" fill="none" stroke-width="8"/>
  
  <!-- T-Rex Body -->
  <path d="M120,150 Q150,140 170,150 L190,180 Q200,190 210,185 L220,180" 
        fill="#557c55" stroke="#2d5a3d" stroke-width="2"/>
  
  <!-- Victorian Suit -->
  <path d="M130,150 Q150,145 170,150 L180,200 Q160,210 140,200 Z" 
        fill="#331a1a" stroke="#220000" stroke-width="2"/>
  <circle cx="150" cy="160" r="3" fill="gold"/> <!-- Button -->
  <circle cx="150" cy="175" r="3" fill="gold"/> <!-- Button -->
  
  <!-- T-Rex Head -->
  <path d="M110,150 Q100,140 95,130 L85,125 Q80,123 75,125 L70,127" 
        fill="#557c55" stroke="#2d5a3d" stroke-width="2"/>
  <circle cx="90" cy="127" r="2" fill="black"/> <!-- Eye -->
  <path d="M75,127 Q73,127 70,128" stroke="black" fill="none"/> <!-- Smile -->
  
  <!-- Monocle -->
  <circle cx="90" cy="127" r="5" fill="none" stroke="gold" stroke-width="1"/>
  <line x1="95" y1="127" x2="105" y2="130" stroke="gold" stroke-width="1"/>
  
  <!-- Bowtie -->
  <path d="M115,145 L110,142 L115,139 L120,142 Z" fill="#aa0000"/>
  
  <!-- Teacup -->
  <ellipse cx="140" cy="190" rx="15" ry="10" fill="#f0f0f0" stroke="#cccccc"/>
  <path d="M125,190 Q140,195 155,190" fill="none" stroke="#cccccc"/>
  <path d="M155,190 Q160,185 165,190" fill="none" stroke="#cccccc"/>
  
  <!-- Steam -->
  <path d="M135,175 Q140,170 135,165 Q130,160 135,155" 
        stroke="rgba(255,255,255,0.3)" fill="none" stroke-width="2"/>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="ocean" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#032B44" />
      <stop offset="0.5" stop-color="#045A8D" />
      <stop offset="1" stop-color="#0689B3" />
    </linearGradient>
    <pattern id="suit" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#3A3D41" rx="1" />
      <rect x="2" y="2" width="6" height="6" fill="#454F55" rx="1" />
    </pattern>
    <radialGradient id="teacup" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#F7D2C4" />
      <stop offset="1" stop-color="#F2C464" />
    </radialGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#ocean)" />
  <g transform="translate(150 120)">
    <path d="M-30-60L30-60L30-30L-30-30Z" fill="url(#suit)" />
    <path d="M-20-50L20-50L20-30L-20-30Z" fill="#454F55" />
    <path d="M-15-40L15-40L15-20L-15-20Z" fill="#3A3D41" />
    <circle cx="0" cy="-50" r="20" fill="#F2C464" />
    <path d="M-10-40L10-40L10-20L-10-20Z" fill="#F7D2C4" />
    <circle cx="0" cy="-30" r="10" fill="url(#teacup)" />
    <path d="M-5-20L5-20L5-10L-5-10Z" fill="#F2C464" />
    <circle cx="0" cy="-10" r="5" fill="#F7D2C4" />
  </g>
  <g transform="translate(120 150) scale(0.8)">
    <path d="M-40-20L-20-40L40-40L20-20Z" fill="#3A3D41" />
    <path d="M-30-10L-10-30L30-30L10-10Z" fill="#454F55" />
    <path d="M-20-10L-10-20L20-20L10-10Z" fill="#3A3D41" />
    <circle cx="0" cy="-20" r="20" fill="#F2C464" />
    <path d="M-15-10L-5-15L15-15L5-10Z" fill="#F7D2C4" />
  </g>
  <g transform="translate(180 150) scale(0.6)">
    <path d="M-30-20L-20-40L30-40L20-20Z" fill="#3A3D41" />
    <path d="M-20-10L-10-20L20-20L10-10Z" fill="#454F55" />
    <path d="M-15-10L-5-15L15-15L5-10Z" fill="#F2C464" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's submission creatively depicts a dinosaur with a monocle and Victorian suit details, clearly sipping tea, and successfully conveys the underwater setting with seaweed and a dotted background.

    Player 2's image lacks recognizable features of a dinosaur or Victorian attire, making it less adherent to the prompt.

    Player 1's image is more visually appealing and complete in its execution.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
20
Player 2
19
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
2
Player 2
3
Circles

The number of circle elements (circle) in the SVG.

Player 1
5
Player 2
4
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
1
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
11
Player 2
12
Groups

The number of group elements (g) in the SVG.

Player 1
Player 2
3

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
1
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
7

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
38
Player 2
60
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
2
Player 2
3
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges