Back

SVG Drawing Match #2073

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Half-zipped fruit revealing surreal cityscapes"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="fruitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6347;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF4500;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="cityGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1E90FF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00BFFF;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="zipGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#CCCCCC;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#999999;stop-opacity:1" />
    </linearGradient>
    <pattern id="windowPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="none" />
      <circle cx="5" cy="5" r="1.5" fill="#FFFF00" />
    </pattern>
  </defs>
  <!-- Fruit Body -->
  <circle cx="150" cy="150" r="100" fill="url(#fruitGradient)" />
  <!-- Zipper -->
  <path d="M150,50 Q155,150 150,250" stroke="url(#zipGradient)" stroke-width="4" fill="none" stroke-linecap="round"/>
  <!-- Zipper Teeth -->
  <g stroke="url(#zipGradient)" stroke-width="2">
    <line x1="150" y1="50" x2="150", y2="250" />
    <path d="M150,60 L155,65 M150,70 L155,75 M150,80 L155,85 M150,90 L155,95 M150,100 L155,105 M150,110 L155,115 M150,120 L155,125 M150,130 L155,135 M150,140 L155,145 M150,150 L155,155 M150,160 L155,165 M150,170 L155,175 M150,180 L155,185 M150,190 L155,195 M150,200 L155,205 M150,210 L155,215 M150,220 L155,225 M150,230 L155,235 M150,240 L155,245 M150,250 L155,255" />
  </g>
  <!-- Cityscape -->
  <clipPath id="zipClip">
    <path d="M150,50 Q155,150 150,250" />
    <rect x="155" y="50" width="100" height="200" />
    <path d="M150,250 Q155,150 150,50 Z" />
  </clipPath>
  <g clip-path="url(#zipClip)">
    <!-- Buildings -->
    <rect x="160" y="180" width="20" height="70" fill="url(#cityGradient)" />
    <rect x="190" y="150" width="30" height="100" fill="url(#cityGradient)" />
    <rect x="230" y="160" width="15" height="90" fill="url(#cityGradient)" />
    <rect x="170" y="200" width="25" height="50" fill="url(#cityGradient)" />
    <!-- Windows -->
    <g fill="url(#windowPattern)">
      <rect x="165" y="185" width="10" height="10" />
      <rect x="180" y="185" width="10" height="10" />
      <rect x="165" y="200" width="10" height="10" />
      <rect x="180" y="200" width="10" height="10" />
      <rect x="165" y="215" width="10" height="10" />
      <rect x="180" y="215" width="10" height="10" />
      <rect x="195" y="155" width="10" height="10" />
      <rect x="210" y="155" width="10" height="10" />
      <rect x="195" y="170" width="10" height="10" />
      <rect x="210" y="170" width="10" height="10" />
      <rect x="195" y="185" width="10" height="10" />
      <rect x="210" y="185" width="10" height="10" />
      <rect x="195" y="200" width="10" height="10" />
      <rect x="210" y="200" width="10" height="10" />
      <rect x="240" y="165" width="10" height="10" />
      <rect x="240" y="180" width="10" height="10" />
      <rect x="240" y="195" width="10" height="10" />
    </g>
    <!-- Surreal Elements -->
    <circle cx="200" cy="130" r="15" fill="#FFD700" opacity="0.7" />
    <path d="M160,180 Q170,160 180,180 T200,180" fill="none" stroke="#32CD32" stroke-width="2"/>
  </g>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="fruitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#f59c00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff6f61;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="cityGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.9" />
      <stop offset="100%" style="stop-color:#4b79a1;stop-opacity:0.6" />
    </radialGradient>
    <pattern id="zipPattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="2" height="4" fill="#333" />
    </pattern>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#1a1a1a" />
  
  <!-- The fruit shape (half-zipped) -->
  <g id="fruit">
    <!-- Fruit main body -->
    <path d="M150,50 c50,0 80,50 80,100 c0,50 -30,100 -80,100 c-50,0 -80,-30 -80,-100 c0,-50 30,-100 80,-100z" fill="url(#fruitGradient)" stroke="#fff" stroke-width="2"/>
    <!-- The surreal cityscape revealed by a zipper -->
    <clipPath id="fruitClip">
      <path d="M150,50 c50,0 80,50 80,100 c0,50 -30,100 -80,100 c-50,0 -80,-30 -80,-100 c0,-50 30,-100 80,-100z"/>
    </clipPath>
    <g clip-path="url(#fruitClip)">
      <!-- City silhouette -->
      <rect x="90" y="90" width="120" height="80" fill="#2b2b2b"/>
      <g fill="#3e3e3e">
        <rect x="100" y="110" width="10" height="40"/>
        <rect x="115" y="100" width="8" height="50"/>
        <rect x="130" y="120" width="12" height="30"/>
        <rect x="145" y="90" width="10" height="60"/>
        <rect x="160" y="105" width="8" height="45"/>
        <rect x="175" y="115" width="12" height="35"/>
        <rect x="190" y="95" width="10" height="55"/>
      </g>
      <!-- Glowing windows using radial gradient -->
      <g fill="url(#cityGlow)">
        <circle cx="105" cy="125" r="1.5"/>
        <circle cx="118" cy="119" r="1.5"/>
        <circle cx="133" cy="132" r="1.5"/>
        <circle cx="148" cy="121" r="1.5"/>
        <circle cx="162" cy="129" r="1.5"/>
        <circle cx="177" cy="123" r="1.5"/>
        <circle cx="192" cy="117" r="1.5"/>
        <circle cx="157" cy="140" r="1.5"/>
        <circle cx="138" cy="140" r="1.5"/>
      </g>
    </g>
    
    <!-- The zipper revealing the surreal city -->
    <line x1="150" y1="50" x2="150" y2="250" stroke="#333" stroke-width="4" stroke-dasharray="4,4"/>
    <rect x="147" y="50" width="6" height="200" fill="url(#zipPattern)"/>
    <circle cx="150" cy="50" r="4" fill="#333"/>
    <circle cx="150" cy="250" r="4" fill="#333"/>
  </g>
  
  <!-- Add fruit half separation line to accentuate the zipper effect -->
  <path d="M150,50 c-30,20 -30,230 0,200" stroke="#ffffff80" stroke-width="2" stroke-dasharray="2,4" fill="none"/>
  
  <!-- Additional surreal elements -->
  <g opacity="0.5">
    <!-- Floating circles representing dream-like orbs -->
    <circle cx="60" cy="60" r="8" fill="#ff6f61" />
    <circle cx="240" cy="80" r="5" fill="#f59c00" />
    <circle cx="80" cy="240" r="6" fill="#ffcc00" />
    <circle cx="220" cy="220" r="7" fill="#ff6f61" />
  </g>
  
  <!-- Optional overlay of texture -->
  <rect x="0" y="0" width="300" height="300" fill="none" stroke="none">
    <animate attributeName="opacity" from="0.3" to="0.3" dur="5s" repeatCount="indefinite"/>
  </rect>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image effectively captures the concept of a fruit being unzipped to reveal a surreal cityscape.

    The use of color and texture creates a visually appealing and cohesive image.

    The technical execution is strong, with a well-defined zipper and a clear cityscape, making it more aligned with the prompt compared to Player 1's submission.

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

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

Player 1
Player 2
12
Circles

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

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

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
Player 2
9

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
1
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
Player 2
14
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
2
Defs Elements

The number of elements defined within the defs element in the SVG.

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