Back

SVG Drawing Match #1979

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Agrarian moon, cows grazing in zero gravity fields"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#191970" />
  
  <!-- Moon -->
  <circle cx="150" cy="100" r="80" fill="#F0E68C" />
  
  <!-- Craters on Moon -->
  <circle cx="120" cy="70" r="10" fill="#A9A9A9" />
  <circle cx="180" cy="125" r="15" fill="#A9A9A9" />
  <circle cx="140" cy="140" r="8" fill="#A9A9A9" />
  <circle cx="160" cy="65" r="13" fill="#A9A9A9" />
  
  <!-- Cows -->
  <path fill="#FFD700" d="M50 250 Q65 200 90 250 Q105 200 130 250 Q145 200 170 250 Q185 200 210 250 Q225 200 250 250 Z"/>
  <ellipse cx="90" cy="230" rx="20" ry="10" fill="#FFD700" />
  <ellipse cx="110" cy="250" rx="20" ry="10" fill="#FFD700" />
  <ellipse cx="150" cy="245" rx="20" ry="10" fill="#FFD700" />
  <ellipse cx="190" cy="240" rx="20" ry="10" fill="#FFD700" />
  <ellipse cx="210" cy="260" rx="20" ry="10" fill="#FFD700" />
  
  <!-- Zero Gravity Effect -->
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color: #FFFFFF; stop-opacity: 0" />
      <stop offset="100%" style="stop-color: #FFFFFF; stop-opacity: 1" />
    </linearGradient>
  </defs>
  <rect x="0" y="150" width="300" height="150" fill="url(#grad1)" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <defs>
    <linearGradient id="moon-sky" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1A0F3B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4A1010;stop-opacity:1" />
    </linearGradient>
    
    <!-- Field gradient -->
    <linearGradient id="field" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#34C759;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2B7D2B;stop-opacity:1" />
    </linearGradient>
    
    <!-- Cow gradient -->
    <linearGradient id="cow" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFFFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
    </linearGradient>
    
    <!-- Clip path for fields -->
    <clipPath id="fieldClip">
      <path d="M0,150 C100,100 200,100 300,150 C220,180 280,180 300,150" />
    </clipPath>
  </defs>

  <!-- Background sky -->
  <rect width="300" height="300" fill="url(#moon-sky)" />
  
  <!-- Floating fields -->
  <g clip-path="url(#fieldClip)">
    <path d="M0,100 Q100,50 200,100 Q300,150 400,100" fill="url(#field)" />
  </g>

  <!-- Cows -->
  <g transform="translate(100,100)">
    <!-- Cow 1 -->
    <path d="M0,0 L20,30 Q25,35 30,30 L40,0 Q45,-5 50,0 L60,20 Q65,25 70,20 L80,0 Q85,-5 90,0 L100,20 Q105,25 110,20 L120,0 Q125,-5 130,0 L140,20 Q145,25 150,20 L160,0 Q165,-5 170,0 L180,20 Q185,25 190,20 L200,0 Q205,-5 210,0" fill="url(#cow)" />
    <path d="M20,20 Q25,25 30,20 L40,40 Q45,45 50,40 L60,20" fill="#000" />
    
    <!-- Cow 2 (upside down) -->
    <path transform="translate(200,50) scale(1,-1)" d="M0,0 L20,30 Q25,35 30,30 L40,0 Q45,-5 50,0 L60,20 Q65,25 70,20 L80,0 Q85,-5 90,0 L100,20 Q105,25 110,20 L120,0 Q125,-5 130,0 L140,20 Q145,25 150,20 L160,0 Q165,-5 170,0 L180,20 Q185,25 190,20 L200,0 Q205,-5 210,0" fill="url(#cow)" />
    <path transform="translate(220,70) scale(1,-1)" d="M20,20 Q25,25 30,20 L40,40 Q45,45 50,40 L60,20" fill="#000" />
  </g>

  <!-- Moon craters -->
  <circle cx="100" cy="100" r="20" fill="#4A1010" opacity="0.7" />
  <circle cx="200" cy="80" r="30" fill="#4A1010" opacity="0.7" />
  <circle cx="50" cy="150" r="25" fill="#4A1010" opacity="0.7" />

  <!-- Stars -->
  <g fill="#FFFFFF">
    <circle cx="50" cy="50" r="1" />
    <circle cx="80" cy="30" r="1" />
    <circle cx="120" cy="40" r="1" />
    <circle cx="150" cy="20" r="1" />
    <circle cx="200" cy="35" r="1" />
    <circle cx="250" cy="50" r="1" />
  </g>

  <!-- Grass details -->
  <path d="M0,150 Q50,160 100,150 Q150,140 200,150 Q250,160 300,150" stroke="#34C759" stroke-width="2" fill="none" marker-end="url(#arrow)" />
  <defs>
    <marker id="arrow" markerWidth="10" markerHeight="7" refX="9" refY="3.5" orient="auto">
      <polygon points="0 0, 10 3.5, 0 7" fill="#34C759"/>
    </marker>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image captures the concept of an 'agrarian moon' with a creative depiction of cows grazing in a zero-gravity environment through the use of inverted landscapes and floating elements.

    The technical execution is more refined, adhering closely to the prompt with an imaginative composition.

    Player 1's image lacks clarity in representing the 'zero gravity fields' and does not visually convey the agrarian theme as effectively.

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

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

Player 1
2
Player 2
1
Circles

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

Player 1
5
Player 2
9
Ellipses

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

Player 1
5
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
1
Paths

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

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

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
3
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
4

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