Back

SVG Drawing Match #1580

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe wearing a scuba suit, diving under a tea-filled ocean"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="teaOcean" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#DAA520"/>
      <stop offset="100%" stop-color="#B8860B"/>
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
    <pattern id="teaBubbles" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#FFF" opacity="0.8"/>
    </pattern>
    <filter id="shadow">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-color="#000000" flood-opacity="0.5"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#teaOcean)"/>
  <rect width="300" height="300" fill="url(#teaBubbles)" opacity="0.3"/>
  <g transform="translate(100, 100)">
    <path d="M40,120 L40,60 Q40,40 60,40 L80,40 Q100,40 100,60 L100,120 Q100,140 80,140 L60,140 Q40,140 40,120Z" fill="#1E90FF"/>
    <ellipse cx="70" cy="50" rx="10" ry="15" fill="#00CED1"/>
    <path d="M50,140 L50,200 Q50,220 70,220 L90,220 Q110,220 110,200 L110,140" fill="#1E90FF"/>
    <path d="M70,220 L70,240 L90,240 L90,220" fill="#1E90FF"/>
    <path d="M60,40 L60,20 Q60,10 70,10 L80,10 Q90,10 90,20 L90,40" fill="#00CED1"/>
    <path d="M70,10 L70,0 L80,0 L80,10" fill="#00CED1"/>
    <path d="M40,120 L20,120 Q0,120 0,140 L0,160 Q0,180 20,180 L40,180" fill="url(#giraffeGradient)"/>
    <path d="M100,120 L120,120 Q140,120 140,140 L140,160 Q140,180 120,180 L100,180" fill="url(#giraffeGradient)"/>
    <circle cx="70" cy="70" r="5" fill="#000"/>
    <path d="M70,75 L70,80" stroke="#000" stroke-width="2"/>
    <path d="M70,80 Q72,82 74,80" stroke="#000" stroke-width="2"/>
    <path d="M70,80 Q68,82 66,80" stroke="#000" stroke-width="2"/>
    <path d="M40,180 L40,200 Q40,220 60,220 L80,220 Q100,220 100,200 L100,180" fill="url(#giraffeGradient)"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <pattern id="teaPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="url(#leafGradient)"/>
    </pattern>
    <linearGradient id="leafGradient">
      <stop offset="0%" stop-color="#8FBC8F"/>
      <stop offset="100%" stop-color="#4B644B"/>
    </linearGradient>
    <linearGradient id="giraffeGradient">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FFA500"/>
    </linearGradient>
    <linearGradient id="waterGradient">
      <stop offset="0%" stop-color="#4169E1"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="#FFFACD"/>
  <g transform="translate(150,150)">
    <!-- Giraffe Body -->
    <path d="M-50,-50 Q0,-50 50,-50 L50,50 Q0,50 -50,50 Z" fill="url(#giraffeGradient)" stroke="#000" stroke-width="2"/>
    <!-- Neck -->
    <path d="M0,-50 Q20,-30 40,-20 L40,-10 Q20,0 0,10" fill="url(#giraffeGradient)" stroke="#000" stroke-width="2"/>
    <!-- Head -->
    <path d="M40,-20 L60,-30 Q50,-35 40,-30 Z" fill="url(#giraffeGradient)" stroke="#000" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="55" cy="-25" r="3" fill="#000"/>
    <circle cx="58" cy="-23" r="2" fill="#FFF"/>
    <!-- Scuba Gear -->
    <rect x="35" y="-60" width="30" height="40" fill="#000" rx="5"/>
    <rect x="30" y="-40" width="40" height="20" fill="#000" rx="5"/>
    <!-- Bubbles -->
    <g opacity="0.5">
      <circle cx="-30" cy="20" r="5" fill="#FFF"/>
      <circle cx="-20" cy="30" r="6" fill="#FFF"/>
      <circle cx="-10" cy="40" r="7" fill="#FFF"/>
    </g>
  </g>
  <!-- Tea Ocean -->
  <rect y="150" width="300" height="150" fill="url(#waterGradient)"/>
  <!-- Waves -->
  <path d="M0,150 Q150,130 300,150" fill="url(#teaPattern)" opacity="0.3"/>
  <path d="M0,160 Q150,140 300,160" fill="url(#teaPattern)" opacity="0.3"/>
  <!-- Floating Tea Leaves -->
  <g transform="translate(100,170)" opacity="0.5">
    <rect width="10" height="5" rx="3" fill="#4B644B"/>
    <rect width="10" height="5" rx="3" fill="#4B644B" transform="translate(30,20) rotate(15)"/>
  </g>
  <!-- Bubbles -->
  <g transform="translate(200,100)" opacity="0.7">
    <circle r="8" fill="#FFF"/>
    <circle r="6" fill="#FFF" transform="translate(20,10)"/>
    <circle r="5" fill="#FFF" transform="translate(40,15)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image creatively combines the giraffe and scuba suit elements with vibrant colors and a playful style, aligning well with the whimsical prompt.

    The use of simple shapes and patterns effectively conveys the underwater tea theme, enhancing visual appeal.

    Player 2's image, while interesting, lacks the clear depiction of the giraffe and scuba theme, making Player 1's submission more successful overall.

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
16
Player 2
20
Rectangles

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

Player 1
2
Player 2
6
Circles

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

Player 1
2
Player 2
9
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
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
5
Groups

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

Player 1
1
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
3
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
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
2
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
9

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
1
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
54
Player 2
17
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

Player 1
4
Player 2
4
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