Back

SVG Drawing Match #1446

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A single rose blooming in outer space"

SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with stars -->
  <rect width="300" height="300" fill="#0a0018" />
  
  <!-- Distant nebulae and galaxies -->
  <radialGradient id="nebula1" cx="20%" cy="20%" r="80%" fx="20%" fy="20%">
    <stop offset="0%" stop-color="#5e2b73" stop-opacity="0.7" />
    <stop offset="100%" stop-color="#0a0018" stop-opacity="0" />
  </radialGradient>
  <radialGradient id="nebula2" cx="70%" cy="10%" r="60%" fx="70%" fy="10%">
    <stop offset="0%" stop-color="#2b4073" stop-opacity="0.5" />
    <stop offset="100%" stop-color="#0a0018" stop-opacity="0" />
  </radialGradient>
  <ellipse cx="60" cy="60" rx="120" ry="100" fill="url(#nebula1)" />
  <ellipse cx="210" cy="30" rx="100" ry="70" fill="url(#nebula2)" />
  
  <!-- Small stars -->
  <g fill="#ffffff">
    <circle cx="20" cy="30" r="0.7" />
    <circle cx="50" cy="40" r="0.5" />
    <circle cx="70" cy="20" r="0.8" />
    <circle cx="100" cy="50" r="0.6" />
    <circle cx="130" cy="10" r="0.7" />
    <circle cx="170" cy="45" r="0.5" />
    <circle cx="200" cy="25" r="0.7" />
    <circle cx="240" cy="60" r="0.6" />
    <circle cx="260" cy="15" r="0.8" />
    <circle cx="290" cy="35" r="0.5" />
    <circle cx="10" cy="80" r="0.6" />
    <circle cx="40" cy="110" r="0.7" />
    <circle cx="80" cy="90" r="0.5" />
    <circle cx="120" cy="120" r="0.8" />
    <circle cx="160" cy="70" r="0.6" />
    <circle cx="190" cy="100" r="0.7" />
    <circle cx="230" cy="90" r="0.5" />
    <circle cx="270" cy="110" r="0.7" />
    <circle cx="30" cy="150" r="0.6" />
    <circle cx="60" cy="140" r="0.8" />
    <circle cx="90" cy="170" r="0.5" />
    <circle cx="120" cy="130" r="0.7" />
    <circle cx="170" cy="180" r="0.6" />
    <circle cx="210" cy="150" r="0.8" />
    <circle cx="250" cy="170" r="0.5" />
    <circle cx="280" cy="140" r="0.7" />
    <circle cx="20" cy="200" r="0.5" />
    <circle cx="50" cy="220" r="0.7" />
    <circle cx="100" cy="190" r="0.6" />
    <circle cx="140" cy="230" r="0.8" />
    <circle cx="180" cy="210" r="0.5" />
    <circle cx="220" cy="240" r="0.7" />
    <circle cx="260" cy="200" r="0.6" />
    <circle cx="290" cy="230" r="0.8" />
    <circle cx="30" cy="260" r="0.7" />
    <circle cx="70" cy="280" r="0.5" />
    <circle cx="110" cy="250" r="0.8" />
    <circle cx="150" cy="270" r="0.6" />
    <circle cx="190" cy="290" r="0.7" />
    <circle cx="230" cy="260" r="0.5" />
    <circle cx="270" cy="280" r="0.8" />
  </g>
  
  <!-- Larger stars with glow -->
  <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
    <feGaussianBlur stdDeviation="1.5" result="blur" />
    <feComposite in="SourceGraphic" in2="blur" operator="over" />
  </filter>
  <g filter="url(#starGlow)">
    <circle cx="25" cy="45" r="1.2" fill="#ffffff" />
    <circle cx="85" cy="25" r="1.5" fill="#eef" />
    <circle cx="195" cy="55" r="1.3" fill="#ffd" />
    <circle cx="55" cy="255" r="1.4" fill="#ffe" />
    <circle cx="245" cy="195" r="1.6" fill="#fff" />
    <circle cx="275" cy="75" r="1.3" fill="#eff" />
    <circle cx="155" cy="35" r="1.5" fill="#fef" />
    <circle cx="215" cy="275" r="1.4" fill="#eff" />
  </g>
  
  <!-- Rose stem -->
  <linearGradient id="stemGradient" x1="0%" y1="0%" x2="100%" y2="0%">
    <stop offset="0%" stop-color="#1a6e32" />
    <stop offset="100%" stop-color="#39a56d" />
  </linearGradient>
  <path d="M150,250 C145,230 155,210 150,190 C145,170 155,150 150,130" 
        stroke="url(#stemGradient)" stroke-width="3" fill="none" />
  
  <!-- Rose leaves -->
  <linearGradient id="leafGradient" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" stop-color="#1a6e32" />
    <stop offset="60%" stop-color="#39a56d" />
    <stop offset="100%" stop-color="#64c18c" />
  </linearGradient>
  <path d="M149,180 C160,185 175,175 165,160 C155,145 135,165 149,180 Z" fill="url(#leafGradient)" />
  <path d="M151,210 C140,215 125,205 135,190 C145,175 165,195 151,210 Z" fill="url(#leafGradient)" />
  
  <!-- Cosmic energy around the stem -->
  <filter id="cosmicGlow" x="-100%" y="-100%" width="300%" height="300%">
    <feGaussianBlur stdDeviation="5" result="blur" />
    <feComposite in="SourceGraphic" in2="blur" operator="over" />
  </filter>
  <path d="M150,250 C145,230 155,210 150,190 C145,170 155,150 150,130" 
        stroke="#64c9ff" stroke-width="1" fill="none" opacity="0.6" filter="url(#cosmicGlow)" />
  
  <!-- Rose petals -->
  <radialGradient id="petalGradient" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
    <stop offset="0%" stop-color="#ff4d7a" />
    <stop offset="50%" stop-color="#e61e50" />
    <stop offset="100%" stop-color="#9e0027" />
  </radialGradient>
  <radialGradient id="petalGlow" cx="50%" cy="50%" r="70%" fx="30%" fy="30%">
    <stop offset="0%" stop-color="#ff4d7a" stop-opacity="0.8" />
    <stop offset="50%" stop-color="#e61e50" stop-opacity="0.4" />
    <stop offset="100%" stop-color="#9e0027" stop-opacity="0" />
  </radialGradient>
  <filter id="soft-glow" x="-40%" y="-40%" width="180%" height="180%">
    <feGaussianBlur stdDeviation="4" result="blur" />
    <feComposite in="SourceGraphic" in2="blur" operator="over" />
  </filter>
  
  <!-- Rose bloom -->
  <g filter="url(#soft-glow)">
    <!-- Outer petals -->
    <path d="M150,130 C130,110 120,90 150,80 C180,90 170,110 150,130 Z" fill="url(#petalGradient)" />
    <path d="M150,130 C170,110 190,95 170,70 C150,65 130,95 150,130 Z" fill="url(#petalGradient)" />
    <path d="M150,130 C130,110 110,95 130,70 C150,65 170,95 150,130 Z" fill="url(#petalGradient)" />
    <path d="M150,130 C165,115 175,90 150,70 C125,90 135,115 150,130 Z" fill="url(#petalGradient)" />
    
    <!-- Middle petals -->
    <path d="M150,120 C135,105 125,95 150,90 C175,95 165,105 150,120 Z" fill="url(#petalGradient)" />
    <path d="M150,120 C165,105 170,95 160,85 C150,80 140,95 150,120 Z" fill="url(#petalGradient)" />
    <path d="M150,120 C135,105 130,95 140,85 C150,80 160,95 150,120 Z" fill="url(#petalGradient)" />
    
    <!-- Center petal -->
    <circle cx="150" cy="100" r="15" fill="url(#petalGradient)" />
  </g>
  
  <!-- Cosmic energy aura around the rose -->
  <circle cx="150" cy="100" r="50" fill="url(#petalGlow)" opacity="0.6" />
  
  <!-- Stars being attracted to the rose -->
  <g>
    <animateTransform attributeName="transform" type="rotate" from="0 150 100" to="360 150 100" dur="60s" repeatCount="indefinite" />
    <path d="M150,50 L153,45 L150,40 L147,45 Z" fill="white">
      <animateMotion path="M0,0 Q10,-20 0,-30" dur="8s" repeatCount="indefinite" />
    </path>
    <path d="M190,80 L193,75 L190,70 L187,75 Z" fill="white">
      <animateMotion path="M0,0 Q-20,-10 -30,0" dur="7s" repeatCount="indefinite" />
    </path>
    <path d="M110,80 L113,75 L110,70 L107,75 Z" fill="white">
      <animateMotion path="M0,0 Q20,-10 30,0" dur="9s" repeatCount="indefinite" />
    </path>
    <path d="M150,150 L153,145 L150,140 L147,145 Z" fill="white">
      <animateMotion path="M0,0 Q-10,-20 0,-40" dur="10s" repeatCount="indefinite" />
    </path>
  </g>
  
  <!-- Small particles floating around -->
  <g fill="#ffffff">
    <circle cx="160" cy="90" r="0.4" opacity="0.8">
      <animate attributeName="cx" values="160;165;160;155;160" dur="5s" repeatCount="indefinite" />
      <animate attributeName="cy" values="90;95;100;95;90" dur="5s" repeatCount="indefinite" />
    </circle>
    <circle cx="140" cy="110" r="0.3" opacity="0.7">
      <animate attributeName="cx" values="140;135;140;145;140" dur="7s" repeatCount="indefinite" />
      <animate attributeName="cy" values="110;105;100;105;110" dur="7s" repeatCount="indefinite" />
    </circle>
    <circle cx="170" cy="110" r="0.5" opacity="0.9">
      <animate attributeName="cx" values="170;175;170;165;170" dur="6s" repeatCount="indefinite" />
      <animate attributeName="cy" values="110;105;100;105;110" dur="6s" repeatCount="indefinite" />
    </circle>
    <circle cx="130" cy="90" r="0.4" opacity="0.8">
      <animate attributeName="cx" values="130;125;130;135;130" dur="8s" repeatCount="indefinite" />
      <animate attributeName="cy" values="90;95;100;95;90" dur="8s" repeatCount="indefinite" />
    </circle>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with cosmic dust -->
  <rect width="300" height="300" fill="url(#deepSpace)" />
  
  <!-- Distant stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
    <circle cx="150" cy="80" r="1" fill="white" opacity="0.8"/>
    <circle cx="250" cy="30" r="1" fill="white" opacity="0.8"/>
    <circle cx="80" cy="200" r="1" fill="white" opacity="0.8"/>
    <circle cx="220" cy="250" r="1" fill="white" opacity="0.8"/>
  </g>

  <!-- Rose bloom -->
  <g transform="translate(150,150)">
    <!-- Rose petals -->
    <path d="M0,0 Q40,20 20,40 L20,80 Q0,60 -20,40 L-20,20 Q0,0 20,-20 L20,-40 Q40,-20 0,-40 L0,-80 Q-40,-60 0,-20 L0,0" 
          fill="url(#roseGradient)" opacity="0.9" transform="rotate(45)"/>
    <path d="M0,0 Q-40,20 -20,40 L-20,80 Q0,60 20,40 L20,20 Q0,0 -20,-20 L-20,-40 Q0,-60 40,-20 L40,-80 Q0,-60 0,0" 
          fill="url(#roseGradient)" opacity="0.9" transform="rotate(-45)"/>
    
    <!-- Center glow -->
    <circle cx="0" cy="0" r="10" fill="url(#centerGlow)" opacity="0.8"/>
    
    <!-- Petal details -->
    <path d="M-50,0 Q-30,20 0,30 L0,70 Q30,60 50,30 L50,10 Q30,0 0,-20 L-50,0" 
          fill="none" stroke="url(#petalStroke)" stroke-width="2" opacity="0.7"/>
  </g>

  <!-- Cosmic swirl patterns -->
  <path d="M150,0 Q200,50 250,150 L250,250 Q200,250 150,200 L150,150 Q100,150 50,200 L50,250 Q0,250 100,200 L100,150 Q150,150 150,100 L150,50 Q200,0 150,0" 
        fill="url(#swirlGradient)" opacity="0.3"/>
  
  <!-- Planet in background -->
  <circle cx="250" cy="250" r="30" fill="url(#planetGradient)" opacity="0.6"/>
  <circle cx="250" cy="250" r="25" fill="none" stroke="rgba(255,200,150,0.8)" stroke-width="2"/>
  
  <!-- Stardust effect -->
  <g transform="translate(150,150)" opacity="0.5">
    <circle cx="0" cy="0" r="100" fill="none" stroke="white" stroke-width="2" opacity="0.2"/>
    <circle cx="0" cy="0" r="50" fill="none" stroke="white" stroke-width="1" opacity="0.4"/>
  </g>

  <!-- Defs for gradients and patterns -->
  <defs>
    <linearGradient id="deepSpace" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#0b0b2d" />
      <stop offset="1" stop-color="#000000" />
    </linearGradient>

    <radialGradient id="roseGradient" cx="0" cy="0" r="60">
      <stop offset="0" stop-color="#ff99cc" />
      <stop offset="0.7" stop-color="#ff66b3" />
      <stop offset="1" stop-color="#ff3388" />
    </radialGradient>

    <radialGradient id="centerGlow" cx="0" cy="0" r="20">
      <stop offset="0" stop-color="#ffff00" />
      <stop offset="1" stop-color="#ffcc00" />
    </radialGradient>

    <linearGradient id="swirlGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" stop-color="#00ffff" />
      <stop offset="0.5" stop-color="#00ff00" />
      <stop offset="1" stop-color="#00ffff" />
    </linearGradient>

    <linearGradient id="planetGradient" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" stop-color="#808080" />
      <stop offset="1" stop-color="#404040" />
    </linearGradient>

    <linearGradient id="petalStroke" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" stop-color="#ff0066" />
      <stop offset="1" stop-color="#cc0033" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 1

Judge's Analysis

    Player 1's image effectively captures the prompt with a literal depiction of a rose in space, using a clear and visually appealing design.

    The glowing effect around the rose adds a sense of cosmic beauty, adhering well to the theme.

    Player 2's abstract interpretation is creative, but it is less immediately recognizable as a rose blooming in space, which makes it less effective in adhering to the prompt.

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
73
Player 2
15
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
55
Player 2
10
Ellipses

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

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

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
15

Interactivity Metrics

Animations

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

Player 1
13
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
4

Complexity Metrics

Path Commands

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

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