Back

SVG Drawing Match #1646

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale with butterfly wings swimming through clouds"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Clouds -->
  <circle cx="50" cy="50" r="20" fill="#fff"/>
  <circle cx="70" cy="45" r="30" fill="#fff"/>
  <circle cx="90" cy="50" r="25" fill="#fff"/>
  <circle cx="110" cy="50" r="20" fill="#fff"/>
  
  <!-- Whale body -->
  <path d="M150 150 Q180 130 210 150 Q180 170 150 150" fill="#6fb4ce"/>
  
  <!-- Butterfly wings -->
  <path d="M140 140 Q125 160 140 170 L140 150 Z" fill="#7ae582"/>
  <path d="M160 140 Q175 160 160 170 L160 150 Z" fill="#7ae582"/>
  
  <!-- Whale eye -->
  <circle cx="170" cy="155" r="2" fill="#000"/>
</svg>
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="#B0E2FF" />
    </linearGradient>
    <linearGradient id="whaleGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#1E90FF" />
      <stop offset="100%" stop-color="#00BFFF" />
    </linearGradient>
    <linearGradient id="wingGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="50%" stop-color="#FFA500" />
      <stop offset="100%" stop-color="#FF6347" />
    </linearGradient>
    <pattern id="cloudPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="25" cy="25" r="15" fill="white" />
      <circle cx="40" cy="20" r="10" fill="white" />
      <circle cx="10" cy="30" r="12" fill="white" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M 100 150 Q 140 120 180 150 T 200 150 Q 160 180 100 150 Z" fill="url(#whaleGradient)" />
  <path d="M 150 100 Q 130 70 110 100 T 90 100 Q 110 130 150 100 Z" fill="url(#wingGradient)" />
  <path d="M 200 100 Q 180 70 160 100 T 140 100 Q 160 130 200 100 Z" fill="url(#wingGradient)" />
  <ellipse cx="50" cy="50" rx="40" ry="20" fill="url(#cloudPattern)" />
  <ellipse cx="250" cy="70" rx="40" ry="20" fill="url(#cloudPattern)" />
  <ellipse cx="150" cy="30" rx="40" ry="20" fill="url(#cloudPattern)" />
  <ellipse cx="100" cy="250" rx="40" ry="20" fill="url(#cloudPattern)" />
  <ellipse cx="200" cy="230" rx="40" ry="20" fill="url(#cloudPattern)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's submission shows a more creative and visually appealing interpretation of the prompt with clear and vibrant colors.

    The use of butterfly wings is more evident and integrated with the whale, and the inclusion of multiple clouds adds to the whimsical atmosphere.

    In contrast, Player 1's image is simpler and less detailed, lacking the same level of creativity and technical 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
8
Player 2
12
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
5
Player 2
3
Ellipses

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

Player 1
Player 2
5
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
3
Player 2
3
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
Player 2
3
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
8

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
11
Player 2
15
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
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