Back

SVG Drawing Match #993

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A flying fish wearing aviator goggles, in a pop art style"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#4682B4" />
    </linearGradient>
    <linearGradient id="fishGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF6B6B" />
      <stop offset="100%" stop-color="#FFE66D" />
    </linearGradient>
    <pattern id="wavePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <path d="M0,10 Q5,5 10,10 T20,10" fill="none" stroke="#1E90FF" stroke-width="2" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <ellipse cx="150" cy="150" rx="100" ry="50" fill="url(#fishGradient)" />
  <path d="M100,150 Q120,130 140,150 T180,150" fill="none" stroke="#000" stroke-width="5" />
  <circle cx="120" cy="140" r="10" fill="#00BFFF" />
  <circle cx="180" cy="140" r="10" fill="#00BFFF" />
  <rect x="115" y="130" width="10" height="20" fill="#000" />
  <rect x="175" y="130" width="10" height="20" fill="#000" />
  <circle cx="150" cy="170" r="5" fill="#000" />
  <path d="M150,175 Q160,180 170,175" fill="none" stroke="#000" stroke-width="3" />
  <path d="M150,165 Q140,160 130,165" fill="none" stroke="#000" stroke-width="3" />
  <rect x="140" y="120" width="20" height="10" fill="#FFD700" />
  <rect x="160" y="120" width="20" height="10" fill="#FFD700" />
  <path d="M140,130 Q150,140 160,130" fill="none" stroke="#FFD700" stroke-width="5" />
  <path d="M160,130 Q170,140 180,130" fill="none" stroke="#FFD700" stroke-width="5" />
  <path d="M100,150 Q80,170 100,190 T140,190" fill="none" stroke="#000" stroke-width="5" />
  <path d="M200,150 Q220,170 200,190 T160,190" fill="none" stroke="#000" stroke-width="5" />
  <rect x="0" y="250" width="300" height="50" fill="url(#wavePattern)" />
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#3498db" rx="20"/>
  
  <!-- Fish Body -->
  <path d="M150 100 C 150 50 200 50 200 100 L 200 150 C 200 200 150 200 150 150 L 150 100 Z" fill="#f7dc6f" />
  <path d="M150 100 C 150 50 100 50 100 100 L 100 150 C 100 200 150 200 150 150 L 150 100 Z" fill="#ffd700" />
  <path d="M150 100 C 150 50 175 50 175 100 L 175 150 C 175 200 150 200 150 150 L 150 100 Z" fill="#ffc107" />
  
  <!-- Fins -->
  <path d="M220 120 L 240 140 L 220 160 Z" fill="#3498db" />
  <path d="M80 120 L 60 140 L 80 160 Z" fill="#3498db" />
  <path d="M150 200 L 170 220 L 150 240 Z" fill="#3498db" />
  
  <!-- Aviator Goggles -->
  <circle cx="150" cy="80" r="20" fill="#fff" />
  <circle cx="130" cy="80" r="20" fill="#fff" />
  <path d="M140 60 L 160 60 L 160 100 L 140 100 Z" fill="#fff" />
  <path d="M120 60 L 140 60 L 140 100 L 120 100 Z" fill="#fff" />
  <circle cx="150" cy="80" r="15" fill="#3498db" />
  <circle cx="130" cy="80" r="15" fill="#3498db" />
  
  <!-- Lens Reflections -->
  <circle cx="150" cy="80" r="10" fill="#fff" />
  <circle cx="130" cy="80" r="10" fill="#fff" />
  
  <!-- Fish Scales -->
  <pattern id="scales" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
    <rect x="0" y="0" width="20" height="20" fill="#ffd700" rx="5" />
  </pattern>
  <rect x="100" y="100" width="100" height="100" fill="url(#scales)" />
  
  <!-- Gradient -->
  <linearGradient id="grad" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#f7dc6f" stop-opacity="1" />
    <stop offset="1" stop-color="#ffd700" stop-opacity="1" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad)" opacity="0.5" rx="20" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image better captures the whimsical and colorful essence of a flying fish with aviator goggles in a pop art style.

    The vibrant background and stylized fish shape align well with the pop art theme.

    Player 2's submission, while clean, lacks the imaginative flair and distinct pop art characteristics expected from the prompt.

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
18
Player 2
18
Rectangles

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

Player 1
6
Player 2
4
Circles

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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

Complexity Metrics

Path Commands

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

Player 1
20
Player 2
40
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
3
Player 2
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