Back

SVG Drawing Match #1642

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giant apple tree growing on the back of a turtle island"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient sky and water -->
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#87CEEB" />
      <stop offset="1" stop-color="#4682B4" />
    </linearGradient>
    <linearGradient id="water" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#6495ED" />
      <stop offset="1" stop-color="#1E90FF" />
    </linearGradient>
    <radialGradient id="sun" cx="150" cy="100" r="50" fx="150" fy="100">
      <stop offset="0" stop-color="#FDB813" />
      <stop offset="1" stop-color="#FFD700" />
    </radialGradient>
    <linearGradient id="turtleShell" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0" stop-color="#8B4513" />
      <stop offset="1" stop-color="#4A2B0F" />
    </linearGradient>
    <linearGradient id="leaf" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0" stop-color="#32CD32" />
      <stop offset="1" stop-color="#228B22" />
    </linearGradient>
  </defs>

  <!-- Sky and water background -->
  <rect width="300" height="300" fill="url(#sky)" />
  <rect x="0" y="200" width="300" height="100" fill="url(#water)" />

  <!-- Turtle -->
  <g transform="translate(150,200)">
    <!-- Turtle shell -->
    <path d="M0 0 Q150 80 300 0 Q260 -40 185 -40 Q150 -80 80 -40 Q40 -40 0 0" fill="url(#turtleShell)" />
    <!-- Turtle head and legs -->
    <circle cx="150" cy="-50" r="20" fill="#8B4513" />
    <circle cx="70" cy="10" r="15" fill="#8B4513" />
    <circle cx="230" cy="10" r="15" fill="#8B4513" />
    <circle cx="40" cy="160" r="15" fill="#8B4513" />
    <circle cx="260" cy="160" r="15" fill="#8B4513" />
  </g>

  <!-- Island on turtle's back -->
  <g transform="translate(150,150)">
    <!-- Land mass -->
    <path d="M0 0 Q50 -20 100 0 Q150 20 200 0 Q250 -20 300 0" fill="url(#leaf)" />
    <!-- Tree trunk -->
    <path d="M150 0 L150 100" stroke="#8B4513" stroke-width="20" fill="none" />
    <!-- Tree branches -->
    <path d="M150 100 Q120 150 90 160" stroke="#8B4513" stroke-width="15" fill="none" />
    <path d="M150 100 Q180 150 210 160" stroke="#8B4513" stroke-width="15" fill="none" />
    <!-- Apples -->
    <circle cx="100" cy="120" r="15" fill="red" />
    <circle cx="200" cy="120" r="15" fill="red" />
    <circle cx="150" cy="140" r="15" fill="red" />
    <!-- Leaves -->
    <path d="M100 100 Q120 80 140 100" fill="url(#leaf)" />
    <path d="M200 100 Q220 80 240 100" fill="url(#leaf)" />
    <path d="M150 160 Q170 180 150 200" fill="url(#leaf)" />
  </g>

  <!-- Sun -->
  <circle cx="250" cy="70" r="50" fill="url(#sun)" />
  <!-- Clouds -->
  <circle cx="50" cy="50" r="20" fill="white" opacity="0.6" />
  <circle cx="80" cy="60" r="30" fill="white" opacity="0.6" />
  <circle cx="110" cy="50" r="25" fill="white" opacity="0.6" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Turtle island body -->
  <circle cx="150" cy="200" r="100" fill="#a98f71" />
  <!-- Turtle shell -->
  <path d="M50 200 Q150 100 250 200 Q150 140 50 200" fill="#6f4e23" />
  
  <!-- Apple tree trunk -->
  <rect x="145" y="120" width="10" height="80" fill="#8b5a2b" />
  <!-- Apple tree canopy -->
  <circle cx="150" cy="120" r="50" fill="#1a832b" />
  <circle cx="130" cy="100" r="40" fill="#1a832b" />
  <circle cx="170" cy="100" r="40" fill="#1a832b" />
  <circle cx="110" cy="140" r="30" fill="#1a832b" />
  <circle cx="190" cy="140" r="30" fill="#1a832b" />
  
  <!-- Apple fruits -->
  <circle cx="130" cy="100" r="10" fill="#ee4540" />
  <circle cx="170" cy="100" r="10" fill="#ee4540" />
  <circle cx="110" cy="140" r="10" fill="#ee4540" />
  <circle cx="190" cy="140" r="10" fill="#ee4540" />
  
  <!-- Sun -->
  <circle cx="280" cy="20" r="30" fill="#ffcd00" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's submission clearly represents the concept of a giant apple tree growing on the back of a turtle island, with a distinct turtle shape and a tree on top.

    The composition is simple yet effective, and the visual elements are cohesive.

    In contrast, Player 1's image lacks clarity and the turtle island concept is not as easily discernible.

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
22
Player 2
13
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
12
Player 2
11
Ellipses

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

Player 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
1
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
3
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
6

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