Back

SVG Drawing Match #1196

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cat-shaped island with fish-shaped trees in geometric style"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#56B3FA" rx="10" />
  
  <!-- Cat Island -->
  <path d="M 130 120 L 150 100 L 170 120 L 190 140 L 170 160 L 150 180 L 130 160 L 110 140 Z" fill="#F7DC6F" stroke="#FFC107" stroke-width="2" />
  <path d="M 150 100 L 150 80 L 170 60 L 190 80 L 190 100 Z" fill="#F7DC6F" stroke="#FFC107" stroke-width="2" />
  <circle cx="150" cy="130" r="20" fill="#F7DC6F" stroke="#FFC107" stroke-width="2" />
  <circle cx="170" cy="110" r="10" fill="#F2C464" stroke="#FFC107" stroke-width="2" />
  <circle cx="130" cy="110" r="10" fill="#F2C464" stroke="#FFC107" stroke-width="2" />
  
  <!-- Fish Trees -->
  <g transform="translate(50, 50)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
  </g>
  <g transform="translate(100, 100)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
  </g>
  <g transform="translate(200, 50)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="#8BC34A" stroke="#4CAF50" stroke-width="2" />
  </g>
  
  <!-- Gradients and shadows -->
  <defs>
    <linearGradient id="treeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8BC34A" />
      <stop offset="100%" stop-color="#3E8E41" />
    </linearGradient>
    <linearGradient id="islandGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#F7DC6F" />
      <stop offset="100%" stop-color="#F2C464" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#islandGradient)" rx="10" opacity="0.5" />
  <g transform="translate(50, 50)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
  </g>
  <g transform="translate(100, 100)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
  </g>
  <g transform="translate(200, 50)">
    <path d="M 0 0 L 20 20 L 40 0 L 60 20 L 80 0 L 60 -20 L 40 0 L 20 -20 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
    <path d="M 40 0 L 40 20 L 60 40 L 80 20 L 80 0 Z" fill="url(#treeGradient)" stroke="#4CAF50" stroke-width="2" />
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(234,153,153);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(201,218,248);stop-opacity:1" />
    </radialGradient>
    <linearGradient id="treeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,216,155);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(249,168,37);stop-opacity:1" />
    </linearGradient>
    <pattern id="wave" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="2" fill="lightblue" />
    </pattern>
  </defs>
  <!-- Cat-shaped island -->
  <path d="M150 280 C150 260, 130 250, 120 230 C110 220, 100 196, 115 180 C130 165, 140 160, 170 150 C200 140, 210 160, 230 180 C245 200, 240 220, 250 230 C260 240, 250 260, 250 280 Z" fill="url(#islandGradient)" stroke="black" stroke-width="1"/>
  <!-- Ears of the cat island -->
  <polygon points="98,180 112,148 126,180" fill="url(#islandGradient)" stroke="black" stroke-width="1"/>
  <polygon points="230,180 244,148 258,180" fill="url(#islandGradient)" stroke="black" stroke-width="1"/>
  
  <!-- Fish-shaped trees -->
  <g transform="translate(80,130)">
    <path d="M0 0 C20 -10, 40 10, 60 0 C40 10, 20 -10, 0 0 Z" fill="url(#treeGradient)" />
    <rect x="28" y="-5" width="4" height="20" fill="#8B4513"/>
  </g>
  <g transform="translate(200,120)">
    <path d="M0 0 C20 -10, 40 10, 60 0 C40 10, 20 -10, 0 0 Z" fill="url(#treeGradient)" />
    <rect x="28" y="-5" width="4" height="20" fill="#8B4513"/>
  </g>
  <g transform="translate(150,160)">
    <path d="M0 0 C20 -10, 40 10, 60 0 C40 10, 20 -10, 0 0 Z" fill="url(#treeGradient)" />
    <rect x="28" y="-5" width="4" height="20" fill="#8B4513"/>
  </g>

  <!-- Water with wave pattern -->
  <rect x="0" y="280" width="300" height="20" fill="url(#wave)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's image effectively uses geometric shapes to create a clear representation of a cat-shaped island with fish-shaped trees, adhering closely to the prompt.

    The technical quality and compositional strength are strong, with a harmonious color palette.

    Player 2's submission is less defined and abstract, making it harder to interpret as per the given theme.

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
19
Player 2
11
Rectangles

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

Player 1
2
Player 2
4
Circles

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

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

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

Player 1
14
Player 2
4
Groups

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

Player 1
6
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
3

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
6
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
105
Player 2
20
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
2
Player 2
3
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