Back

SVG Drawing Match #1309

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow-colored origami bird flying against a monochrome, pixelated cityscape"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and noise effect -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Cityscape with pixelated buildings -->
  <g id="cityscape" opacity="0.8">
    <rect x="40" y="180" width="20" height="80" fill="#444"/>
    <rect x="70" y="160" width="20" height="100" fill="#666"/>
    <rect x="100" y="200" width="20" height="60" fill="#888"/>
    <rect x="130" y="140" width="20" height="120" fill="#444"/>
    <rect x="160" y="190" width="20" height="70" fill="#666"/>
    <rect x="190" y="170" width="20" height="90" fill="#888"/>
    <rect x="220" y="180" width="20" height="80" fill="#444"/>
    <rect x="250" y="150" width="20" height="110" fill="#666"/>
  </g>

  <!-- Pixel pattern overlay -->
  <g id="pixelPattern">
    <path d="M0 0h300v300H0V0Z" fill="none" stroke="#999" stroke-width="0.5"/>
    <rect x="0" y="0" width="300" height="300" fill="url(#pixelNoise)"/>
  </g>

  <!-- Rainbow origami bird -->
  <g id="bird" transform="translate(150 150)">
    <!-- Bird body -->
    <path d="M0 0 L30 20 L0 40 L-30 20 L0 0" fill="url(#rainbowGradient)"/>
    <!-- Left wing -->
    <path d="M-30 20 L0 0 L-30 40 L-60 20 L-30 20" fill="url(#rainbowGradient)"/>
    <!-- Right wing -->
    <path d="M30 20 L0 0 L30 40 L60 20 L30 20" fill="url(#rainbowGradient)"/>
    <!-- Tail -->
    <path d="M0 20 L10 -10 L-10 -10 L0 20" fill="url(#rainbowGradient)"/>
    <!-- Eye -->
    <circle cx="-15" cy="15" r="2" fill="url(#eyeGradient)"/>
  </g>

  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a1a1a"/>
      <stop offset="1" stop-color="#333"/>
    </linearGradient>

    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0" stop-color="#ff0000"/>
      <stop offset="0.2" stop-color="#ff8000"/>
      <stop offset="0.4" stop-color="#ffff00"/>
      <stop offset="0.6" stop-color="#00ff00"/>
      <stop offset="0.8" stop-color="#00ffff"/>
      <stop offset="1" stop-color="#0000ff"/>
    </linearGradient>

    <radialGradient id="eyeGradient" cx="0.5" cy="0.5" r="1">
      <stop offset="0" stop-color="#fff"/>
      <stop offset="1" stop-color="#000"/>
    </radialGradient>

    <!-- Pixel noise effect -->
    <filter id="pixelNoise">
      <feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/>
    </filter>
  </defs>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the origami bird -->
    <linearGradient id="birdGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.6%" stop-color="#FF7F00"/>
      <stop offset="33.3%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.6%" stop-color="#0000FF"/>
      <stop offset="83.3%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8F00FF"/>
    </linearGradient>
    
    <!-- Pattern for pixelated cityscape -->
    <pattern id="pixelPattern" width="5" height="5" patternUnits="userSpaceOnUse">
      <rect width="5" height="5" fill="#333"/>
      <rect x="0" y="0" width="2" height="2" fill="#555"/>
      <rect x="3" y="0" width="2" height="2" fill="#555"/>
      <rect x="0" y="3" width="2" height="2" fill="#555"/>
      <rect x="3" y="3" width="2" height="2" fill="#555"/>
    </pattern>
  </defs>
  
  <!-- Monochrome background -->
  <rect width="300" height="300" fill="#111"/>
  
  <!-- Pixelated cityscape -->
  <g fill="url(#pixelPattern)" opacity="0.8">
    <!-- Buildings -->
    <rect x="20" y="180" width="20" height="120"/>
    <rect x="50" y="150" width="25" height="150"/>
    <rect x="85" y="170" width="15" height="130"/>
    <rect x="110" y="140" width="30" height="160"/>
    <rect x="150" y="160" width="20" height="140"/>
    <rect x="180" y="130" width="25" height="170"/>
    <rect x="215" y="190" width="15" height="110"/>
    <rect x="240" y="160" width="25" height="140"/>
    <rect x="275" y="180" width="10" height="120"/>
  </g>
  
  <!-- Origami bird -->
  <g transform="translate(150,100) scale(1.5)">
    <polygon points="0,-40 20,-10 10,0 30,30 0,10 -30,30 -10,0 -20,-10" fill="url(#birdGradient)" stroke="#000" stroke-width="1"/>
    <!-- Adding some folds -->
    <line x1="0,-40" y1="0" x2="0,30" stroke="#000" stroke-width="0.5"/>
    <line x1="-15,-15" y1="0" x2="15,-15" y2="0" stroke="#000" stroke-width="0.5"/>
    <line x1="-10,15" y1="15" x2="10,15" y2="15" stroke="#000" stroke-width="0.5"/>
  </g>
  
  <!-- Wings trail for motion effect -->
  <path d="M150,100 
           Q140,90 130,80 
           Q120,70 110,60" 
        stroke="url(#birdGradient)" stroke-width="2" fill="none" opacity="0.6"/>
  <path d="M150,100 
           Q160,90 170,80 
           Q180,70 190,60" 
        stroke="url(#birdGradient)" stroke-width="2" fill="none" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image effectively captures the prompt with a vibrant rainbow-colored origami bird, which stands out against a detailed pixelated cityscape.

    The use of color and texture enhances the visual appeal and creativity, providing a striking contrast to the monochrome background.

    Player 1's image, while technically sound, lacks the full spectrum of colors specified in the prompt, reducing its overall impact.

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
16
Player 2
21
Rectangles

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

Player 1
10
Player 2
15
Circles

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

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

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

Player 1
3
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
11

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

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